예제 #1
0
파일: __init__.py 프로젝트: viswanc/eka
 def __init__(self, Structure, Scopes):
     node.__init__(
         self, Structure, Scopes,
         parseYML(u"""
 properties:
   props:
     type: object
     patternProperties:
       '^([A-z0-9_-])+$': {}
   class:
     enum: [master]
     default: master
 """))
예제 #2
0
파일: __init__.py 프로젝트: viswanc/eka
 def __init__(self, Structure, Scopes):
     node.__init__(
         self, Structure, Scopes,
         parseYML(u"""
 properties:
   allOf:
     - $ref: '#/definitions/providable'
     - type: object
       properties:
         class:
           enum: [app]
           default: app
         props:
           type: object
           patternProperties:
             '^([A-z0-9_-])+$': {}
 """))
예제 #3
0
 def __init__(self, Structure, Scopes):
     node.__init__(self, Structure, Scopes,
                   getSchemaExtension('crud.resource'))
예제 #4
0
 def __init__(self, Structure, Scopes):
     node.__init__(self, Structure, Scopes,
                   getSchemaExtension('crud.field'))
예제 #5
0
 def __init__(self, Structure, Scopes):
     node.__init__(self, Structure, Scopes)
예제 #6
0
 def __init__(self, Structure, Scopes):
     node.__init__(self, Structure, Scopes,
                   getSchemaExtension(__plugin_name__))
예제 #7
0
파일: RestClient.py 프로젝트: viswanc/eka
 def __init__(self, Structure, Scopes):
     node.__init__(self, Structure, Scopes,
                   getSchemaExtension('rest.client.element.button'))