From: Gerfried Fuchs Date: Fri, 25 Jul 2008 14:20:35 +0000 (+0200) Subject: Add a NEWS.Debian entry about new rss entry and possible planet feeding. Reduc... X-Git-Tag: debian/2.1.0-1~4 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom.git;a=commitdiff_plain;h=f56783c6e060bcf614d4eb706fae8e75456124a4 Add a NEWS.Debian entry about new rss entry and possible planet feeding. Reduce 00RssLimit limit to 5 for that. --- diff --git a/debian/NEWS.Debian b/debian/NEWS.Debian index 569bcbf..8a45d46 100644 --- a/debian/NEWS.Debian +++ b/debian/NEWS.Debian @@ -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: + 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 + (which already should be cached) when finding . 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 Thu, 24 Jul 2008 21:14:56 +0200 + -- Gerfried Fuchs Fri, 25 Jul 2008 16:19:49 +0200 blosxom (2.0-15) unstable; urgency=low diff --git a/debian/changelog b/debian/changelog index 23f1c9a..fe988c0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 24 Jul 2008 21:14:56 +0200 + -- Gerfried Fuchs Fri, 25 Jul 2008 16:19:49 +0200 blosxom (2.0-15) unstable; urgency=low diff --git a/debian/plugins/00RssLimit b/debian/plugins/00RssLimit index ae84ba5..d21a360 100644 --- a/debian/plugins/00RssLimit +++ b/debian/plugins/00RssLimit @@ -16,7 +16,7 @@ use vars qw( # --- Configurable variables ----- # how many entries for rss feeds? -$rss_num_entries = 10; +$rss_num_entries = 5; # --------------------------------