From: Stefan Pluecken Date: Wed, 6 Sep 2006 12:47:59 +0000 (+0000) Subject: link correct url for web interface sample X-Git-Tag: 2.6.0~3040 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/4503ea2ae9eb021a1a2a665a161357305d4095f9?ds=sidebyside link correct url for web interface sample --- diff --git a/lib/python/Plugins/Extensions/WebInterface/plugin.py b/lib/python/Plugins/Extensions/WebInterface/plugin.py index cc9a546b..71c4afcc 100644 --- a/lib/python/Plugins/Extensions/WebInterface/plugin.py +++ b/lib/python/Plugins/Extensions/WebInterface/plugin.py @@ -34,7 +34,7 @@ def startWebserver(): def render(self, req): return http.Response(responsecode.OK, {'Content-type': http_headers.MimeType('text', 'html')}, - stream='Hello! you want probably go to the test instead.') + stream='Hello! you want probably go to the test instead.') child_web = ScreenPage("/") # "/web" child_hdd = static.File("/hdd") @@ -51,10 +51,10 @@ def autostart(reason, **kwargs): return if reason == 0: - try: + #try: startWebserver() - except ImportError: - print "twisted not available, not starting web services" + #except ImportError: + # print "twisted not available, not starting web services" def Plugins(**kwargs): return PluginDescriptor(where = [PluginDescriptor.WHERE_SESSIONSTART, PluginDescriptor.WHERE_AUTOSTART], fnc = autostart)