summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/HookManager.py11
-rw-r--r--module/config/plugin_default.xml2
-rw-r--r--module/plugins/hooks/LinuxFileEvents.py4
-rw-r--r--module/web/ServerThread.py3
-rw-r--r--module/web/templates/default/login.html2
5 files changed, 14 insertions, 8 deletions
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 @@
<config name="Configuration" version="0.1">
<RapidshareCom>
<server input=";Cogent;Deutsche Telekom;Level(3);Level(3) #2;GlobalCrossing;Level(3) #3;Teleglobe;GlobalCrossing #2;TeliaSonera #2;Teleglobe #2;TeliaSonera #3;TeliaSonera"></server>
- <premium>True</premium>
+ <premium>False</premium>
<username></username>
<password></password>
</RapidshareCom>
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 @@
</form>
{% if form.errors %}
-<p{% trans "Your username and password didn't match. Please try again." %}</p>
+<p>{% trans "Your username and password didn't match. Please try again." %}</p>
{% endif %}
</div>