svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2664
import socket
import cherrypy
from StringIO import StringIO
-from view import View
-
-class InvirtWeb(View):
- @cherrypy.expose
- def helloworld(self):
- return "Hello world!"
-
def revertStandardError():
"""Move stderr to stdout, and return the contents of the old stderr."""
errio = sys.stderr
from invirt.config import structs as config
from invirt.common import InvalidInput, CodeError
+from view import View
+
+class InvirtWeb(View):
+ def __init__(self):
+ super(self.__class__,self).__init__()
+ connect()
+
+ @cherrypy.expose
+ def helloworld(self):
+ return "Hello world!"
+
def pathSplit(path):
if path.startswith('/'):
path = path[1:]