File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ are given with the most recent entry first.
33
442002-??-?? 0.?.?
55Fixed:
6+ . #576086 ] dumb copying mistake (frontends/ZRoundup.py)
67 . installation instructions now mention "python2" in "testing your python".
78
89
Original file line number Diff line number Diff line change 1414# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1515# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1616#
17- # $Id: ZRoundup.py,v 1.8 2002-06-16 01:01:42 dman13 Exp $
17+ # $Id: ZRoundup.py,v 1.8.2.1 2002-07-04 01:26:26 dman13 Exp $
1818#
1919''' ZRoundup module - exposes the roundup web interface to Zope
2020
@@ -129,7 +129,8 @@ def _opendb(self):
129129
130130 # figure out the path components to set
131131 url = urlparse .urlparse ( self .absolute_url () )
132- path_components = url [2 ].split ( '/' )
132+ path = url [2 ]
133+ path_components = path .split ( '/' )
133134
134135 # special case when roundup is '/' in this virtual host,
135136 if path == "/" :
@@ -207,6 +208,9 @@ def __getitem__(self, item):
207208
208209#
209210# $Log: not supported by cvs2svn $
211+ # Revision 1.8 2002/06/16 01:01:42 dman13
212+ # remove CR characters embedded in messages (ZRoundup)
213+ #
210214# Revision 1.7 2002/06/14 01:25:46 dman13
211215# Fixed bug #558867 by redirecting /instance requests to /instance/
212216#
You can’t perform that action at this time.
0 commit comments