comparison roundup/configuration.py @ 2850:6d219e7a8789

'TEMPLATES' are also known as 'STATIC_FILES'
author Alexander Smishlajev <a1s@users.sourceforge.net>
date Tue, 02 Nov 2004 09:46:36 +0000
parents 5dddfc64816d
children ae2907da636d
comparison
equal deleted inserted replaced
2849:ecf8503da2e5 2850:6d219e7a8789
1 # Roundup Issue Tracker configuration support 1 # Roundup Issue Tracker configuration support
2 # 2 #
3 # $Id: configuration.py,v 1.19 2004-10-30 11:26:37 a1s Exp $ 3 # $Id: configuration.py,v 1.20 2004-11-02 09:46:36 a1s Exp $
4 # 4 #
5 __docformat__ = "restructuredtext" 5 __docformat__ = "restructuredtext"
6 6
7 import getopt 7 import getopt
8 import imp 8 import imp
392 # compatibility - new options should *not* have aliases! 392 # compatibility - new options should *not* have aliases!
393 SETTINGS = ( 393 SETTINGS = (
394 ("main", ( 394 ("main", (
395 (FilePathOption, "database", "db", "Database directory path."), 395 (FilePathOption, "database", "db", "Database directory path."),
396 (FilePathOption, "templates", "html", 396 (FilePathOption, "templates", "html",
397 "Path to the HTML templates directory."), 397 "Path to the HTML templates directory.",
398 ["STATIC_FILES"]),
398 (MailAddressOption, "admin_email", "roundup-admin", 399 (MailAddressOption, "admin_email", "roundup-admin",
399 "Email address that roundup will complain to" 400 "Email address that roundup will complain to"
400 " if it runs into trouble."), 401 " if it runs into trouble."),
401 (MailAddressOption, "dispatcher_email", "roundup-admin", 402 (MailAddressOption, "dispatcher_email", "roundup-admin",
402 "The 'dispatcher' is a role that can get notified\n" 403 "The 'dispatcher' is a role that can get notified\n"

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