]> git.donarmstrong.com Git - debbugs.git/commitdiff
Fix noaffects option
authorDon Armstrong <don@donarmstrong.com>
Fri, 12 Feb 2010 19:31:39 +0000 (11:31 -0800)
committerDon Armstrong <don@donarmstrong.com>
Fri, 12 Feb 2010 19:31:39 +0000 (11:31 -0800)
cgi/pkgreport.cgi
debian/changelog
templates/en_US/cgi/pkgreport_options.tmpl

index b7fc845a510e50a8c21958c52a42fa236d5e386b..1666bbc6f7191a926f516bcd29e46bde2d20b664 100755 (executable)
@@ -54,6 +54,7 @@ our %param = cgi_parameters(query => $q,
                                       qw(bug-rev pend-rev sev-rev),
                                       qw(maxdays mindays version),
                                       qw(data which dist newest),
+                                      qw(noaffects),
                                      ],
                            default => $default_params,
                           );
index 8679d397a17f2f132612feed28010a0b30e7d81f..9525c61ef1ec15ce95f4561e71d1376f90f6582e 100644 (file)
@@ -22,6 +22,7 @@ debbugs (2.4.2~exp1) experimental; urgency=low
   * Use package_maintainer to search for packages maintained by a
     maintainer (closes: #556863). Thanks to Yves-Alexis Perez.
   * Linkify CVE reports (closes: #568464). Thanks to Martin Zobel-Helas.
+  * Fix noaffects option
 
  -- Don Armstrong <don@debian.org>  Wed, 26 Aug 2009 21:32:53 -0700
 
index a51d2ea85fef80201585805bc98948a51d3826bf..d025d975dfecc94452bd6a99205f871b98199d79 100644 (file)
@@ -66,6 +66,7 @@ $output;
 <input type="checkbox" name="bug-rev" {exists $param{"bug-rev"} and $param{"bug-rev"}?' checked':''}> Reverse Bugs<br>
 <input type="checkbox" name="pend-rev" {exists $param{"pend-rev"} and $param{"pend-rev"}?' checked':''}> Reverse Pending<br>
 <input type="checkbox" name="sev-rev" {exists $param{"sev-rev"} and $param{"sev-rev"}?' checked':''}> Reverse Severity<br>
+<input type="checkbox" name="noaffects" {exists $param{"noaffects"} and $param{"noaffects"}?' checked':''}> No Bugs which affect packages<br>
 <select name="dist">
 {output_select_options(['' => 'None',
                         map {($_,$_)} @{$config{distributions}},