예제 #1
0
파일: comp.py 프로젝트: smulloni/satimol
 def __init__(self,
              stmlcode,
              name=None,
              namespace=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputComponent.__init__(self,
                                    code=stmlcode,
                                    name=name)
예제 #2
0
 def __init__(self,
              stmlcode,
              name=None,
              namespace=None,
              componentCache=None,
              compileCache=None,
              factory=None,
              extra_globals=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputComponent.__init__(self,
                                    code=stmlcode,
                                    name=name,
                                    componentCache=componentCache,
                                    compileCache=compileCache,
                                    factory=factory,
                                    extra_globals=extra_globals)
예제 #3
0
 def __init__(self,
              stmlcode,
              name=None,
              namespace=None,
              componentCache=None,
              compileCache=None,
              factory=None,
              extra_globals=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputComponent.__init__(self,
                                    code=stmlcode,
                                    name=name,
                                    componentCache=componentCache,
                                    compileCache=compileCache,
                                    factory=factory,
                                    extra_globals=extra_globals)
예제 #4
0
 def _precall(self, namespace):
     namespace = STMLComponentMixin._precall(self, namespace)
     return StringOutputComponent._precall(self, namespace)
예제 #5
0
 def _precall(self, namespace):
     namespace=STMLComponentMixin._precall(self, namespace)
     return StringOutputComponent._precall(self, namespace)