diff frontends/ZRoundup/ZRoundup.py @ 1096:fa7df238e2d4

More cleaning up of configuration, and the "instance" -> "tracker" renaming.
author Richard Jones <richard@users.sourceforge.net>
date Tue, 10 Sep 2002 03:01:20 +0000
parents e5826025eeb7
children 1621df560512
line wrap: on
line diff
--- a/frontends/ZRoundup/ZRoundup.py	Tue Sep 10 02:37:28 2002 +0000
+++ b/frontends/ZRoundup/ZRoundup.py	Tue Sep 10 03:01:20 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.12 2002-09-10 01:07:05 richard Exp $
+# $Id: ZRoundup.py,v 1.13 2002-09-10 03:01:18 richard Exp $
 #
 ''' ZRoundup module - exposes the roundup web interface to Zope
 
@@ -135,12 +135,12 @@
         # special case when roundup is '/' in this virtual host,
         if path == "/" :
             env['SCRIPT_NAME'] = "/"
-            env['INSTANCE_NAME'] = ''
+            env['TRACKER_NAME'] = ''
         else :
             # all but the last element is the path
             env['SCRIPT_NAME'] = '/'.join( path_components[:-1] )
             # the last element is the name
-            env['INSTANCE_NAME'] = path_components[-1]
+            env['TRACKER_NAME'] = path_components[-1]
 
         if env['REQUEST_METHOD'] == 'GET':
             # force roundup to re-parse the request because Zope fiddles

Roundup Issue Tracker: http://roundup-tracker.org/