Compare commits

..

2 Commits

Author SHA1 Message Date
7d614521f4 Merge branch 'main' into enable_css_bestpr
All checks were successful
gl/check check status: success (7d614521f434cccff74816a3a1999aee2696002f)
gl/gate gate status: success (7d614521f434cccff74816a3a1999aee2696002f)
2024-02-23 11:19:01 +00:00
5773355abe enable Best Practice docs for CSS
All checks were successful
gl/check check status: success (5773355abe558c6480c666d02b41744e39ca3aca)
2024-02-23 11:08:39 +00:00
4 changed files with 2 additions and 18 deletions

View File

@ -1,10 +0,0 @@
---
environment: internal
hc_location: usermanual2/aom
html_location: docs/aom/umn2
link: /application-operations-management/umn2/
pdf_name: aom-umn2.0
rst_location: umn2/source
service_type: aom
title: User Guide 2.0
type: umn2

View File

@ -1,4 +1,5 @@
---
html_location: docs/cc/api-ref
link: /cloud-create/api-ref/
pdf_name: cc-api-ref
rst_location: api-ref/source

View File

@ -12,5 +12,5 @@ service_title: FunctionGraph
service_type: fg
service_uri: function-graph
teams:
- name: docs-container-rw
- name: docs-compute-rw
permission: write

View File

@ -246,19 +246,12 @@ class Services(object):
x for x in srv["teams"] if x["permission"] == "write"
]
if "repositories" in srv and environment:
internal_exists = False
for repo in srv["repositories"]:
if (
"environment" in repo
and repo["environment"] == environment
):
srv_res["repository"] = repo["repo"]
if repo["environment"] == "internal":
internal_exists = True
# internal repo does not exist
# service will be left out from metadata.yaml
if not internal_exists:
continue
for doc in self.all_docs:
if (
"html_location" in doc