Author: damoxc
Revision: 5732
Log:
tidy up the config dictionary and add default_daemon option
Diff:
Modified: trunk/deluge/ui/web/server.py
===================================================================
--- trunk/deluge/ui/web/server.py 2009-09-13 17:17:37 UTC (rev 5731)
+++ trunk/deluge/ui/web/server.py 2009-09-14 08:18:29 UTC (rev 5732)
@@ -79,17 +79,25 @@
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"
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---