Compare commits

...

3 Commits

Author SHA1 Message Date
008acc0ba8 enable lts
All checks were successful
gl/check check status: success (008acc0ba8efe8d845d962941bfb6816b9a9f28a)
gl/gate gate status: success (008acc0ba8efe8d845d962941bfb6816b9a9f28a)
2024-11-25 14:01:15 +00:00
dcd92366d0 fix issue in conf.py template
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: tischrei <tino.schreiber@t-systems.com>
Co-committed-by: tischrei <tino.schreiber@t-systems.com>
2024-11-13 13:52:42 +00:00
d1c6b89ca6 Update PDF startpage confpy variables
Reviewed-by: tischrei <tino.schreiber@t-systems.com>
Co-authored-by: Sebastian Gode <sebastian.gode@telekom.de>
Co-committed-by: Sebastian Gode <sebastian.gode@telekom.de>
2024-11-13 11:11:12 +00:00
4 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
hc_location: api/lts
html_location: docs/lts/api-ref
link: /log-tank-service/api-ref/

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
hc_location: usermanual/lts
html_location: docs/lts/umn
link: /log-tank-service/umn/

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
repositories:
- environment: internal
repo: docs-swiss/log-tank-service

View File

@ -145,6 +145,11 @@ latex_elements = {
'papersize': 'a4paper',
'pointsize': '12pt',
'figure_align': 'H',
'preamble': r'\newcommand{\githash}{' + current_commit_hash + '}',
'preamble': rf'''{% raw %}
\newcommand{{\githash}}{{{current_commit_hash}}}
\newcommand{{\gitcommittime}}{{{current_commit_time}}}
\newcommand{{\doctitle}}{{{otcdocs_doc_title}}}
\newcommand{{\servicetitle}}{{{otcdocs_service_title}}}{% endraw %}
''',
'sphinxsetup': 'hmargin={15mm,15mm}, vmargin={20mm,30mm}, marginpar=10mm'
}