def __lookup__(self, id, *args, **kw): request.path_info_pop() # We consume a single path element. return OneGroupController(id), args
def __lookup__(self, grant, *args, **kw): request.path_info_pop() # We consume a single path element. return GrantInterface(grant), args
def __lookup__(self, user, *args, **kw): request.path_info_pop() # We consume a single path element. return AccountInterface(user), args
def __lookup__(self, key, *args, **kw): request.path_info_pop() # We consume a single path element. return KeyInterface(key), args
def __lookup__(self, char, *args, **kw): request.path_info_pop() # We consume a single path element. return CharacterInterface(char), args
def __lookup__(self, app, *args, **kw): request.path_info_pop() # We consume a single path element. return ApplicationInterface(app), args
def __lookup__(self, key, *args, **kw): request.path_info_pop() # We consume a single path element. return CharacterInterface(key), args