summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bc0f90c)
raw | patch | inline | side by side (parent: bc0f90c)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 14 May 2002 23:36:25 +0000 (23:36 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 14 May 2002 23:36:25 +0000 (23:36 +0000) |
(thanks dman)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@730 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@730 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
frontends/ZRoundup/ZRoundup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 060161802eab0cfa9519e0135f1051b4b0317124..4ffa5fb7b23c646c30dd665bde22d1e538ed4b6a 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
your database has a 1000 or more issues in it.
. added missing documentation for a few of the config option values
. file upload broke if you didn't supply a change note
+ . fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
+ (thanks dman)
+
2002-03-25 - 0.4.1
Feature:
index 0b227681bea5021226d159ee86a91bc160ed5e9f..5a40435e770355a9962455203733bb0938b932ea 100644 (file)
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: ZRoundup.py,v 1.4 2002-01-10 03:38:16 richard Exp $
+# $Id: ZRoundup.py,v 1.5 2002-05-14 23:36:25 richard Exp $
#
''' ZRoundup module - exposes the roundup web interface to Zope
instance = roundup.instance.open(self.instance_home)
request = RequestWrapper(self.REQUEST['RESPONSE'])
env = self.REQUEST.environ
+ env['SCRIPT_NAME'] = '/'.join(self.getPhysicalPath()[:-1])
env['INSTANCE_NAME'] = self.id
if env['REQUEST_METHOD'] == 'GET':
# force roundup to re-parse the request because Zope fiddles
#
# $Log: not supported by cvs2svn $
+# Revision 1.4 2002/01/10 03:38:16 richard
+# reformatting for 80 cols
+#
# Revision 1.3 2001/12/12 23:55:00 richard
# Fixed some problems with user editing
#