Code

commented out example tracker homes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Sep 2003 23:28:50 +0000 (23:28 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Sep 2003 23:28:50 +0000 (23:28 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1849 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
cgi-bin/roundup.cgi
roundup/scripts/roundup_server.py

index 48fe0142254934333426f730c3f441fe27bfd6f2..a00ba2c97e88fc0cef5009e6bbdd09dcd67d90a6 100644 (file)
@@ -4,6 +4,7 @@ are given with the most recent entry first.
 2003-09-?? 0.6.2
 Fixed:
 - cleaned up, clarified internal caching API in *dbm backends
+- commented out example tracker homes (patch 800720)
 
 
 2003-08-31 0.6.1
index 3e4c2f7c80066b18fd9565ebf62ab11b5600669f..81002a48074b881208fbcb114e0cc8ffd6da1164 100755 (executable)
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: roundup.cgi,v 1.35 2002-11-06 11:38:42 richard Exp $
+# $Id: roundup.cgi,v 1.36 2003-09-04 23:28:50 richard Exp $
 
 # python version check
 from roundup import version_check
@@ -47,7 +47,7 @@ import sys
 
 # This indicates where the Roundup tracker lives
 TRACKER_HOMES = {
-    'demo': '/var/roundup/trackers/demo',
+#    'example': '/path/to/example',
 }
 
 # Where to log debugging information to. Use an instance of DevNull if you
index 1575f418f94522a2978be811a5675c073b6dc778..887e7cd8d8e8fb92b8bc0c769480d47408e8780b 100644 (file)
@@ -16,7 +16,7 @@
 # 
 """ HTTP Server that serves roundup.
 
-$Id: roundup_server.py,v 1.26 2003-08-12 01:14:11 richard Exp $
+$Id: roundup_server.py,v 1.27 2003-09-04 23:28:50 richard Exp $
 """
 
 # python version check
@@ -40,21 +40,12 @@ from roundup.i18n import _
 # Make sure the NAME part doesn't include any url-unsafe characters like 
 # spaces, as these confuse the cookie handling in browsers like IE.
 TRACKER_HOMES = {
-    'bar': '/tmp/bar',
+#    'example': '/path/to/example',
 }
 
 ROUNDUP_USER = None
 
 
-# Where to log debugging information to. Use an instance of DevNull if you
-# don't want to log anywhere.
-# TODO: actually use this stuff
-#class DevNull:
-#    def write(self, info):
-#        pass
-#LOG = open('/var/log/roundup.cgi.log', 'a')
-#LOG = DevNull()
-
 #
 ##  end configuration
 #