[Pkg-mailman-hackers] Pkg-mailman commit - rev 207 - in trunk/debian: . patches

Tollef Fog Heen tfheen@costa.debian.org
Wed, 16 Feb 2005 20:33:23 +0100


Author: tfheen
Date: 2005-02-16 20:33:22 +0100 (Wed, 16 Feb 2005)
New Revision: 207

Modified:
   trunk/debian/changelog
   trunk/debian/patches/04_CAN-2005-0202.dpatch
Log:
brown bag -- set SLASH

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2005-02-10 11:22:23 UTC (rev 206)
+++ trunk/debian/changelog	2005-02-16 19:33:22 UTC (rev 207)
@@ -1,3 +1,10 @@
+mailman (2.1.5-7) unstable; urgency=high
+
+  * Brown bag release -- use '/' instead of the undefined SLASH in
+    Cgi/private.py.  (closes: #294874)
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Wed, 16 Feb 2005 20:29:00 +0100
+
 mailman (2.1.5-6) unstable; urgency=high
 
   * SECURITY UPDATE: fix information disclosure

Modified: trunk/debian/patches/04_CAN-2005-0202.dpatch
===================================================================
--- trunk/debian/patches/04_CAN-2005-0202.dpatch	2005-02-10 11:22:23 UTC (rev 206)
+++ trunk/debian/patches/04_CAN-2005-0202.dpatch	2005-02-16 19:33:22 UTC (rev 207)
@@ -32,7 +32,7 @@
 -    path = path.replace('./', '')
 -    return path[1:]
 -
-+    parts = [x for x in path.split(SLASH) if x not in ('.', '..')]
++    parts = [x for x in path.split('/') if x not in ('.', '..')]
 +    return '/'.join(parts)[1:]