From: richard Date: Thu, 4 Sep 2003 23:28:50 +0000 (+0000) Subject: commented out example tracker homes X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=40a21d5aab6fc7ded99ab3bb3fee0ba852c6cae7;p=roundup.git commented out example tracker homes git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1849 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 48fe014..a00ba2c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/cgi-bin/roundup.cgi b/cgi-bin/roundup.cgi index 3e4c2f7..81002a4 100755 --- a/cgi-bin/roundup.cgi +++ b/cgi-bin/roundup.cgi @@ -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 diff --git a/roundup/scripts/roundup_server.py b/roundup/scripts/roundup_server.py index 1575f41..887e7cd 100644 --- a/roundup/scripts/roundup_server.py +++ b/roundup/scripts/roundup_server.py @@ -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 #