comparison roundup/configuration.py @ 3356:2913b42c0810

enabled disabling of REMOTE_USER for when it's not a valid username [SF#1190187]
author Richard Jones <richard@users.sourceforge.net>
date Fri, 24 Jun 2005 05:22:03 +0000
parents 57b60bda9473
children 07c696890f55
comparison
equal deleted inserted replaced
3354:201dbcf63a30 3356:2913b42c0810
1 # Roundup Issue Tracker configuration support 1 # Roundup Issue Tracker configuration support
2 # 2 #
3 # $Id: configuration.py,v 1.25 2005-02-14 02:48:10 richard Exp $ 3 # $Id: configuration.py,v 1.26 2005-06-24 05:22:03 richard Exp $
4 # 4 #
5 __docformat__ = "restructuredtext" 5 __docformat__ = "restructuredtext"
6 6
7 import getopt 7 import getopt
8 import imp 8 import imp
464 (NullableOption, "language", "", 464 (NullableOption, "language", "",
465 "Default locale name for this tracker.\n" 465 "Default locale name for this tracker.\n"
466 "If this option is not set, the language is determined\n" 466 "If this option is not set, the language is determined\n"
467 "by OS environment variable LANGUAGE, LC_ALL, LC_MESSAGES,\n" 467 "by OS environment variable LANGUAGE, LC_ALL, LC_MESSAGES,\n"
468 "or LANG, in that order of preference."), 468 "or LANG, in that order of preference."),
469 )),
470 ("web", (
471 (Option, 'http_auth', "yes",
472 "Whether to use HTTP Basic Authentication, if present.\n"
473 "Roundup will use either the REMOTE_USER or HTTP_AUTHORIZATION\n"
474 "variables supplied by your web server (in that order).\n"
475 "Set this option to 'no' if you do not wish to use HTTP Basic\n"
476 "Authentication in your web interface."),
469 )), 477 )),
470 ("rdbms", ( 478 ("rdbms", (
471 (Option, 'name', 'roundup', 479 (Option, 'name', 'roundup',
472 "Name of the database to use.", 480 "Name of the database to use.",
473 ['MYSQL_DBNAME']), 481 ['MYSQL_DBNAME']),

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