Add a NEWS.Debian entry about new <guid> rss entry and possible planet feeding. Reduc...
authorGerfried Fuchs <rhonda@debian.at>
Fri, 25 Jul 2008 14:20:35 +0000 (16:20 +0200)
committerGerfried Fuchs <rhonda@debian.at>
Fri, 25 Jul 2008 14:20:35 +0000 (16:20 +0200)
debian/NEWS.Debian
debian/changelog
debian/plugins/00RssLimit

index 569bcbfa09e2a827bf46a5575d5f92a70425039f..8a45d463bc68281de8d5e458f00c311a72069a9c 100644 (file)
@@ -5,12 +5,22 @@ blosxom (2.1.0-1) unstable; urgency=low
     included in the blosxom script directly and the old 1993 and index
     flavours are not included anymore, to get rid of some further historical 
     annoyances with the packaging.
+
+  * MOST IMPORTANTLY: This update adds a new tag into rss feeds:
+    <guid isPermanentLink="true"> which helps to notice duplicates and not let
+    them appear again on planets. Though, for the time of switching it might
+    mean that your last entries might appear as new when planet doesn't check
+    <link> (which already should be cached) when finding <guid>. This is
+    unfortunate but not really avoidable. To limit impact a new plugin was
+    added: 00RssLimit which turns the syndicated feed in only pick up the last
+    5 entries.
+
   * The plugin timezone got disabled and gets only installed into a new
     /etc/blosxom/plugins-available directory which is the first step to the
     planned blosxom-plugins package. If you found it useful and made use of it
     just symlink it from the plugins directory.
 
- -- Gerfried Fuchs <rhonda@debian.at>  Thu, 24 Jul 2008 21:14:56 +0200
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 25 Jul 2008 16:19:49 +0200
 
 blosxom (2.0-15) unstable; urgency=low
 
index 23f1c9ae9f36dce79baa7e4dcc0a7d48a53faec1..fe988c081b64d5aab666b5aa2548a2d3b989aba2 100644 (file)
@@ -9,7 +9,7 @@ blosxom (2.1.0-1) unstable; urgency=low
   * Added watch file.
   * Moved timezone plugin to /etc/blosxom/plugins-available so people can
     symlink if they like but are not forced to use it (closes: #237018)
-  * Added new 00RssLimit plugin, enabled by default, with limited to 10
+  * Added new 00RssLimit plugin, enabled by default, with limited to 5
     entries in RSS flavours, no change for others (closes: #373570)
   * Generate conffiles file automatically to not miss anything
   * Changed postrm symlink cleanup to cleaning every symlink in the flavours
@@ -23,7 +23,7 @@ blosxom (2.1.0-1) unstable; urgency=low
   * Removed debian/compat which wasn't used anymore anyway.
   * Fixed a typo in the former changelog entry.
 
- -- Gerfried Fuchs <rhonda@debian.at>  Thu, 24 Jul 2008 21:14:56 +0200
+ -- Gerfried Fuchs <rhonda@debian.at>  Fri, 25 Jul 2008 16:19:49 +0200
 
 blosxom (2.0-15) unstable; urgency=low
 
index ae84ba571878cd6f13a3fd7c239599f1e5dbed6d..d21a360bc26e19886a56ba9fbe4888e2d4593033 100644 (file)
@@ -16,7 +16,7 @@ use vars qw(
 # --- Configurable variables -----
 
 # how many entries for rss feeds?
-$rss_num_entries = 10;
+$rss_num_entries = 5;
 
 # --------------------------------