return {'request': cherrypy.request, 'kwargs': kwargs}
helloworld._cp_config['tools.require_login.on'] = False
+ @cherrypy.expose
+ def errortest(self):
+ """Throw an error, to test the error-tracing mechanisms."""
+ raise RuntimeError("test of the emergency broadcast system")
+
class MachineView(View):
# This is hairy. Fix when CherryPy 3.2 is out. (rename to
# _cp_dispatch, and parse the argument as a list instead of
newstate.environ = state.environ
return handler(username, newstate, path, fields)
-def throwError(_, __, ___, ____):
- """Throw an error, to test the error-tracing mechanisms."""
- raise RuntimeError("test of the emergency broadcast system")
-
mapping = dict(
modify=modify,
unauth=unauthFront,
admin=admin,
- overlord=admin,
- errortest=throwError)
+ overlord=admin)
def printHeaders(headers):
"""Print a dictionary as HTTP headers."""