Skip to content

Commit 4422a52

Browse files
author
Richard Jones
committed
more words for configuring the tracker web var
1 parent 63650b6 commit 4422a52

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

doc/customizing.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising 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.

roundup/templates/classic/config.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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

2020
import os
2121

@@ -40,9 +40,11 @@
4040
# The email address that mail to roundup should go to
4141
TRACKER_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
4850
ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN

roundup/templates/minimal/config.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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

2020
import os
2121

@@ -40,9 +40,11 @@
4040
# The email address that mail to roundup should go to
4141
TRACKER_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
4850
ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN

0 commit comments

Comments
 (0)