tidy up the config dictionary and add default_daemon option

This commit is contained in:
Damien Churchill 2009-09-14 08:18:29 +00:00
parent 0bc97733bf
commit 5e829ca160

View File

@ -79,17 +79,25 @@ _ = gettext.gettext
current_dir = os.path.dirname(__file__)
CONFIG_DEFAULTS = {
"port": 8112,
# Misc Settings
"enabled_plugins": [],
"theme": "slate",
"default_daemon": "",
# Auth Settings
"pwd_salt": "c26ab3bbd8b137f99cd83c2c1c0963bcc1a35cad",
"pwd_sha1": "2ce1a410bcdcc53064129b6d950f2e9fee4edc1e",
"session_timeout": 3600,
"sessions": {},
# UI Settings
"sidebar_show_zero": False,
"sidebar_show_trackers": False,
"show_session_speed": False,
"show_sidebar": True,
"theme": "slate",
# Server Settings
"port": 8112,
"https": False,
"pkey": "ssl/daemon.pkey",
"cert": "ssl/daemon.cert"