X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/46eb68a8b8105d0746e28fe0d2a4309a01a040d9..09b3c4465e1370966c4765ae261c910e7dd67883:/code/main.py diff --git a/code/main.py b/code/main.py index 17bbd62..3579794 100755 --- a/code/main.py +++ b/code/main.py @@ -52,6 +52,9 @@ class InvirtWeb(View): super(self.__class__,self).__init__() connect() self._cp_config['tools.require_login.on'] = True + self._cp_config['tools.mako.imports'] = ['from invirt.config import structs as config', + 'from invirt import database'] + @cherrypy.expose @cherrypy.tools.mako(filename="/list.mako") @@ -65,9 +68,8 @@ class InvirtWeb(View): @cherrypy.expose @cherrypy.tools.mako(filename="/helloworld.mako") - def helloworld(self): - return {} - return "Hello world!\nYour request: "+repr(dir(cherrypy.request)) + def helloworld(self, **kwargs): + return {'request': cherrypy.request, 'kwargs': kwargs} helloworld._cp_config['tools.require_login.on'] = False def pathSplit(path): @@ -93,16 +95,6 @@ class Checkpoint: checkpoint = Checkpoint() -def jquote(string): - return "'" + string.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n') + "'" - -def helppopup(subj): - """Return HTML code for a (?) link to a specified help topic""" - return ('(?)') - def makeErrorPre(old, addition): if addition is None: return @@ -113,7 +105,6 @@ def makeErrorPre(old, addition): Template.database = database Template.config = config -Template.helppopup = staticmethod(helppopup) Template.err = None class JsonDict: