Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
howto-cards
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Annegrät Daujeumont
howto-cards
Commits
de19879f
Verified
Commit
de19879f
authored
2 years ago
by
Laurent Heirendt
Browse files
Options
Downloads
Patches
Plain Diff
merge all fcts
parent
6f61874d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ci/generateIndex.py
+2
-25
2 additions, 25 deletions
.ci/generateIndex.py
with
2 additions
and
25 deletions
.ci/generateIndex.py
+
2
−
25
View file @
de19879f
from
pathlib
import
Path
from
generator.library
import
*
# loop through the entire internal tree
localroot
=
os
.
getcwd
()
# generate the index properly speaking
cardDirs
=
[
"
internal
"
,
"
external
"
]
sections
,
ignore
=
get_sections
(
cardDirs
)
localIndexArr
,
orderArr
=
get_indexArr
(
sections
)
index
=
generate_index_top
()
# walk through the folders with all the cards
folderFlag
,
localI
ndex
Arr
,
white
L
ist
=
core
(
cardDirs
,
localroot
,
localIndexArr
,
orderArr
,
sections
,
ignore
)
i
ndex
,
white
l
ist
=
core
(
[
"
internal
"
,
"
external
"
]
)
localIndexArr
=
sort_sections
(
sections
,
localIndexArr
,
orderArr
)
index
=
generate_index
(
index
,
sections
,
localIndexArr
)
save_index
(
index
,
"
cards.md
"
)
# write link whitelist out
whiteListFile
=
"
.ci/whitelist.txt
"
if
Path
(
whiteListFile
).
exists
():
with
open
(
whiteListFile
,
'
r
'
)
as
file
:
for
line
in
file
:
whiteList
+=
line
with
open
(
whiteListFile
,
'
w
'
)
as
file
:
file
.
write
(
whiteList
)
save_whitelist
(
whitelist
,
"
.ci/whitelist.txt
"
)
\ No newline at end of file
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