diff 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
line wrap: on
line diff
--- a/doc/customizing.txt	Tue Jul 20 00:23:14 2004 +0000
+++ b/doc/customizing.txt	Tue Jul 20 02:10:43 2004 +0000
@@ -118,6 +118,11 @@
  This is the directory that the HTML templates reside in. By default they are
  in the tracker home.
 
+**STATIC_FILES** - e.g. ``os.path.join(TRACKER_HOME, 'files')``
+ This *optional* variable defines the directory that static files are served
+ from (files with the URL ``/@@file/<filename>``). If this is not defined,
+ then static files are served from the TEMPLATES directory.
+
 **TRACKER_NAME** - ``'Roundup issue tracker'``
  A descriptive name for your roundup tracker. This is sent out in e-mails and
  appears in the heading of CGI pages.
@@ -227,6 +232,11 @@
     # This is the directory that the HTML templates reside in
     TEMPLATES = os.path.join(TRACKER_HOME, 'html')
 
+    # Optional: the directory that static files are served from (files with
+    # the URL /@@file/<filename>). If this is not defined, then static files
+    # are served from the TEMPLATES directory.
+    # STATIC_FILES = os.path.join(TRACKER_HOME, 'files')
+
     # A descriptive name for your roundup tracker
     TRACKER_NAME = 'Roundup issue tracker'
 

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