comparison roundup/configuration.py @ 3548:61d48244e7a8

login may now be for a single session trackers may hide exceptions from web users (they will be mailed to the tracker admin)
author Richard Jones <richard@users.sourceforge.net>
date Wed, 08 Feb 2006 03:47:28 +0000
parents 5cd1c83dea50
children f2fda3e6fc8b
comparison
equal deleted inserted replaced
3547:7728ee93efd2 3548:61d48244e7a8
1 # Roundup Issue Tracker configuration support 1 # Roundup Issue Tracker configuration support
2 # 2 #
3 # $Id: configuration.py,v 1.32 2006-02-06 21:00:44 richard Exp $ 3 # $Id: configuration.py,v 1.33 2006-02-08 03:47:28 richard Exp $
4 # 4 #
5 __docformat__ = "restructuredtext" 5 __docformat__ = "restructuredtext"
6 6
7 import getopt 7 import getopt
8 import imp 8 import imp
493 "Set this option to 'no' if you do not wish to use HTTP Basic\n" 493 "Set this option to 'no' if you do not wish to use HTTP Basic\n"
494 "Authentication in your web interface."), 494 "Authentication in your web interface."),
495 (BooleanOption, 'use_browser_language', "yes", 495 (BooleanOption, 'use_browser_language', "yes",
496 "Whether to use HTTP Accept-Language, if present.\n" 496 "Whether to use HTTP Accept-Language, if present.\n"
497 "Browsers send a language-region preference list.\n" 497 "Browsers send a language-region preference list.\n"
498 "It's usually set in the client's browser or in his\n" 498 "It's usually set in the client's browser or in their\n"
499 "Operating System.\n" 499 "Operating System.\n"
500 "Set this option to 'no' if you want to ignore it."), 500 "Set this option to 'no' if you want to ignore it."),
501 (BooleanOption, "debug", "no",
502 "Setting this option makes Roundup display error tracebacks\n"
503 "in the user's browser rather than emailing them to the\n"
504 "tracker admin."),
501 )), 505 )),
502 ("rdbms", ( 506 ("rdbms", (
503 (Option, 'name', 'roundup', 507 (Option, 'name', 'roundup',
504 "Name of the database to use.", 508 "Name of the database to use.",
505 ['MYSQL_DBNAME']), 509 ['MYSQL_DBNAME']),

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