Compare commits

...

3 Commits

Author SHA1 Message Date
284535a4cf change site name
All checks were successful
gl/check check status: success (284535a4cf7a24983864504f84ebf27f0f51d2bb)
gl/gate gate status: success (284535a4cf7a24983864504f84ebf27f0f51d2bb)
2023-09-06 07:35:06 +00:00
6872b75aec remove slash from url
All checks were successful
gl/check check status: success (6872b75aec8897def7fa4b2b7818a0067743cfa7)
2023-08-21 13:26:45 +00:00
bba796a824 change the base_url accordingly
All checks were successful
gl/check check status: success (bba796a8246f1fc1b11728a5c090743983f49b3b)
2023-08-21 12:53:03 +00:00

View File

@ -148,7 +148,12 @@ def process_repositories(args, service):
context["html_options"] = dict(
disable_search=True,
site_name="Internal Documentation Portal",
logo_url="https://docs-int.otc-service.com",
logo_url="https://docs-int.sc.otc.t-systems.com",
)
else:
context["html_options"] = dict(
site_name="Swiss Open Telekom Cloud Docs",
logo_url="https://docs-beta.sc.otc.t-systems.com",
)
context["doc_environment"] = args.target_environment
if doc['link']:
@ -198,7 +203,12 @@ def process_repositories(args, service):
context["html_options"] = dict(
disable_search=True,
site_name="Internal Documentation Portal",
logo_url="https://docs-int.otc-service.com",
logo_url="https://docs-int.sc.otc.t-systems.com",
)
else:
context["html_options"] = dict(
site_name="Open Telekom Cloud Swiss Documentation Portal",
logo_url="https://docs-beta.sc.otc.t-systems.com",
)
sbv_title = (service["service_title"] + "\n"
+ ('=' * len(service["service_title"])))