Your message dated Sun, 11 May 2025 09:58:36 +0000
with message-id <e1ue3s8-00h5lr...@fasolo.debian.org>
and subject line Bug#1104974: Removed package(s) from unstable
has caused the Debian Bug report #696597,
regarding chronicle: rss-count not honoured for tags and archive feeds
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
696597: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696597
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: chronicle
Version: 4.6-2
Severity: minor
Tags: patch
rss-count (and entry-count) are only used for the main (page and)
feed but are ignored for the tags and archive (pages and) feeds.
I guess it makes some sense to have all entries in an archive/tag
page but an ever-growing (tag) feed is not a good idea, IMO. Of
course this is debatable ...
I've now created a patch to use rss-count for both tags and archives
feeds.
Cheers,
gregor
--
.''`. Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
: :' : Debian GNU/Linux user, admin, and developer - http://www.debian.org/
`. `' Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
`- NP: Bjørn Berge: N.I.B.
--- unpacked/usr/bin/chronicle 2011-05-15 20:15:12.000000000 +0200
+++ /usr/bin/chronicle 2012-12-23 18:24:13.868587817 +0100
@@ -1475,7 +1475,8 @@
$template = loadTemplate( "tags.xml.template", die_on_bad_params => 0 );
$template->param( blog_title => $CONFIG{ 'blog_title' } )
if ( $CONFIG{ 'blog_title' } );
- $template->param( entries => \@sortedEntries ) if (@sortedEntries);
+ my @rssEntries = @sortedEntries[0 .. $CONFIG{ 'rss-count' } - 1 ];
+ $template->param( entries => \@rssEntries ) if (@rssEntries);
$template->param( tagname => $tagName ) if ($tagName);
outputTemplate( $template, "$dir/$tagName.rss" );
}
@@ -1748,7 +1749,8 @@
$template = loadTemplate( "month.xml.template", die_on_bad_params => 0 );
$template->param( blog_title => $CONFIG{ 'blog_title' } )
if ( $CONFIG{ 'blog_title' } );
- $template->param( entries => \@sortedEntries ) if (@sortedEntries);
+ my @rssEntries = @sortedEntries[0 .. $CONFIG{ 'rss-count' } - 1 ];
+ $template->param( entries => \@rssEntries ) if (@rssEntries);
$template->param( month => $month, year => $year );
$template->param( month_name => $names[$month - 1] );
outputTemplate( $template, "$dir/$month.rss" );
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Version: 4.6-2.1+rm
Dear submitter,
as the package chronicle has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1104974
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.
Debian distribution maintenance software
pp.
Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---