projects
/
invirt/packages/invirt-web.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
7a1aaf3
)
Stub InvirtWeb implementation
author
Quentin Smith
<quentin@mit.edu>
Sun, 9 Aug 2009 22:45:21 +0000
(18:45 -0400)
committer
Quentin Smith
<quentin@mit.edu>
Sun, 9 Aug 2009 22:45:21 +0000
(18:45 -0400)
svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2663
code/main.py
patch
|
blob
|
history
diff --git
a/code/main.py
b/code/main.py
index
6fdd31a
..
1739318
100755
(executable)
--- 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."""