Mercurial > p > roundup > code
changeset 1307:0b44a351cf6d
mention needed trailing "/" in TRACKER_WEB
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 07 Nov 2002 21:17:44 +0000 |
| parents | a7ec3f707e26 |
| children | bd71c43f0911 |
| files | CHANGES.txt roundup/templates/classic/config.py roundup/templates/minimal/config.py |
| diffstat | 3 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Thu Nov 07 06:27:16 2002 +0000 +++ b/CHANGES.txt Thu Nov 07 21:17:44 2002 +0000 @@ -3,6 +3,7 @@ 2002-11-?? 0.5.3 - added mention of how to give users multiple Roles +- mention needed trailing "/" in TRACKER_WEB 2002-11-07 0.5.2
--- a/roundup/templates/classic/config.py Thu Nov 07 06:27:16 2002 +0000 +++ b/roundup/templates/classic/config.py Thu Nov 07 21:17:44 2002 +0000 @@ -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-09-11 01:18:42 richard Exp $ +# $Id: config.py,v 1.4 2002-11-07 21:17:44 richard Exp $ import os @@ -40,7 +40,8 @@ # 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 +# 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 email address that roundup will complain to if it runs into trouble
--- a/roundup/templates/minimal/config.py Thu Nov 07 06:27:16 2002 +0000 +++ b/roundup/templates/minimal/config.py Thu Nov 07 21:17:44 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.1 2002-09-26 04:15:06 richard Exp $ +# $Id: config.py,v 1.2 2002-11-07 21:17:44 richard Exp $ import os @@ -40,7 +40,8 @@ # 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 +# 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 email address that roundup will complain to if it runs into trouble
