Пример #1
0
 def __lookup__(self, id, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return OneGroupController(id), args
Пример #2
0
 def __lookup__(self, grant, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return GrantInterface(grant), args
Пример #3
0
Файл: grant.py Проект: Acen/core
 def __lookup__(self, grant, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return GrantInterface(grant), args
Пример #4
0
 def __lookup__(self, user, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return AccountInterface(user), args
Пример #5
0
 def __lookup__(self, key, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return KeyInterface(key), args
Пример #6
0
 def __lookup__(self, char, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return CharacterInterface(char), args
Пример #7
0
 def __lookup__(self, app, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return ApplicationInterface(app), args
Пример #8
0
 def __lookup__(self, key, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return CharacterInterface(key), args
Пример #9
0
 def __lookup__(self, app, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return ApplicationInterface(app), args
Пример #10
0
 def __lookup__(self, id, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return OneGroupController(id), args
Пример #11
0
 def __lookup__(self, user, *args, **kw):
     request.path_info_pop()  # We consume a single path element.
     return AccountInterface(user), args