comparison doc/customizing.txt @ 2593:9e1c4c932323 maint-0.7

merge from HEAD
author Richard Jones <richard@users.sourceforge.net>
date Tue, 20 Jul 2004 02:10:43 +0000
parents a3ec9023dd1a
children 53c0c18b59c6
comparison
equal deleted inserted replaced
2590:cc3726fc8830 2593:9e1c4c932323
116 116
117 **TEMPLATES** - ``os.path.join(TRACKER_HOME, 'html')`` 117 **TEMPLATES** - ``os.path.join(TRACKER_HOME, 'html')``
118 This is the directory that the HTML templates reside in. By default they are 118 This is the directory that the HTML templates reside in. By default they are
119 in the tracker home. 119 in the tracker home.
120 120
121 **STATIC_FILES** - e.g. ``os.path.join(TRACKER_HOME, 'files')``
122 This *optional* variable defines the directory that static files are served
123 from (files with the URL ``/@@file/<filename>``). If this is not defined,
124 then static files are served from the TEMPLATES directory.
125
121 **TRACKER_NAME** - ``'Roundup issue tracker'`` 126 **TRACKER_NAME** - ``'Roundup issue tracker'``
122 A descriptive name for your roundup tracker. This is sent out in e-mails and 127 A descriptive name for your roundup tracker. This is sent out in e-mails and
123 appears in the heading of CGI pages. 128 appears in the heading of CGI pages.
124 129
125 **TRACKER_EMAIL** - ``'issue_tracker@%s'%MAIL_DOMAIN`` 130 **TRACKER_EMAIL** - ``'issue_tracker@%s'%MAIL_DOMAIN``
224 # This is the directory that the database is going to be stored in 229 # This is the directory that the database is going to be stored in
225 DATABASE = os.path.join(TRACKER_HOME, 'db') 230 DATABASE = os.path.join(TRACKER_HOME, 'db')
226 231
227 # This is the directory that the HTML templates reside in 232 # This is the directory that the HTML templates reside in
228 TEMPLATES = os.path.join(TRACKER_HOME, 'html') 233 TEMPLATES = os.path.join(TRACKER_HOME, 'html')
234
235 # Optional: the directory that static files are served from (files with
236 # the URL /@@file/<filename>). If this is not defined, then static files
237 # are served from the TEMPLATES directory.
238 # STATIC_FILES = os.path.join(TRACKER_HOME, 'files')
229 239
230 # A descriptive name for your roundup tracker 240 # A descriptive name for your roundup tracker
231 TRACKER_NAME = 'Roundup issue tracker' 241 TRACKER_NAME = 'Roundup issue tracker'
232 242
233 # The email address that mail to roundup should go to 243 # The email address that mail to roundup should go to

Roundup Issue Tracker: http://roundup-tracker.org/