|
1 | 1 | # Roundup Issue Tracker configuration support |
2 | 2 | # |
3 | | -# $Id: configuration.py,v 1.11 2004-07-27 01:18:25 richard Exp $ |
| 3 | +# $Id: configuration.py,v 1.12 2004-07-27 01:23:50 richard Exp $ |
4 | 4 | # |
5 | 5 | __docformat__ = "restructuredtext" |
6 | 6 |
|
@@ -446,15 +446,19 @@ class NullableFilePathOption(NullableOption, FilePathOption): |
446 | 446 | )), |
447 | 447 | ("rdbms", ( |
448 | 448 | (Option, 'name', 'roundup', |
449 | | - "Name of the Postgresql or MySQL database to use."), |
| 449 | + "Name of the Postgresql or MySQL database to use.", |
| 450 | + ['MYSQL_DBNAME']), |
450 | 451 | (NullableOption, 'host', 'localhost' |
451 | | - "Hostname that the Postgresql or MySQL database resides on."), |
| 452 | + "Hostname that the Postgresql or MySQL database resides on.", |
| 453 | + ['MYSQL_DBHOST']), |
452 | 454 | (NullableOption, 'port', '5432' |
453 | 455 | "Port number that the Postgresql or MySQL database resides on."), |
454 | 456 | (NullableOption, 'user', 'roundup' |
455 | | - "Postgresql or MySQL database user that Roundup should use."), |
| 457 | + "Postgresql or MySQL database user that Roundup should use.", |
| 458 | + ['MYSQL_DBUSER']), |
456 | 459 | (NullableOption, 'password', 'roundup', |
457 | | - "Password for the Postgresql or MySQL database user."), |
| 460 | + "Password for the Postgresql or MySQL database user.", |
| 461 | + ['MYSQL_DBPASSWORD']), |
458 | 462 | )), |
459 | 463 | ("logging", ( |
460 | 464 | (FilePathOption, "config", "", |
|
0 commit comments