aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/web/plugin.py
blob: bdcbd0586f107fb5958adba434ec400ea99285c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 []