Compare commits

..

1 Commits

Author SHA1 Message Date
b8c62735a2 Added Commit Hash and Time to confpy
All checks were successful
gl/check check status: success (b8c62735a20c18ed5bee6b52c9dc9fbdf6af10fa)
gl/gate gate status: success (b8c62735a20c18ed5bee6b52c9dc9fbdf6af10fa)
2024-09-06 07:25:32 +00:00
18 changed files with 22 additions and 65 deletions

View File

@ -1,5 +1,5 @@
---
environment: public
environment: internal
hc_location: usermanual/asm
html_location: docs/asm/umn
link: /application-service-mesh/umn/

View File

@ -1,6 +1,6 @@
---
hc_location: api/cci
environment: public
environment: internal
html_location: docs/cci/api-ref
link: /cloud-container-instance/api-ref/
pdf_name: cci-api-ref

View File

@ -1,6 +1,6 @@
---
hc_location: usermanual/cci
environment: public
environment: internal
html_location: docs/cci/umn
link: /cloud-container-instance/umn/
pdf_name: cci-umn

View File

@ -1,4 +1,5 @@
---
environment: internal
hc_location: api/rms
html_location: docs/config/api-ref
link: /config/api-ref/

View File

@ -1,4 +1,5 @@
---
environment: internal
hc_location: usermanual/rms
html_location: docs/config/umn
link: /config/umn/

View File

@ -1,11 +0,0 @@
---
environment: internal
hc_location: api/em
html_location: docs/eps/api-ref
link: /enterprise-project-service/api-ref/
pdf_name: eps-api-ref
rst_location: api-ref/source
service_type: eps
title: API Reference
type: api-ref

View File

@ -1,11 +0,0 @@
---
environment: internal
hc_location: usermanual/em
html_location: docs/eps/umn
link: /enterprise-project-service/umn/
pdf_name: eps-umn
rst_location: umn/source
service_type: eps
title: User Guide
type: umn

View File

@ -1,5 +1,4 @@
---
environment: internal
hc_location: api/nosql
html_location: docs/gaussdb_nosql/api-ref
link: /gaussdb-nosql/api-ref/

View File

@ -1,5 +1,4 @@
---
environment: internal
hc_location: usermanual/nosql
html_location: docs/gaussdb_nosql/umn
link: /gaussdb-nosql/umn/

View File

@ -0,0 +1,10 @@
---
environment: internal
hc_location: api_swift/obs
html_location: docs/obs/api-swift
link: /object-storage-service/swiftapi/
pdf_name: obs-swiftapi
rst_location: doc/swiftapi/source
service_type: obs
title: API Reference (Swift) - Deprecated - Will be removed at 2023 Nov. 10!
type: swiftapi

View File

@ -1,5 +1,5 @@
---
hc_location: api/aos
hc_location: api/rfs
environment: internal
html_location: docs/rfs/api-ref
link: /resource-formation-service/api-ref/

View File

@ -1,5 +1,5 @@
---
environment: public
environment: internal
repositories:
- environment: internal
repo: docs/application-service-mesh

View File

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

View File

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

View File

@ -1,17 +0,0 @@
---
environment: internal
repositories:
- environment: internal
repo: docs/enterprise-project-service
type: gitea
- environment: public
repo: opentelekomcloud-docs/enterprise-project-service
type: github
service_category: security-services
service_title: Enterprise Project Service
service_type: eps
service_uri: enterprise-project-service
teams:
- name: docs-security-services-rw
permission: write

View File

@ -1,5 +1,5 @@
---
environment: internal
environment: public
repositories:
- environment: internal
repo: docs/gaussdb-nosql

View File

@ -119,7 +119,6 @@ html_title = "{{ title }}"
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
templates_path = ['_templates']
# Do not include sources into the rendered results
html_copy_source = False
@ -134,16 +133,8 @@ latex_documents = [
{% endif -%}
]
# Get the Git commit values for last updated timestamp on each page
# Get the Git commit values
repo = Repo(search_parent_directories=True)
commit = repo.head.commit
current_commit_hash = commit.hexsha
current_commit_hash = commit.hexsha[:7]
current_commit_time = commit.committed_datetime.strftime('%Y-%m-%d %H:%M')
latex_elements = {
'papersize': 'a4paper',
'pointsize': '12pt',
'figure_align': 'H',
'preamble': r'\newcommand{\githash}{' + current_commit_hash + '}',
'sphinxsetup': 'hmargin={15mm,15mm}, vmargin={20mm,30mm}, marginpar=10mm'
}

View File

@ -58,10 +58,6 @@ allowlist_externals =
commands =
mkdir -p doc/build/pdf
{[testenv:bindeps]commands}
mkdir -p {toxinidir}/_templates
wget -O {toxinidir}/_templates/longtable.tex.jinja https://gitea.eco.tsi-dev.otc-service.com/infra/docs-templates/raw/branch/main/templates/longtable.tex.jinja
wget -O {toxinidir}/_templates/tabular.tex.jinja https://gitea.eco.tsi-dev.otc-service.com/infra/docs-templates/raw/branch/main/templates/tabular.tex.jinja
wget -O {toxinidir}/_templates/tabulary.tex.jinja https://gitea.eco.tsi-dev.otc-service.com/infra/docs-templates/raw/branch/main/templates/tabulary.tex.jinja
{%- for doc in docs %}
{%- if doc.pdf_name %}
{[testenv:{{ doc.type }}-pdf-docs]commands}
@ -119,7 +115,6 @@ allowlist_externals =
cp
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/*.tex; do sed -iorig 's/\.gif//g' $f; done"