Ejemplo n.º 1
0
 def __lookup__(self, id, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return OneGroupController(id), args
Ejemplo n.º 2
0
 def __lookup__(self, grant, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return GrantInterface(grant), args
Ejemplo n.º 3
0
Archivo: grant.py Proyecto: Acen/core
 def __lookup__(self, grant, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return GrantInterface(grant), args
Ejemplo n.º 4
0
 def __lookup__(self, user, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return AccountInterface(user), args
Ejemplo n.º 5
0
 def __lookup__(self, key, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return KeyInterface(key), args
Ejemplo n.º 6
0
 def __lookup__(self, char, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return CharacterInterface(char), args
Ejemplo n.º 7
0
 def __lookup__(self, app, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return ApplicationInterface(app), args
Ejemplo n.º 8
0
 def __lookup__(self, key, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return CharacterInterface(key), args
Ejemplo n.º 9
0
Archivo: browse.py Proyecto: Acen/core
 def __lookup__(self, app, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return ApplicationInterface(app), args
Ejemplo n.º 10
0
 def __lookup__(self, id, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return OneGroupController(id), args
Ejemplo n.º 11
0
 def __lookup__(self, user, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return AccountInterface(user), args