Mercurial > p > roundup > code
comparison templates/minimal/config.py @ 2588:e80604dbe2af
document the STATIC_FILES config var
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 20 Jul 2004 00:15:23 +0000 |
| parents | fa50e1347397 |
| children |
comparison
equal
deleted
inserted
replaced
| 2587:0db668d44917 | 2588:e80604dbe2af |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: config.py,v 1.7 2004-06-08 05:29:18 richard Exp $ | 18 # $Id: config.py,v 1.8 2004-07-20 00:15:23 richard Exp $ |
| 19 | 19 |
| 20 import os | 20 import os |
| 21 | 21 |
| 22 # roundup home is this package's directory | 22 # roundup home is this package's directory |
| 23 TRACKER_HOME=os.path.split(__file__)[0] | 23 TRACKER_HOME=os.path.split(__file__)[0] |
| 45 # This is the directory that the database is going to be stored in | 45 # This is the directory that the database is going to be stored in |
| 46 DATABASE = os.path.join(TRACKER_HOME, 'db') | 46 DATABASE = os.path.join(TRACKER_HOME, 'db') |
| 47 | 47 |
| 48 # This is the directory that the HTML templates reside in | 48 # This is the directory that the HTML templates reside in |
| 49 TEMPLATES = os.path.join(TRACKER_HOME, 'html') | 49 TEMPLATES = os.path.join(TRACKER_HOME, 'html') |
| 50 | |
| 51 # Optional: the directory that static files are served from (files with the | |
| 52 # URL /@@file/<filename>). If this is not defined, then static files are | |
| 53 # served from the TEMPLATES directory. | |
| 54 # STATIC_FILES = os.path.join(TRACKER_HOME, 'files') | |
| 50 | 55 |
| 51 # A descriptive name for your roundup instance | 56 # A descriptive name for your roundup instance |
| 52 TRACKER_NAME = 'Roundup issue tracker' | 57 TRACKER_NAME = 'Roundup issue tracker' |
| 53 | 58 |
| 54 # The email address that mail to roundup should go to | 59 # The email address that mail to roundup should go to |
