Code

more words for configuring the tracker web var
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 13 Dec 2002 22:20:10 +0000 (22:20 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 13 Dec 2002 22:20:10 +0000 (22:20 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1409 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/customizing.txt
roundup/templates/classic/config.py
roundup/templates/minimal/config.py

index be89e966f77aa2e5f65a40b00c09cf3479007a3d..aaa27af9b42e7e5c572906b6ffd831ebd6fa46d9 100644 (file)
@@ -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.
index c312b58f97134825fa042ccb7f2fd9371356c9a6..9e9545e0c0bb1a7177b05b0931841f3e5454857b 100644 (file)
@@ -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
index 94e76e3ab4a349b06d58ef078223b82a91b03503..9bebe1166eb838054603853393b2b7baca6bd920 100644 (file)
@@ -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