FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DevOps Division Guidebook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Information Services
DevOps
General Documentation
DevOps Division Guidebook
Commits
bf7614f0
Commit
bf7614f0
authored
3 weeks ago
by
Nick Brown
Browse files
Options
Downloads
Patches
Plain Diff
fix: Remove broken rel_url utility, replace with new 'site:' syntax
parent
1b30c1d2
No related branches found
Branches containing commit
No related tags found
1 merge request
!453
feat: Knowledge base enhancements (diataxis)
Pipeline
#714106
passed
3 weeks ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
macros/render/services.py
+5
-5
5 additions, 5 deletions
macros/render/services.py
macros/utils.py
+0
-5
0 additions, 5 deletions
macros/utils.py
with
5 additions
and
10 deletions
macros/render/services.py
+
5
−
5
View file @
bf7614f0
...
...
@@ -10,7 +10,6 @@ from ..constants import (
TEAMS_PAGE_URI
,
SERVICES_PAGE_URI
,
)
from
..utils
import
rel_url
def
_person_label_link
(
person
:
dict
)
->
str
:
"""
...
...
@@ -29,7 +28,8 @@ def _team_label_link(env: MacrosPlugin, team: Team, use_email: bool=False) -> st
if
use_email
:
return
team
.
email
,
mailto
(
team
.
email
)
else
:
destination
=
rel_url
(
env
,
TEAMS_PAGE_URI
)
+
"
/#
"
+
team
.
title
.
lower
().
replace
(
"
"
,
"
-
"
)
rel_url
=
f
"
site:
{
TEAMS_PAGE_URI
}
"
destination
=
rel_url
+
"
/#
"
+
team
.
title
.
lower
().
replace
(
"
"
,
"
-
"
)
return
team
.
title
,
destination
def
_service_label_link
(
env
:
MacrosPlugin
,
service_key
:
str
,
service
:
Service
):
...
...
@@ -38,7 +38,7 @@ def _service_label_link(env: MacrosPlugin, service_key: str, service: Service):
str:
HTML hyperlink to Guidebook service page.
"""
return
service
.
title
,
rel_url
(
env
,
f
"
{
SERVICES_PAGE_URI
}
/
{
service_key
}
"
)
return
service
.
title
,
f
"
site:
{
SERVICES_PAGE_URI
}
/
{
service_key
}
"
def
_person_key_label
(
service_key
:
str
)
->
str
:
"""
...
...
@@ -144,7 +144,7 @@ def service_management(env: MacrosPlugin, service: Service) -> str:
return
"
\n\n
"
.
join
(
lines
)
def
all_teams_services
(
env
)
->
str
:
def
all_teams_services
(
env
:
MacrosPlugin
)
->
str
:
"""
Returns:
str:
...
...
@@ -184,7 +184,7 @@ def all_teams_services(env) -> str:
return
"
\n\n
"
.
join
(
sections
)
def
tabbed_services_view
(
env
)
->
str
:
def
tabbed_services_view
(
env
:
MacrosPlugin
)
->
str
:
sections
=
[]
indent
=
"
"
*
4
...
...
This diff is collapsed.
Click to expand it.
macros/utils.py
+
0
−
5
View file @
bf7614f0
...
...
@@ -25,11 +25,6 @@ def variables(env: MacrosPlugin) -> dict:
"""
return
environment
(
env
).
get
(
"
variables
"
,
{})
def
rel_url
(
env
:
MacrosPlugin
,
rel_path
:
str
)
->
str
:
_env
=
environment
(
env
)
site_url
=
_env
[
"
conf
"
][
"
site_url
"
]
return
f
"
{
site_url
}
/
{
rel_path
}
"
# Generic Macros:
_ENV
=
None
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment