comparison templates/classic/config.py @ 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 702f9a6afdcf
children
comparison
equal deleted inserted replaced
2590:cc3726fc8830 2593:9e1c4c932323
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.8 2004-03-26 23:45:34 richard Exp $ 18 # $Id: config.py,v 1.8.2.1 2004-07-20 02:10:43 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

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