Пример #1
0
 def __init__(self,
              filename,
              namespace=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputFileComponent.__init__(self,
                                        filename,
                                        namespace=namespace)
Пример #2
0
 def __init__(self,
              filename,
              namespace=None,
              componentCache=None,
              compileCache=None,
              fs=None,
              factory=None,
              extra_globals=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputFileComponent.__init__(self,
                                        filename,
                                        namespace=namespace,
                                        componentCache=componentCache,
                                        compileCache=compileCache,
                                        fs=fs,
                                        factory=factory,
                                        extra_globals=extra_globals)
Пример #3
0
 def __init__(self,
              filename,
              namespace=None,
              componentCache=None,
              compileCache=None,
              fs=None,
              factory=None,
              extra_globals=None,
              tagVocabulary=None):
     STMLComponentMixin.__init__(self, tagVocabulary)
     StringOutputFileComponent.__init__(self,
                                        filename,
                                        namespace=namespace,
                                        componentCache=componentCache,
                                        compileCache=compileCache,
                                        fs=fs,
                                        factory=factory,
                                        extra_globals=extra_globals)
Пример #4
0
 def _precall(self, namespace):
     namespace = STMLComponentMixin._precall(self, namespace)
     return StringOutputFileComponent._precall(self, namespace)
Пример #5
0
 def _precall(self, namespace):
     namespace=STMLComponentMixin._precall(self, namespace)
     return StringOutputFileComponent._precall(self, namespace)