File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 22Customising Roundup
33===================
44
5- :Version: $Revision: 1.66 $
5+ :Version: $Revision: 1.67 $
66
77.. This document borrows from the ZopeBook section on ZPT. The original is at:
88 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -109,7 +109,9 @@ The configuration variables available are:
109109
110110**TRACKER_WEB** - ``'http://your.tracker.url.example/'``
111111 The web address that the tracker is viewable at. This will be included in
112- information sent to users of the tracker.
112+ information sent to users of the tracker. The URL must include the cgi-bin
113+ part or anything else that is required to get to the home page of the
114+ tracker. You must include a trailing '/' in the URL.
113115
114116**ADMIN_EMAIL** - ``'roundup-admin@%s'%MAIL_DOMAIN``
115117 The email address that roundup will complain to if it runs into trouble.
Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: config.py,v 1.5 2002-12-10 00:11:16 richard Exp $
18+ # $Id: config.py,v 1.6 2002-12-13 22:20:10 richard Exp $
1919
2020import os
2121
4040# The email address that mail to roundup should go to
4141TRACKER_EMAIL = 'issue_tracker@%s' % MAIL_DOMAIN
4242
43- # The web address that the instance is viewable at. This URL MUST end
44- # in a trailing forward slash "/" or your web interface will break!
45- TRACKER_WEB = 'http://your.tracker.url.example/'
43+ # The web address that the tracker is viewable at. This will be included in
44+ # information sent to users of the tracker. The URL MUST include the cgi-bin
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/'
4648
4749# The email address that roundup will complain to if it runs into trouble
4850ADMIN_EMAIL = 'roundup-admin@%s' % MAIL_DOMAIN
Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
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 $
1919
2020import os
2121
4040# The email address that mail to roundup should go to
4141TRACKER_EMAIL = 'issue_tracker@%s' % MAIL_DOMAIN
4242
43- # The web address that the instance is viewable at. This URL MUST end
44- # in a trailing forward slash "/" or your web interface will break!
45- TRACKER_WEB = 'http://your.tracker.url.example/'
43+ # The web address that the tracker is viewable at. This will be included in
44+ # information sent to users of the tracker. The URL MUST include the cgi-bin
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/'
4648
4749# The email address that roundup will complain to if it runs into trouble
4850ADMIN_EMAIL = 'roundup-admin@%s' % MAIL_DOMAIN
You can’t perform that action at this time.
0 commit comments