]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2005-07-16 21:13:16 by don]
authordon <>
Sun, 17 Jul 2005 04:13:17 +0000 (20:13 -0800)
committerdon <>
Sun, 17 Jul 2005 04:13:17 +0000 (20:13 -0800)
* Add Makefile rule to actually install apache.conf in examples
 * Don't remove the maintainer address if the message was sent by the
   maintainer and we're submitting to maintonly (closes: #140061)
 * Update changelog for the changes that I've made.

Makefile
debian/changelog
scripts/process.in

index bdbe4c809d032bb94616222fa3a2aef191c08fe2..3eccbd7ce3524a96fb3b2abb78fb60b88fb6cfb8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -45,6 +45,7 @@ $(var_dir)/spool/db-h $(scripts_dir) $(perl_dir) $(examples_dir) $(man8_dir); \
        $(install_data) debian/crontab misc/nextnumber misc/Maintainers \
          misc/Maintainers.override misc/pseudo-packages.description \
          misc/sources $(examples_dir)
+       $(install_data) examples/apache.conf $(examples_dir)
 
        # install the HTML pages etc
        $(foreach html, $(htmls_in), $(install_data) $(html) $(etc_dir)/html;)
index 02ddaed42410b1202cad59f8c9c8bd95a04f65a4..123b29c5693fc62fcc55ed46b105a9f731df9252 100644 (file)
@@ -40,6 +40,19 @@ debbugs (2.4.2) UNRELEASED; urgency=low
       however.
     - Add options show_list_(head|foot)er.
 
+  * Don Armstrong:
+
+    - Don't remove the maintainer address if the message was sent by the
+      maintainer and we're submitting to maintonly (closes: #140061)
+    - Use uri_escape to escape URI's before sending them back out so the
+      name of the file doesn't munge the query string. [#301606 pt. 1]
+    - call decode_rfc1522 on the filename returned so that encoded
+      filenames get decoded to something "reasonable." (closes: #301606)
+    - We now require URI::Escape
+    - Added apache.conf to examples, which is a sample apache
+      configuration file which implements the rewrite rules that are
+      currently used on bugs.debian.org. (closes: #222264)
+  
  -- Colin Watson <cjwatson@debian.org>  Fri, 20 Jun 2003 18:57:25 +0100
 
 debbugs (2.4.1) unstable; urgency=low
index e014ef7b6f749b8ac020e9e1163ae5338acf40a1..b6415562f18a4a8c48468a6f852b38bac3e08ac7 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: process.in,v 1.91 2005/04/20 04:40:18 cjwatson Exp $
+# $Id: process.in,v 1.92 2005/07/16 21:13:16 don Exp $
 #
 # Usage: process nn
 # Temps:  incoming/Pnn
@@ -1114,7 +1114,8 @@ sub checkmaintainers {
            print DEBUG "maintainer add >$p|$maintainerof{$p}<\n";
             $addmaint= $maintainerof{$p};
             push(@maintaddrs,$addmaint) unless
-                $addmaint eq $replyto || grep($_ eq $addmaint, @maintaddrs);
+                ($addmaint eq $replyto and $codeletter ne 'M') || 
+                    grep($_ eq $addmaint, @maintaddrs);
             $anymaintfound++;
         } else {
            print DEBUG "maintainer none >$p<\n";