Skip to content
Snippets Groups Projects
Select Git revision
  • 3167f1acb8496d9db8875c60a008993f7c87143b
  • master default protected
  • developement_1 protected
  • Version_1.2.4
  • Version_1.2.3
  • Version_1.2.2
  • Version_1.2.1
  • Version_1.2.0
  • Version_1.0.1
  • Version_1.0.0
  • Version_0.1.0
  • Version_0.0.6
  • Version_0.0.5
  • Version_0.0.4
  • Version_0.0.3
  • Version_0.0.2
  • Version_0.0.1
17 results

MainWindow.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    generate_rst.py 1.48 KiB
    #!/usr/bin/env python
    
    import os
    
    
    def generateFiles(file_infos, template_path, out_dir):
        """ insert figures into latex template
        """
    
        with open(template_path, "r") as template_handle:
            template_string = template_handle.read()
    
            for file_info in file_infos:
                file = file_info['file']
                title = file_info['title']
    
                line = '*'*len(title)
                header = "{title}\n{line}".format(title=title, line=line)
                s = template_string.replace("<file>", file)
                s = s.replace("<header>", header)
    
                out_file = "{file}.rst".format(file=file)
                out_path = os.path.join(out_dir, out_file)
    
                if os.path.exists(out_path):
                    print("Overwriting {file}."
                          .format(file=out_file))
    
                with open(out_path, 'w') as out_handle:
                    out_handle.write(s)
    
            print("Done.")
    
    
    if __name__ == '__main__':
        """ Main routine
        """
    
        file_infos = [
            {'file': 'watermark', 'title': 'Watermark'},
            {'file': 'batch', 'title': 'Batch'},
            {'file': 'encrypt', 'title': 'Encrypt'},
            {'file': 'preparemoodle', 'title': 'Prepare Moodle'},
            {'file': 'preparepdf', 'title': 'Prepare PDFs'},
            {'file': 'renamescans', 'title': 'Rename Scans'},
            {'file': 'supplements', 'title': 'Supplements'},
        ]
    
        generateFiles(
            file_infos=file_infos, template_path='./docs/source/_template.rst',
            out_dir='./docs/source/')