Update rss20 test cases.
[matthijs/upstream/blosxom-plugins.git] / general / atomfeed
index 7721478fcb651a2e9175475a7286e40a2eea896b..71b536188dd07d5ca7a0bc2bc7c6117df3828c4d 100644 (file)
@@ -6,8 +6,7 @@
 #            Upgrade to Atom 1.0 spec: Sam Pearson
 # Version: 2005-08-04
 # Docs: Included below: type "perldoc atomfeed", or scroll down
 #            Upgrade to Atom 1.0 spec: Sam Pearson
 # Version: 2005-08-04
 # Docs: Included below: type "perldoc atomfeed", or scroll down
-# Blosxom Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
-# Blosxom Plugin Docs: http://www.raelity.org/apps/blosxom/plugin.shtml
+# Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
 
 package atomfeed;
 
 
 package atomfeed;
 
@@ -60,6 +59,9 @@ $logo_url = "";
 # If you are using the built-in templates, leave this alone.
 my $template_placeholder = "{{{updated}}}";
 
 # If you are using the built-in templates, leave this alone.
 my $template_placeholder = "{{{updated}}}";
 
+# Generator that produced this feed
+$generator_url = "http://blosxom.sourceforge.net/";
+
 # Enclosures support
 # ------------------
 
 # Enclosures support
 # ------------------
 
@@ -371,7 +373,7 @@ sub _load_templates {
   <link rel="self" type="application/atom+xml" href="$atomfeed::feed_url"/>
   <link rel="alternate" type="text/html" hreflang="$blosxom::blog_language" href="$blosxom::url" />
   <id>tag$atomfeed::colon$atomfeed::id_domain,$atomfeed::feed_yr$atomfeed::colon/$blosxom::path_info</id>
   <link rel="self" type="application/atom+xml" href="$atomfeed::feed_url"/>
   <link rel="alternate" type="text/html" hreflang="$blosxom::blog_language" href="$blosxom::url" />
   <id>tag$atomfeed::colon$atomfeed::id_domain,$atomfeed::feed_yr$atomfeed::colon/$blosxom::path_info</id>
-  <generator uri="http://www.blosxom.com/" version="$blosxom::version">Blosxom</generator>
+  <generator uri="$atomfeed::generator_url" version="$blosxom::version">Blosxom</generator>
   $atomfeed::copyright
   $atomfeed::icon_url
   $atomfeed::logo_url
   $atomfeed::copyright
   $atomfeed::icon_url
   $atomfeed::logo_url
@@ -417,15 +419,14 @@ Blosxom Plug-in: atomfeed
 Provides an Atom 1.0 feed of your weblog.
 
 The plugin has all you need right on-board, including the appropriate
 Provides an Atom 1.0 feed of your weblog.
 
 The plugin has all you need right on-board, including the appropriate
-flavour template components and a couple-three configuration
-directives.
+flavour template components and a few configuration directives.
 
 
-It supports the majorty of the Atom 1.0 spec exluding the <source>
+It supports the majority of the Atom 1.0 spec excluding the <source>
 element, which seems intended for use in feeds that contain items
 aggregated from other feeds, and currently the <contributor> element,
 which could be included using the meta plugin.
 
 element, which seems intended for use in feeds that contain items
 aggregated from other feeds, and currently the <contributor> element,
 which could be included using the meta plugin.
 
-Point you browser/Atom feed reader at http://yoururl/index.atom.
+Point your browser/feed reader at http://yoururl/index.atom.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
@@ -451,6 +452,9 @@ enclosures plugin originally written by:
 Dave Slusher, http://www.evilgeniuschronicles.org/wordpress/ and Keith
 Irwin,  http://www.asyserver.com/~kirwin/.
 
 Dave Slusher, http://www.evilgeniuschronicles.org/wordpress/ and Keith
 Irwin,  http://www.asyserver.com/~kirwin/.
 
+This plugin is now maintained by the Blosxom Sourceforge Team,
+<blosxom-devel@lists.sourceforge.net>.
+
 =head1 QUICKSTART INSTALLATION
 
 To get an Atom feed up and running in a jiffy, you need only set the
 =head1 QUICKSTART INSTALLATION
 
 To get an Atom feed up and running in a jiffy, you need only set the
@@ -461,7 +465,7 @@ author of each entry.  This can be overidden with the value provided
 by the B<whoami> or B<fauxami> plugins.
 
 B<$feed_yr> is where you specify the year your site began.  This is
 by the B<whoami> or B<fauxami> plugins.
 
 B<$feed_yr> is where you specify the year your site began.  This is
-important  as atomfeed needs to create a unique, unchanging ID for
+important as atomfeed needs to create a unique, unchanging ID for
 your weblog and it need this information to do so.
 
 Everything else is optional.
 your weblog and it need this information to do so.
 
 Everything else is optional.
@@ -692,7 +696,7 @@ Where "interpolate_fancy" is the name of the interpolation plugin
 you're turning off _just for the atom feed_.
 
 If you are planning on using the B<config> or B<prefs> plugins to alter
 you're turning off _just for the atom feed_.
 
 If you are planning on using the B<config> or B<prefs> plugins to alter
-varibales in the atomfeed namespace, you will need to ensure that
+variables in the atomfeed namespace, you will need to ensure that
 these plugins run B<before> the atomfeed plugin.  You can do this by
 prefixing a number to the name of the relevant plugin, such as B<1config>
 or B<1prefs>.
 these plugins run B<before> the atomfeed plugin.  You can do this by
 prefixing a number to the name of the relevant plugin, such as B<1config>
 or B<1prefs>.
@@ -705,11 +709,9 @@ browser for it to work as intended.
 
 =head1 SEE ALSO
 
 
 =head1 SEE ALSO
 
-Blosxom Home/Docs/Licensing:
-http://www.raelity.org/apps/blosxom/
+Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
 
 
-Blosxom Plugin Docs:
-http://www.raelity.org/apps/blosxom/plugin.shtml
+Blosxom Plugin Docs: http://blosxom.sourceforge.net/documentation/users/plugins.html
 
 1.0 Update Release Notes:
 http://sgp.me.uk/sam/2005/08/04/atom-for-blosxom
 
 1.0 Update Release Notes:
 http://sgp.me.uk/sam/2005/08/04/atom-for-blosxom
@@ -719,8 +721,8 @@ http://atompub.org/2005/07/11/draft-ietf-atompub-format-10.html
 
 =head1 BUGS
 
 
 =head1 BUGS
 
-Address bug reports and comments to the Blosxom mailing list:
-http://www.yahoogroups.com/group/blosxom
+None known; please send bug reports and feedback to the Blosxom
+development mailing list <blosxom-devel@lists.sourceforge.net>.
 
 =head1 LICENSE
 
 
 =head1 LICENSE