+def overlord(username, state, path, fields):
+ if path == '':
+ return ({'Status': '303 See Other',
+ 'Location': 'overlord/'},
+ "You shouldn't see this message.")
+ if not username in getAfsGroupMembers('system:xvm', 'athena.mit.edu'):
+ raise InvalidInput('username', username, 'Not an overlord.')
+ newstate = State(username, overlord=True)
+ newstate.environ = state.environ
+ return handler(username, newstate, path, fields)
+
+def throwError(_, __, ___, ____):