From 2a9824e30623dabdcdab6f371b55a10c21754a25 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Sun, 30 Dec 2007 22:03:53 +0100 Subject: [PATCH] Add link from new.html to .html for packages --- ChangeLog | 3 +++ dak/queue_report.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index efa47a2f..745a8bd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-12-30 Joerg Jaspert + * dak/queue_report.py (table_row): Add link to generated html page + for NEW package. + * dak/show_new.py: new file, generates html overview for NEW packages, similar to what we see with examine-package. diff --git a/dak/queue_report.py b/dak/queue_report.py index a4cee359..ff3e082b 100755 --- a/dak/queue_report.py +++ b/dak/queue_report.py @@ -239,7 +239,7 @@ def table_row(source, version, arch, last_mod, maint, distribution, closes): print "%s" % (tdclass, source) print "" % (tdclass) for vers in version.split(): - print "%s
" % (vers) + print "%s
" % (source, vers, vers) print "%s" % (tdclass, arch, tdclass) for dist in distribution: print "%s
" % (dist) -- 2.39.5