Manages a project store as well as the processes involved in a project
workflow.
|
__init__(self,
projstore=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
add_source(self,
srcfile,
src_fname=None)
Proxy for self.store.append_sourcefile() . |
source code
|
|
|
add_source_convert(self,
srcfile,
src_fname=None,
convert_options=None,
extension=None)
Convenience method that calls add_source and convert_forward and returns the results from both. |
source code
|
|
|
|
|
convert_forward(self,
input_fname,
template=None,
output_fname=None,
**options)
Convert the given input file to the next type in the process: Source
document (eg. |
source code
|
|
|
export_file(self,
fname,
destfname)
Export the file with the specified filename to the given destination. |
source code
|
|
|
get_file(self,
fname)
Proxy for self.store.get_file() . |
source code
|
|
|
get_proj_filename(self,
realfname)
Proxy for self.store.get_proj_filename() . |
source code
|
|
|
get_real_filename(self,
projfname)
Try and find a real file name for the given project file name. |
source code
|
|
|
remove_file(self,
projfname,
ftype=None)
Proxy for self.store.remove_file() . |
source code
|
|
|
save(self,
filename=None)
Proxy for self.store.save() . |
source code
|
|
|
update_file(self,
proj_fname,
infile)
Proxy for self.store.update_file() . |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|