Code

. fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 14 May 2002 23:36:25 +0000 (23:36 +0000)
committerrichard <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

CHANGES.txt
frontends/ZRoundup/ZRoundup.py

index 060161802eab0cfa9519e0135f1051b4b0317124..4ffa5fb7b23c646c30dd665bde22d1e538ed4b6a 100644 (file)
@@ -38,6 +38,9 @@ Fixed:
    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)
@@ -14,7 +14,7 @@
 # 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
 
@@ -123,6 +123,7 @@ class ZRoundup(Item, PropertyManager, Implicit, Persistent):
         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
@@ -168,6 +169,9 @@ modulesecurity.apply(globals())
 
 #
 # $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
 #