Mercurial > p > roundup > code
changeset 808:b7f38cc4680a
fixed [SF#576086] (dumb copying mistake)
| author | Derrick Hudson <dman13@users.sourceforge.net> |
|---|---|
| date | Thu, 04 Jul 2002 01:26:26 +0000 |
| parents | 83becf3faa2f |
| children | c274377f0b8f |
| files | CHANGES.txt frontends/ZRoundup/ZRoundup.py |
| diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Thu Jun 27 15:38:53 2002 +0000 +++ b/CHANGES.txt Thu Jul 04 01:26:26 2002 +0000 @@ -3,6 +3,7 @@ 2002-??-?? 0.?.? Fixed: + . #576086 ] dumb copying mistake (frontends/ZRoundup.py) . installation instructions now mention "python2" in "testing your python".
--- a/frontends/ZRoundup/ZRoundup.py Thu Jun 27 15:38:53 2002 +0000 +++ b/frontends/ZRoundup/ZRoundup.py Thu Jul 04 01:26:26 2002 +0000 @@ -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 @@ # 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 @@ # # $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/ #
