Compare commits

..

2 Commits

Author SHA1 Message Date
52424fd2f0 correct swiss portal name
All checks were successful
gl/check check status: success (52424fd2f0d6e2213722495c17c03594ed030a40)
gl/gate gate status: success (52424fd2f0d6e2213722495c17c03594ed030a40)
2023-09-06 12:08:08 +00:00
ca8c5fb34c change the base_url accordingly
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>
2023-09-06 07:42:07 +00:00

View File

@ -148,16 +148,12 @@ def process_repositories(args, service):
context["html_options"] = dict(
disable_search=True,
site_name="Internal Documentation Portal",
<<<<<<< Updated upstream
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",
>>>>>>> Stashed changes
)
context["doc_environment"] = args.target_environment
if doc['link']:
@ -207,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="Swiss Open Telekom Cloud Docs",
logo_url="https://docs-beta.sc.otc.t-systems.com",
)
sbv_title = (service["service_title"] + "\n"
+ ('=' * len(service["service_title"])))