Code

fixed #576086 (dumb copying mistake)
authordman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Jul 2002 01:26:26 +0000 (01:26 +0000)
committerdman13 <dman13@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Jul 2002 01:26:26 +0000 (01:26 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@823 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
frontends/ZRoundup/ZRoundup.py

index 2b3a11022654d05acde600facf0525636c4b0ee8..a2621e1da1b767cbf30508bc8f6ff8b875c4abbb 100644 (file)
@@ -3,6 +3,7 @@ are given with the most recent entry first.
 
 2002-??-?? 0.?.?
 Fixed:
+ . #576086 ] dumb copying mistake (frontends/ZRoundup.py)
  . installation instructions now mention "python2" in "testing your python".
 
 
index b03414005e89342ef0a1e616e832298050a045b9..e1614a85059d401368e01f57ea8a96e24ef50d33 100644 (file)
@@ -14,7 +14,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: ZRoundup.py,v 1.8 2002-06-16 01:01:42 dman13 Exp $
+# $Id: ZRoundup.py,v 1.9 2002-07-04 01:25:22 dman13 Exp $
 #
 ''' ZRoundup module - exposes the roundup web interface to Zope
 
@@ -129,7 +129,8 @@ class ZRoundup(Item, PropertyManager, Implicit, Persistent):
 
         # figure out the path components to set
         url = urlparse.urlparse( self.absolute_url() )
-        path_components = url[2].split( '/' )
+        path = url[2]
+        path_components = path.split( '/' )
                                                 
         # special case when roundup is '/' in this virtual host,
         if path == "/" :
@@ -207,6 +208,9 @@ modulesecurity.apply(globals())
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.8  2002/06/16 01:01:42  dman13
+# remove CR characters embedded in messages (ZRoundup)
+#
 # Revision 1.7  2002/06/14 01:25:46  dman13
 # Fixed bug #558867 by redirecting /instance requests to /instance/
 #