From: Quentin Smith Date: Sun, 9 Aug 2009 22:45:21 +0000 (-0400) Subject: Stub InvirtWeb implementation X-Git-Tag: 0.1.0^2~72 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/1dbbf0ebb6a275e7d48021b84177ef758946373b Stub InvirtWeb implementation svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2663 --- diff --git a/code/main.py b/code/main.py index 6fdd31a..1739318 100755 --- a/code/main.py +++ b/code/main.py @@ -13,7 +13,14 @@ import sys import time import urllib 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."""