Beispiel #1
0
 def __init__(self,
              name,
              dict,
              output_file,
              is_child_template=False,
              parent_mustache=""):
     Base.__init__(self)
     self.name = name
     self.dict = dict
     self.outputFile = output_file
     self.isChildTemplate = is_child_template
     self.parentMustache = parent_mustache
Beispiel #2
0
 def __init__(self, source, output_path, is_online=False):
     Base.__init__(self)
     self.source = source
     self.outputPath = output_path
     self.isOnline = is_online
Beispiel #3
0
 def __init__(self, name, templates_files, template_folders=[], output_root_path=pathname):
     Base.__init__(self)
     self.name = name
     self.templateFiles = templates_files
     self.outputRootPath = output_root_path
     self.templateFolders = template_folders
Beispiel #4
0
 def __init__(self, path=None):
     Base.__init__(self)
     self._path = path
Beispiel #5
0
 def __init__(self, url=None):
     Base.__init__(self)
     self._url = url
Beispiel #6
0
 def __init__(self):
     Base.__init__(self)