use brutal force to upgrade the stuff
[enigma2.git] / lib / python / Plugins / web / plugin.py
index bdcbd0586f107fb5958adba434ec400ea99285c4..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,24 +0,0 @@
-from enigma import *
-
-from twisted.internet import reactor
-from twisted.web2 import server, http, static
-
-def autostart():
-       print "Web startup"
-       # For example, serve the /tmp directory
-       toplevel = static.File("/tmp")
-       site = server.Site(toplevel)
-       
-       reactor.listenTCP(8080, http.HTTPFactory(site))
-
-def autoend():
-       pass
-
-def getPicturePaths():
-       return []
-
-def getPlugins():
-       return []
-       
-def getMenuRegistrationList():
-       return []