Skip to content

Commit a72133a

Browse files
author
Richard Jones
committed
commented out example tracker homes
1 parent e90fe03 commit a72133a

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ are given with the most recent entry first.
44
2003-09-?? 0.6.2
55
Fixed:
66
- cleaned up, clarified internal caching API in *dbm backends
7+
- commented out example tracker homes (patch 800720)
78

89

910
2003-08-31 0.6.1

cgi-bin/roundup.cgi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: roundup.cgi,v 1.35 2002-11-06 11:38:42 richard Exp $
19+
# $Id: roundup.cgi,v 1.36 2003-09-04 23:28:50 richard Exp $
2020

2121
# python version check
2222
from roundup import version_check
@@ -47,7 +47,7 @@ import sys
4747

4848
# This indicates where the Roundup tracker lives
4949
TRACKER_HOMES = {
50-
'demo': '/var/roundup/trackers/demo',
50+
# 'example': '/path/to/example',
5151
}
5252

5353
# Where to log debugging information to. Use an instance of DevNull if you

roundup/scripts/roundup_server.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
""" HTTP Server that serves roundup.
1818
19-
$Id: roundup_server.py,v 1.26 2003-08-12 01:14:11 richard Exp $
19+
$Id: roundup_server.py,v 1.27 2003-09-04 23:28:50 richard Exp $
2020
"""
2121

2222
# python version check
@@ -40,21 +40,12 @@
4040
# Make sure the NAME part doesn't include any url-unsafe characters like
4141
# spaces, as these confuse the cookie handling in browsers like IE.
4242
TRACKER_HOMES = {
43-
'bar': '/tmp/bar',
43+
# 'example': '/path/to/example',
4444
}
4545

4646
ROUNDUP_USER = None
4747

4848

49-
# Where to log debugging information to. Use an instance of DevNull if you
50-
# don't want to log anywhere.
51-
# TODO: actually use this stuff
52-
#class DevNull:
53-
# def write(self, info):
54-
# pass
55-
#LOG = open('/var/log/roundup.cgi.log', 'a')
56-
#LOG = DevNull()
57-
5849
#
5950
## end configuration
6051
#

0 commit comments

Comments
 (0)