Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sight-git
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sight
sight-git
Commits
17056e92
Commit
17056e92
authored
1 year ago
by
Flavien BRIDAULT
Browse files
Options
Downloads
Patches
Plain Diff
fix(ci): adapt registry parsing to snake case configs
parent
03d8c392
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#267323
passed
1 year ago
Stage: lint
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hooks/check_xml.py
+4
-0
4 additions, 0 deletions
hooks/check_xml.py
with
4 additions
and
0 deletions
hooks/check_xml.py
+
4
−
0
View file @
17056e92
...
...
@@ -134,10 +134,14 @@ def check_unused_service(config_tree):
starts
+=
config_tree
.
findall
(
"
./service/stop
"
)
# for SStarter
views
=
config_tree
.
findall
(
"
./service/registry/view
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/menuItem
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/menu_item
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/item
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/editor
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/menu
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/toolBar
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/menuBar
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/toolbar
"
)
views
+=
config_tree
.
findall
(
"
./service/registry/menubar
"
)
slots
=
config_tree
.
findall
(
"
./service/slots/slot
"
)
# SSlotCaller
slots
+=
config_tree
.
findall
(
"
./connect/signal
"
)
slots
+=
config_tree
.
findall
(
"
./connect/slot
"
)
...
...
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