aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/web/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Plugins/web/plugin.py')
-rw-r--r--lib/python/Plugins/web/plugin.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/python/Plugins/web/plugin.py b/lib/python/Plugins/web/plugin.py
index e4c099bb..1c40293a 100644
--- a/lib/python/Plugins/web/plugin.py
+++ b/lib/python/Plugins/web/plugin.py
@@ -1,13 +1,19 @@
from twisted.internet import reactor
from twisted.web2 import server, http, static
+from Plugins.Plugin import PluginDescriptor
-# this is currently not working
def startWebserver():
- print "Web startup"
toplevel = static.File("/hdd")
site = server.Site(toplevel)
reactor.listenTCP(80, http.HTTPFactory(site))
+def autostart(reason):
+ if reason == 0:
+ try:
+ startWebserver()
+ except ImportError:
+ print "twisted not available, not starting web services"
+
def Plugins():
- return [ ]
+ return PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart)