コード例 #1
0
ファイル: pipeline.py プロジェクト: exedre/e4t
    def __init__(self,_options,_dict=None):
        udict.__init__(self)

        global options
        options = _options
        if _dict:
            self.update(_dict)
コード例 #2
0
ファイル: check.py プロジェクト: exedre/e4t.new
    def __init__(self,options,cfg,gspec,spec):
        udict.__init__(self)

        self.update(spec)
        self._gen = gspec
        self._cfg = cfg
        self._options = options
        self._errs = {}
        self._warn = {}
コード例 #3
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
    def __init__(self,_options,cfg=None):
        sristatpkg = 'sristat'

        if hasattr(_options,'tex_options') and _options.tex_options:
            sristatpkg += "[" + ','.join(_options.tex_options) + "]"
            LaTeX._default_cfg['packages']=sristatpkg
        udict.__init__(self,LaTeX._default_cfg)
        if cfg is not None:
            self.update(cfg)

        ## Save global options for other elements
        ## (sigh)
        global options
        options = _options
コード例 #4
0
ファイル: postprocessor.py プロジェクト: exedre/e4t.new
 def __init__(self,config=None,options=Options()):
     udict.__init__(self)
     if config: self.update(config)
     logger.debug("Setup Postprocessor")
     self.options = options
コード例 #5
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,spec,*args):
     udict.__init__(self)
     self.update(spec)
     needed(self,'TITLE')
コード例 #6
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,jobs):
     udict.__init__(self)
     self._jobs = jobs
コード例 #7
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,spec):
     udict.__init__(self)
     self.update(spec)
     needed(self,'PAGES')
コード例 #8
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,spec):
     udict.__init__(self)
     self.update(spec)
コード例 #9
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,spec):
     udict.__init__(self)
     self.update(spec)
     # needed(self,'TITLE','DATE','NUM')
     self._imgfile  = md5_filename_from_data(self['COVERFILE'])+'.pdf'
コード例 #10
0
ファイル: LaTeX.py プロジェクト: exedre/e4t
 def __init__(self,*args):
     udict.__init__(self)
     self.twocolumns = True
コード例 #11
0
ファイル: DataSet.py プロジェクト: exedre/e4t
 def __init__(self,**kw):
     udict.__init__(self,**kw)
     self._missing = []
コード例 #12
0
ファイル: pipeline.py プロジェクト: exedre/e4t
    def __init__(self,pipe,label,config):
        udict.__init__(self)

        self._pipe = pipe
        self._label = label
        self._setup(label,config)
コード例 #13
0
ファイル: pipeline.py プロジェクト: exedre/e4t
    def __init__(self,_dict):
        udict.__init__(self)

        self.update(_dict)