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
ca1d281e
Commit
ca1d281e
authored
4 years ago
by
Laurent Heirendt
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into 'master'
Develop See merge request
R3/howto-cards!174
parents
82c7f79d
39350423
No related branches found
Branches containing commit
Tags
v2.11.5
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.ci/generateIndex.py
+7
-4
7 additions, 4 deletions
.ci/generateIndex.py
.gitlab-ci.yml
+2
-0
2 additions, 0 deletions
.gitlab-ci.yml
with
9 additions
and
4 deletions
.ci/generateIndex.py
+
7
−
4
View file @
ca1d281e
import
os
,
re
from
os
import
path
from
natsort
import
natsorted
def
line_prepender
(
filename
,
line
):
with
open
(
filename
,
'
r+
'
)
as
f
:
...
...
@@ -14,6 +14,8 @@ def build_link(title, href):
def
build_section_start
(
title
):
title
=
title
.
replace
(
"
Gdpr
"
,
"
GDPR
"
)
title
=
title
.
replace
(
"
Handbook
"
,
"
PI Handbook
"
)
title
=
title
.
replace
(
"
Covid 19
"
,
"
COVID-19
"
)
return
f
'
\n\t
<div class=
"
index-box
"
>
\n\t\t
<h3>
{
title
}
</h3>
\n\t\t
<ul>
\n
'
...
...
@@ -70,13 +72,14 @@ sections = []
for
direct
in
cardDirs
:
if
path
.
isdir
(
direct
):
dirs
=
os
.
listdir
(
direct
)
dirs
=
natsorted
(
dirs
)
for
d
in
dirs
:
if
d
[
0
]
!=
"
.
"
:
sections
.
append
(
d
)
sections
=
list
(
set
(
sections
))
sections
.
sort
(
)
sections
=
natsorted
(
sections
)
# Index contains the generated content, init it with an empty container
index
=
''
...
...
@@ -88,7 +91,7 @@ for folder in cardDirs:
# check if folder exists
if
path
.
isdir
(
folder
):
dirs
=
os
.
listdir
(
folder
)
dirs
=
sorted
(
dirs
)
dirs
=
nat
sorted
(
dirs
)
for
d
in
dirs
:
if
d
[
0
]
!=
"
.
"
:
...
...
@@ -166,7 +169,7 @@ for folder in cardDirs:
print
(
"
-----------------------
"
)
# join all subcategories to the index
localIndexArr
[
indexS
]
.
sort
(
)
localIndexArr
[
indexS
]
=
natsorted
(
localIndexArr
[
indexS
]
)
print
(
localIndexArr
)
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
2
−
0
View file @
ca1d281e
...
...
@@ -17,6 +17,8 @@ prepare:index:
rules
:
-
if
:
$CI_COMMIT_REF_NAME
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"
&&
$CI_COMMIT_MESSAGE
!~
/tmpBranch/
&&
$CI_COMMIT_MESSAGE
!~
/Update
index/'
before_script
:
-
pip install natsort
script
:
-
python .ci/generateIndex.py
-
mkdir .tmp
...
...
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