modular parser framework

This commit is contained in:
Hadrian Burkhardt
2026-05-21 08:21:49 +00:00
parent 1223791074
commit cf5348a0c8
35 changed files with 452 additions and 166 deletions
+6 -6
View File
@@ -20,7 +20,7 @@ sys.path.insert(0, os.path.abspath('..'))
# -- Project information -----------------------------------------------------
project = u'OpenMensa Potsdam'
project = u'OpenMensa Parsers'
copyright = u'2019, f4lco'
author = u'f4lco'
@@ -123,7 +123,7 @@ html_sidebars = {
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'OpenMensaPotsdamdoc'
htmlhelp_basename = 'OpenMensaParsersdoc'
# -- Options for LaTeX output ------------------------------------------------
@@ -150,7 +150,7 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'OpenMensaPotsdam.tex', u'OpenMensa Potsdam Documentation',
(master_doc, 'OpenMensaParsers.tex', u'OpenMensa Parsers Documentation',
u'f4lco', 'manual'),
]
@@ -160,7 +160,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'openmensapotsdam', u'OpenMensa Potsdam Documentation',
(master_doc, 'openmensaparsers', u'OpenMensa Parsers Documentation',
[author], 1)
]
@@ -171,8 +171,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'OpenMensaPotsdam', u'OpenMensa Potsdam Documentation',
author, 'OpenMensaPotsdam', 'One line description of project.',
(master_doc, 'OpenMensaParsers', u'OpenMensa Parsers Documentation',
author, 'OpenMensaParsers', 'One line description of project.',
'Miscellaneous'),
]