comparison roundup/templates/minimal/config.py @ 1334:9371d34141bd

more words for configuring the tracker web var
author Richard Jones <richard@users.sourceforge.net>
date Fri, 13 Dec 2002 22:20:10 +0000
parents 3758a5af985f
children aa7e4e8b14be
comparison
equal deleted inserted replaced
1333:80d27b7d6db5 1334:9371d34141bd
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: config.py,v 1.3 2002-12-10 00:11:16 richard Exp $ 18 # $Id: config.py,v 1.4 2002-12-13 22:20:10 richard Exp $
19 19
20 import os 20 import os
21 21
22 # roundup home is this package's directory 22 # roundup home is this package's directory
23 TRACKER_HOME=os.path.split(__file__)[0] 23 TRACKER_HOME=os.path.split(__file__)[0]
38 TRACKER_NAME = 'Roundup issue tracker' 38 TRACKER_NAME = 'Roundup issue tracker'
39 39
40 # The email address that mail to roundup should go to 40 # The email address that mail to roundup should go to
41 TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN 41 TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN
42 42
43 # The web address that the instance is viewable at. This URL MUST end 43 # The web address that the tracker is viewable at. This will be included in
44 # in a trailing forward slash "/" or your web interface will break! 44 # information sent to users of the tracker. The URL MUST include the cgi-bin
45 TRACKER_WEB = 'http://your.tracker.url.example/' 45 # part or anything else that is required to get to the home page of the
46 # tracker. You MUST include a trailing '/' in the URL.
47 TRACKER_WEB = 'http://tracker.example/cgi-bin/roundup.cgi/bugs/'
46 48
47 # The email address that roundup will complain to if it runs into trouble 49 # The email address that roundup will complain to if it runs into trouble
48 ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN 50 ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN
49 51
50 # 52 #

Roundup Issue Tracker: http://roundup-tracker.org/