r593 - in zope2.9/trunk/debian: . patches

Fabio Tranchitella kobold at alioth.debian.org
Wed Feb 7 12:30:09 CET 2007


Author: kobold
Date: 2007-02-07 12:30:08 +0100 (Wed, 07 Feb 2007)
New Revision: 593

Added:
   zope2.9/trunk/debian/patches/webdav.dpatch
Modified:
   zope2.9/trunk/debian/changelog
   zope2.9/trunk/debian/patches/00list
Log:
Preparing the new release.


Modified: zope2.9/trunk/debian/changelog
===================================================================
--- zope2.9/trunk/debian/changelog	2007-01-27 03:28:35 UTC (rev 592)
+++ zope2.9/trunk/debian/changelog	2007-02-07 11:30:08 UTC (rev 593)
@@ -1,3 +1,10 @@
+zope2.9 (2.9.6-4) unstable; urgency=medium
+
+  * debian/patches/webdav.dpatch: applied patch to correctly quote resource
+    ids for the webdav protocol. (Closes: #409371)
+
+ -- Fabio Tranchitella <kobold at debian.org>  Wed,  7 Feb 2007 12:29:49 +0100
+
 zope2.9 (2.9.6-3) unstable; urgency=medium
 
   * debian/control: build-depends on zope-debhelper >= 0.3.6, which fixes a

Modified: zope2.9/trunk/debian/patches/00list
===================================================================
--- zope2.9/trunk/debian/patches/00list	2007-01-27 03:28:35 UTC (rev 592)
+++ zope2.9/trunk/debian/patches/00list	2007-02-07 11:30:08 UTC (rev 593)
@@ -1 +1,2 @@
 deb-zopeconf
+webdav

Added: zope2.9/trunk/debian/patches/webdav.dpatch
===================================================================
--- zope2.9/trunk/debian/patches/webdav.dpatch	2007-01-27 03:28:35 UTC (rev 592)
+++ zope2.9/trunk/debian/patches/webdav.dpatch	2007-02-07 11:30:08 UTC (rev 593)
@@ -0,0 +1,19 @@
+#! /bin/sh -e
+##
+## DP: Fix quoting for webdav resources
+
+. $(dirname $0)/DPATCH
+
+ at DPATCH@
+diff -urN zope2.9-2.9.6.orig/z/lib/python/webdav/davcmds.py zope2.9-2.9.6/z/lib/python/webdav/davcmds.py
+--- zope2.9-2.9.6.orig/z/lib/python/webdav/davcmds.py	2006-11-21 07:14:30.000000000 +0100
++++ zope2.9-2.9.6/z/lib/python/webdav/davcmds.py	2007-02-07 12:26:47.000000000 +0100
+@@ -169,7 +169,7 @@
+                     if dflag:
+                         ob._p_deactivate()
+                 elif hasattr(ob, '__dav_resource__'):
+-                    uri = urljoin(url, absattr(ob.getId()))
++                    uri = urljoin(url, quote(absattr(ob.getId())))
+                     depth = depth=='infinity' and depth or 0
+                     self.apply(ob, uri, depth, result, top=0)
+                     if dflag:


Property changes on: zope2.9/trunk/debian/patches/webdav.dpatch
___________________________________________________________________
Name: svn:executable
   + *




More information about the pkg-zope-commits mailing list