Compare commits

...

6 Commits

Author SHA1 Message Date
8e905631c0 Update tox.ini to no interactive latex-mode and only use first image of animated gif
All checks were successful
gl/check check status: success (8e905631c06310cd2ff59a268399f22cfacaea09)
gl/gate gate status: success (8e905631c06310cd2ff59a268399f22cfacaea09)
2025-02-04 10:23:28 +00:00
a866e9829d Disable PDF rendering on services without documents
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>
2025-01-21 08:29:26 +00:00
0a53ed9072 cfw docs
Reviewed-by: tischrei <tino.schreiber@t-systems.com>
Co-authored-by: lbelejka <lukas.belejkanic@t-systems.com>
Co-committed-by: lbelejka <lukas.belejkanic@t-systems.com>
2025-01-20 12:45:10 +00:00
f26e1f24ca activate that pdf jobs are visible in tox.ini without activating them
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: tischrei <tino.schreiber@t-systems.com>
Co-committed-by: tischrei <tino.schreiber@t-systems.com>
2025-01-17 13:30:25 +00:00
1d365ecc8c activate pdf for CSS service
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: tischrei <tino.schreiber@t-systems.com>
Co-committed-by: tischrei <tino.schreiber@t-systems.com>
2025-01-17 13:28:55 +00:00
1529742878 adding cloud connect service
Reviewed-by: tischrei <tino.schreiber@t-systems.com>
Co-authored-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-committed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
2025-01-14 08:27:08 +00:00
10 changed files with 46 additions and 10 deletions

View File

@ -0,0 +1,11 @@
---
environment: internal
hc_location: api/cc
html_location: docs/ccn/api-ref
link: /cloud-connect/api-ref/
pdf_enabled: true
pdf_environment: internal
rst_location: api-ref/source
service_type: ccn
title: API Reference
type: api-ref

View File

@ -0,0 +1,11 @@
---
environment: internal
hc_location: usermanual/cc
html_location: docs/ccn/umn
link: /cloud-connect/umn/
pdf_enabled: true
pdf_environment: internal
rst_location: umn/source
service_type: ccn
title: User Guide
type: umn

View File

@ -1,5 +1,4 @@
---
environment: internal
hc_location: api/cfw
html_location: docs/cfw/api-ref
link: /cloud-firewall/api-ref/

View File

@ -1,5 +1,4 @@
---
environment: internal
hc_location: usermanual/cfw
html_location: docs/cfw/umn
link: /cloud-firewall/umn/

View File

@ -2,7 +2,7 @@
hc_location: api/css
html_location: docs/css/api-ref
link: /cloud-search-service/api-ref/
pdf_enabled: false
pdf_enabled: true
pdf_environment: internal
rst_location: api-ref/source
service_type: css

View File

@ -2,7 +2,7 @@
hc_location: bestpractice/css
html_location: docs/css/best-practice
link: /cloud-search-service/best-practice/
pdf_enabled: false
pdf_enabled: true
pdf_environment: internal
rst_location: doc/best-practice/source
service_type: css

View File

@ -2,7 +2,7 @@
hc_location: usermanual/css
html_location: docs/css/umn
link: /cloud-search-service/umn/
pdf_enabled: false
pdf_enabled: true
pdf_environment: internal
rst_location: umn/source
service_type: css

View File

@ -0,0 +1,16 @@
---
environment: internal
repositories:
- environment: internal
repo: docs/cloud-connect
type: gitea
- environment: public
repo: opentelekomcloud-docs/cloud-connect
type: github
service_category: network
service_title: Cloud Connect
service_type: ccn
service_uri: cloud-connect
teams:
- name: docs-network-rw
permission: write

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
repositories:
- environment: internal
repo: docs/cloud-firewall

View File

@ -44,6 +44,7 @@ commands =
{[testenv:json-{{ doc.type }}]commands}
{%- endfor %}
{% if docs|length > 0 %}
[testenv:pdf-docs]
deps =
{[testenv:docs]deps}
@ -67,6 +68,7 @@ commands =
{[testenv:{{ doc.type }}-pdf-docs]commands}
{%- endif %}
{%- endfor %}
{% endif %}
{% for doc in docs -%}
{% set loc = doc.rst_location | replace('/source', '') %}
@ -107,7 +109,6 @@ commands =
cp -av doc/build/json/{{ doc.type }} {{ doc.type }}/build/json
{%- endif %}
{% if doc.pdf_enabled -%}
# PDF version
[testenv:{{ doc.type }}-pdf-docs]
deps = {[testenv:docs]deps}
@ -121,12 +122,11 @@ commands =
rm -rf {{ loc }}/build/pdf
cp -r {toxinidir}/_templates {{ loc }}/source/_templates/
sphinx-build -W --keep-going -b latex {{ loc }}/source {{ loc }}/build/pdf/
bash -c "for f in {{ loc }}/build/pdf/*.gif; do convert $f $\{f/%gif/png\}; done || true"
bash -c "for f in {{ loc }}/build/pdf/*.gif; do convert $f[0] $\{f/%gif/png\}; done || true"
bash -c "for f in {{ loc }}/build/pdf/*.tex; do sed -iorig 's/\.gif//g' $f; done"
make -C {{ loc }}/build/pdf
make -C {{ loc }}/build/pdf LATEXMKOPTS="-interaction=nonstopmode"
mkdir -p doc/build/pdf
cp {{ loc }}/build/pdf/{{ service_type }}-{{ doc.type }}.pdf doc/build/pdf/
{% endif %}
{% endfor %}
[testenv:bindeps]