| | |
- addCommandLineSetting(name, value)
- Override the configuration with a command-line setting.
Take a setting, like "AppServer.Verbose=0", and call
addCommandLineSetting('AppServer.Verbose', '0'), and
it will override any settings in AppServer.config
- commandLineSetting(configName, settingName, default=<class MiscUtils.NoDefault>)
- Retrieve a command-line setting.
You can use this with non-existent classes, like "Context.Root=/WK",
and then fetch it back with commandLineSetting('Context', 'Root').
|