Mercurial > p > roundup > code
comparison cgi-bin/roundup.cgi @ 1782:d51cb5225d4a
commented out example tracker homes
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 04 Sep 2003 23:28:50 +0000 |
| parents | 61ad556cfc8d |
| children | 80534c722838 |
comparison
equal
deleted
inserted
replaced
| 1780:d2801a2b0a77 | 1782:d51cb5225d4a |
|---|---|
| 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 18 # | 18 # |
| 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 $ |
| 20 | 20 |
| 21 # python version check | 21 # python version check |
| 22 from roundup import version_check | 22 from roundup import version_check |
| 23 from roundup.i18n import _ | 23 from roundup.i18n import _ |
| 24 import sys | 24 import sys |
| 45 # ROUNDUP_DEBUG is a debug level, currently only 0 (OFF) and 1 (ON) are | 45 # ROUNDUP_DEBUG is a debug level, currently only 0 (OFF) and 1 (ON) are |
| 46 # used in the code. Higher numbers means more debugging output. | 46 # used in the code. Higher numbers means more debugging output. |
| 47 | 47 |
| 48 # This indicates where the Roundup tracker lives | 48 # This indicates where the Roundup tracker lives |
| 49 TRACKER_HOMES = { | 49 TRACKER_HOMES = { |
| 50 'demo': '/var/roundup/trackers/demo', | 50 # 'example': '/path/to/example', |
| 51 } | 51 } |
| 52 | 52 |
| 53 # Where to log debugging information to. Use an instance of DevNull if you | 53 # Where to log debugging information to. Use an instance of DevNull if you |
| 54 # don't want to log anywhere. | 54 # don't want to log anywhere. |
| 55 class DevNull: | 55 class DevNull: |
