From d02e6f471dce26b33cdb25958c26d4182e797c8c Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 13 Dec 2002 22:20:10 +0000 Subject: [PATCH] more words for configuring the tracker web var git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1409 57a73879-2fb5-44c3-a270-3262357dd7e2 --- doc/customizing.txt | 6 ++++-- roundup/templates/classic/config.py | 10 ++++++---- roundup/templates/minimal/config.py | 10 ++++++---- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/doc/customizing.txt b/doc/customizing.txt index be89e96..aaa27af 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.66 $ +:Version: $Revision: 1.67 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -109,7 +109,9 @@ The configuration variables available are: **TRACKER_WEB** - ``'http://your.tracker.url.example/'`` The web address that the tracker is viewable at. This will be included in - information sent to users of the tracker. + information sent to users of the tracker. The URL must include the cgi-bin + part or anything else that is required to get to the home page of the + tracker. You must include a trailing '/' in the URL. **ADMIN_EMAIL** - ``'roundup-admin@%s'%MAIL_DOMAIN`` The email address that roundup will complain to if it runs into trouble. diff --git a/roundup/templates/classic/config.py b/roundup/templates/classic/config.py index c312b58..9e9545e 100644 --- a/roundup/templates/classic/config.py +++ b/roundup/templates/classic/config.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.5 2002-12-10 00:11:16 richard Exp $ +# $Id: config.py,v 1.6 2002-12-13 22:20:10 richard Exp $ import os @@ -40,9 +40,11 @@ TRACKER_NAME = 'Roundup issue tracker' # The email address that mail to roundup should go to TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN -# The web address that the instance is viewable at. This URL MUST end -# in a trailing forward slash "/" or your web interface will break! -TRACKER_WEB = 'http://your.tracker.url.example/' +# The web address that the tracker is viewable at. This will be included in +# information sent to users of the tracker. The URL MUST include the cgi-bin +# part or anything else that is required to get to the home page of the +# tracker. You MUST include a trailing '/' in the URL. +TRACKER_WEB = 'http://tracker.example/cgi-bin/roundup.cgi/bugs/' # The email address that roundup will complain to if it runs into trouble ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN diff --git a/roundup/templates/minimal/config.py b/roundup/templates/minimal/config.py index 94e76e3..9bebe11 100644 --- a/roundup/templates/minimal/config.py +++ b/roundup/templates/minimal/config.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.3 2002-12-10 00:11:16 richard Exp $ +# $Id: config.py,v 1.4 2002-12-13 22:20:10 richard Exp $ import os @@ -40,9 +40,11 @@ TRACKER_NAME = 'Roundup issue tracker' # The email address that mail to roundup should go to TRACKER_EMAIL = 'issue_tracker@%s'%MAIL_DOMAIN -# The web address that the instance is viewable at. This URL MUST end -# in a trailing forward slash "/" or your web interface will break! -TRACKER_WEB = 'http://your.tracker.url.example/' +# The web address that the tracker is viewable at. This will be included in +# information sent to users of the tracker. The URL MUST include the cgi-bin +# part or anything else that is required to get to the home page of the +# tracker. You MUST include a trailing '/' in the URL. +TRACKER_WEB = 'http://tracker.example/cgi-bin/roundup.cgi/bugs/' # The email address that roundup will complain to if it runs into trouble ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN -- 2.30.2