Author: damoxc
Revision: 5617
Log:
change the pluginmanager component name to Web.PluginManager
Diff:
Modified: trunk/deluge/ui/web/json_api.py
===================================================================
--- trunk/deluge/ui/web/json_api.py 2009-08-03 19:04:54 UTC (rev 5616)
+++ trunk/deluge/ui/web/json_api.py 2009-08-03 19:21:53 UTC (rev 5617)
@@ -131,12 +131,12 @@
"""
d = client.daemon.get_method_list()
d.addCallback(on_get_methods)
- component.get("PluginManager").start()
+ component.get("Web.PluginManager").start()
_d.addCallback(on_client_connected)
return d
def _on_client_disconnect(self, *args):
- component.get("PluginManager").stop()
+ component.get("Web.PluginManager").stop()
def _exec_local(self, method, params):
"""
Modified: trunk/deluge/ui/web/pluginmanager.py
===================================================================
--- trunk/deluge/ui/web/pluginmanager.py 2009-08-03 19:04:54 UTC (rev
5616)
+++ trunk/deluge/ui/web/pluginmanager.py 2009-08-03 19:21:53 UTC (rev
5617)
@@ -44,7 +44,7 @@
class PluginManager(PluginManagerBase, Component):
def __init__(self):
- Component.__init__(self, "PluginManager")
+ Component.__init__(self, "Web.PluginManager")
self.config = ConfigManager("web.conf")
PluginManagerBase.__init__(self, "web.conf", "deluge.plugin.web")
@@ -64,4 +64,4 @@
self.disable_plugins()
def update(self):
- pass
\ No newline at end of file
+ pass
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---