Mercurial > p > roundup > code
comparison roundup/configuration.py @ 3358:f6ecda229195 maint-0.8
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 24 Jun 2005 05:28:24 +0000 |
| parents | e1da7b5b04ab |
| children |
comparison
equal
deleted
inserted
replaced
| 3355:dd347cd0fa13 | 3358:f6ecda229195 |
|---|---|
| 1 # Roundup Issue Tracker configuration support | 1 # Roundup Issue Tracker configuration support |
| 2 # | 2 # |
| 3 # $Id: configuration.py,v 1.23.2.2 2005-02-14 02:55:30 richard Exp $ | 3 # $Id: configuration.py,v 1.23.2.3 2005-06-24 05:28:24 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']), |
