From 0aaa4f998211e8c63d6b43d3a36fe7d6b561a36f Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 9 Mar 2010 18:22:41 +0100 Subject: several fixes, closed #84 --- module/HookManager.py | 11 +++++++---- module/config/plugin_default.xml | 2 +- module/plugins/hooks/LinuxFileEvents.py | 4 +++- module/web/ServerThread.py | 3 ++- module/web/templates/default/login.html | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) (limited to 'module') diff --git a/module/HookManager.py b/module/HookManager.py index 01d191ce4..279fdbaa7 100644 --- a/module/HookManager.py +++ b/module/HookManager.py @@ -53,10 +53,13 @@ class HookManager(): self.configParser.set(pluginName, {"option": "activated", "type": "bool", "name": "Activated"}, True) module = __import__("module.plugins.hooks." + pluginName, globals(), locals(), [pluginName], -1) pluginClass = getattr(module, pluginName) - plugin = pluginClass(self.core) - plugin.readConfig() - plugins.append(plugin) - self.logger.info("Activated %s" % pluginName) + try: + plugin = pluginClass(self.core) + plugin.readConfig() + plugins.append(plugin) + self.logger.info("Activated %s" % pluginName) + except: + self.logger.warning("Failed activating %s" % pluginName) self.plugins = plugins self.lock.release() diff --git a/module/config/plugin_default.xml b/module/config/plugin_default.xml index 0b0cd1949..c1261e338 100644 --- a/module/config/plugin_default.xml +++ b/module/config/plugin_default.xml @@ -2,7 +2,7 @@ - True + False diff --git a/module/plugins/hooks/LinuxFileEvents.py b/module/plugins/hooks/LinuxFileEvents.py index ed206866a..da1b06f13 100644 --- a/module/plugins/hooks/LinuxFileEvents.py +++ b/module/plugins/hooks/LinuxFileEvents.py @@ -31,7 +31,9 @@ class LinuxFileEvents(Hook): props['author_name'] = ("mkaay") props['author_mail'] = ("mkaay@mkaay.de") self.props = props - + + return #@TODO remove when working correctly + if not os.name == "posix": return diff --git a/module/web/ServerThread.py b/module/web/ServerThread.py index ffd6a2d35..49fd9b055 100644 --- a/module/web/ServerThread.py +++ b/module/web/ServerThread.py @@ -38,7 +38,7 @@ class WebServer(threading.Thread): except Exception: self.lighttpd = False - if self.lighttpd and self.pycore.config['webinterface']['lighttpd']: + if self.lighttpd: self.pycore.logger.info("Starting lighttpd Webserver: %s:%s" % (host, port)) config = file(join(path, "lighttpd", "lighttpd_default.conf"), "rb") content = config.readlines() @@ -79,6 +79,7 @@ class WebServer(threading.Thread): else: self.p.kill() + return True except: pass diff --git a/module/web/templates/default/login.html b/module/web/templates/default/login.html index 185245f67..2f93e5aab 100644 --- a/module/web/templates/default/login.html +++ b/module/web/templates/default/login.html @@ -27,7 +27,7 @@ {% if form.errors %} - +

{% trans "Your username and password didn't match. Please try again." %}

{% endif %} -- cgit v1.2.3