summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a9dac81)
raw | patch | inline | side by side (parent: a9dac81)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 4 Sep 2003 23:28:50 +0000 (23:28 +0000) | ||
committer | richard <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 | patch | blob | history | |
cgi-bin/roundup.cgi | patch | blob | history | |
roundup/scripts/roundup_server.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 48fe0142254934333426f730c3f441fe27bfd6f2..a00ba2c97e88fc0cef5009e6bbdd09dcd67d90a6 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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 3e4c2f7c80066b18fd9565ebf62ab11b5600669f..81002a48074b881208fbcb114e0cc8ffd6da1164 100755 (executable)
--- a/cgi-bin/roundup.cgi
+++ b/cgi-bin/roundup.cgi
# 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
# 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)
#
""" 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
# 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
#