From 3c74332b0f4a6f0268eb9145c27fa5a21a33d67e Mon Sep 17 00:00:00 2001 From: dman13 Date: Thu, 4 Jul 2002 01:26:26 +0000 Subject: [PATCH] fixed #576086 (dumb copying mistake) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@823 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + frontends/ZRoundup/ZRoundup.py | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 2b3a110..a2621e1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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". diff --git a/frontends/ZRoundup/ZRoundup.py b/frontends/ZRoundup/ZRoundup.py index b034140..e1614a8 100644 --- a/frontends/ZRoundup/ZRoundup.py +++ b/frontends/ZRoundup/ZRoundup.py @@ -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/ # -- 2.30.2