forked from infra/otc-metadata
Compare commits
10 Commits
fix_python
...
main
Author | SHA1 | Date | |
---|---|---|---|
99417a5410 | |||
b0e7932806 | |||
766bc0dda4 | |||
07c4edd503 | |||
dbc6d6d400 | |||
7ad18dfa57 | |||
6f9af80531 | |||
879317eb6f | |||
efe7f283d5 | |||
c3a51e8aeb |
@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
|
||||||
hc_location: api-usage/guidelines
|
hc_location: api-usage/guidelines
|
||||||
html_location: docs/apiu/guidelines
|
html_location: docs/apiu/guidelines
|
||||||
link: /api-usage/guidelines/
|
link: /api-usage/guidelines/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: public
|
||||||
hc_location: api/asm
|
hc_location: api/asm
|
||||||
html_location: docs/asm/api-ref
|
html_location: docs/asm/api-ref
|
||||||
link: /application-service-mesh/api-ref/
|
link: /application-service-mesh/api-ref/
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
environment: internal
|
||||||
hc_location: api/dbss
|
hc_location: api/dbss
|
||||||
html_location: docs/dbss/api-ref
|
html_location: docs/dbss/api-ref
|
||||||
link: /database-security-service/api-ref/
|
link: /database-security-service/api-ref/
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
hc_location: usermanual/aos
|
hc_location: usermanual/aos
|
||||||
environment: internal
|
environment: public
|
||||||
html_location: docs/rfs/umn
|
html_location: docs/rfs/umn
|
||||||
link: /resource-formation-service/umn/
|
link: /resource-formation-service/umn/
|
||||||
pdf_enabled: true
|
|
||||||
pdf_environment: internal
|
pdf_environment: internal
|
||||||
|
pdf_enabled: true
|
||||||
rst_location: umn/source
|
rst_location: umn/source
|
||||||
service_type: rfs
|
service_type: rfs
|
||||||
title: User Guide
|
title: User Guide
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: hidden
|
||||||
repositories:
|
repositories:
|
||||||
- environment: internal
|
- environment: internal
|
||||||
repo: docs/api-usage
|
repo: docs/api-usage
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
environment: internal
|
environment: public
|
||||||
repositories:
|
repositories:
|
||||||
- environment: internal
|
- environment: internal
|
||||||
repo: docs/resource-formation-service
|
repo: docs/resource-formation-service
|
||||||
@ -7,7 +7,7 @@ repositories:
|
|||||||
- environment: public
|
- environment: public
|
||||||
repo: opentelekomcloud-docs/resource-formation-service
|
repo: opentelekomcloud-docs/resource-formation-service
|
||||||
type: github
|
type: github
|
||||||
service_category: application
|
service_category: md
|
||||||
service_title: Resource Formation Service
|
service_title: Resource Formation Service
|
||||||
service_type: rfs
|
service_type: rfs
|
||||||
service_uri: resource-formation-service
|
service_uri: resource-formation-service
|
||||||
|
@ -167,8 +167,17 @@ def process_repositories(args, service):
|
|||||||
context["git_fqdn"] = git_fqdn
|
context["git_fqdn"] = git_fqdn
|
||||||
if target_repo.get("type") != "github":
|
if target_repo.get("type") != "github":
|
||||||
context["git_type"] = target_repo["type"]
|
context["git_type"] = target_repo["type"]
|
||||||
if (args.target_environment == "internal"
|
if (args.target_environment == "public"
|
||||||
and target_repo["repo"].split("/")[0] == "docs-swiss"):
|
and target_repo["repo"].split("/")[0] == "opentelekomcloud-docs-swiss"):
|
||||||
|
context["html_options"] = dict(
|
||||||
|
logo_url="https://docs.sc.otc.t-systems.com",
|
||||||
|
)
|
||||||
|
elif (args.target_environment == "public"):
|
||||||
|
context["html_options"] = dict(
|
||||||
|
logo_url="https://docs.otc.t-systems.com",
|
||||||
|
)
|
||||||
|
elif (args.target_environment == "internal"
|
||||||
|
and target_repo["repo"].split("/")[0] == "docs-swiss"):
|
||||||
context["html_options"] = dict(
|
context["html_options"] = dict(
|
||||||
disable_search=True,
|
disable_search=True,
|
||||||
site_name="Internal Documentation Portal",
|
site_name="Internal Documentation Portal",
|
||||||
@ -224,8 +233,17 @@ def process_repositories(args, service):
|
|||||||
context["git_fqdn"] = git_fqdn
|
context["git_fqdn"] = git_fqdn
|
||||||
if target_repo.get("type") != "github":
|
if target_repo.get("type") != "github":
|
||||||
context["git_type"] = target_repo["type"]
|
context["git_type"] = target_repo["type"]
|
||||||
if (args.target_environment == "internal"
|
if (args.target_environment == "public"
|
||||||
and target_repo["repo"].split("/")[0] == "docs-swiss"):
|
and target_repo["repo"].split("/")[0] == "opentelekomcloud-docs-swiss"):
|
||||||
|
context["html_options"] = dict(
|
||||||
|
logo_url="https://docs.sc.otc.t-systems.com",
|
||||||
|
)
|
||||||
|
elif (args.target_environment == "public"):
|
||||||
|
context["html_options"] = dict(
|
||||||
|
logo_url="https://docs.otc.t-systems.com",
|
||||||
|
)
|
||||||
|
elif (args.target_environment == "internal"
|
||||||
|
and target_repo["repo"].split("/")[0] == "docs-swiss"):
|
||||||
context["html_options"] = dict(
|
context["html_options"] = dict(
|
||||||
disable_search=True,
|
disable_search=True,
|
||||||
site_name="Internal Documentation Portal",
|
site_name="Internal Documentation Portal",
|
||||||
|
2
tox.ini
2
tox.ini
@ -20,6 +20,6 @@ commands = {posargs}
|
|||||||
[flake8]
|
[flake8]
|
||||||
# E123, E125 skipped as they are invalid PEP-8.
|
# E123, E125 skipped as they are invalid PEP-8.
|
||||||
show-source = True
|
show-source = True
|
||||||
ignore = E123,E125,W503
|
ignore = E123,E125,W503,E501
|
||||||
builtins = _
|
builtins = _
|
||||||
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user