Mercurial > p > roundup > code
comparison roundup/configuration.py @ 3452:be505af06586
web_http_auth is boolean value
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Mon, 09 Jan 2006 09:11:43 +0000 |
| parents | 26dc6b92ac26 |
| children | d3b02352484f |
comparison
equal
deleted
inserted
replaced
| 3450:5982b4afd135 | 3452:be505af06586 |
|---|---|
| 1 # Roundup Issue Tracker configuration support | 1 # Roundup Issue Tracker configuration support |
| 2 # | 2 # |
| 3 # $Id: configuration.py,v 1.29 2005-12-03 11:21:17 a1s Exp $ | 3 # $Id: configuration.py,v 1.30 2006-01-09 09:11:43 a1s Exp $ |
| 4 # | 4 # |
| 5 __docformat__ = "restructuredtext" | 5 __docformat__ = "restructuredtext" |
| 6 | 6 |
| 7 import getopt | 7 import getopt |
| 8 import imp | 8 import imp |
| 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 )), | 469 )), |
| 470 ("web", ( | 470 ("web", ( |
| 471 (Option, 'http_auth', "yes", | 471 (BooleanOption, 'http_auth', "yes", |
| 472 "Whether to use HTTP Basic Authentication, if present.\n" | 472 "Whether to use HTTP Basic Authentication, if present.\n" |
| 473 "Roundup will use either the REMOTE_USER or HTTP_AUTHORIZATION\n" | 473 "Roundup will use either the REMOTE_USER or HTTP_AUTHORIZATION\n" |
| 474 "variables supplied by your web server (in that order).\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" | 475 "Set this option to 'no' if you do not wish to use HTTP Basic\n" |
| 476 "Authentication in your web interface."), | 476 "Authentication in your web interface."), |
