Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
howto-cards LEGACY VERSION
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Model registry
Operate
Environments
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
This is an archived project. Repository and other project resources are read-only.
Gitlab will go in to maintenance on Friday 5:30pm since SIU is doing Isilon maintenance and we use isilon shares on the Gitlab
You are on a read-only GitLab instance.
Show more breadcrumbs
R3
howto-cards LEGACY VERSION
Commits
1e1c626d
Commit
1e1c626d
authored
4 years ago
by
Laurent Heirendt
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into 'master'
Develop See merge request
!181
parents
006c0e1a
87227812
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!245
Integrate data upload cloud
,
!235
Integrate data upload cloud
,
!224
Fixing a couple of issues in the redesign
,
!181
Develop
Pipeline
#34147
passed
4 years ago
Stage: prepare
Stage: build
Stage: generate
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.ci/generateIndex.py
+3
-3
3 additions, 3 deletions
.ci/generateIndex.py
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
index.md
+5
-5
5 additions, 5 deletions
index.md
with
11 additions
and
8 deletions
.ci/generateIndex.py
+
3
−
3
View file @
1e1c626d
...
...
@@ -11,13 +11,13 @@ def line_prepender(filename, line):
def
build_link
(
title
,
href
):
return
f
'
\t\t\t
<li><a href=
"
{
href
}
"
>
{
title
}
</a></li>
\n
'
def
build_section_start
(
title
):
def
build_section_start
(
title
,
shortcut
):
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
'
return
f
'
\n\t
<div class=
"
index-box
"
id=
"
{
shortcut
}
"
>
\n\t\t
<h3>
{
title
}
</h3>
\n\t\t
<ul>
\n
'
def
build_section_end
():
return
"
\t\t
</ul>
\n\t
</div>
"
...
...
@@ -176,7 +176,7 @@ print(localIndexArr)
# determine the index
k
=
0
for
s
in
sections
:
index
+=
build_section_start
(
s
.
replace
(
"
-
"
,
"
"
).
capitalize
())
index
+=
build_section_start
(
s
.
replace
(
"
-
"
,
"
"
).
capitalize
()
,
s
)
index
+=
''
.
join
(
localIndexArr
[
k
])
index
+=
build_section_end
()
k
+=
1
...
...
This diff is collapsed.
Click to expand it.
.gitignore
+
3
−
0
View file @
1e1c626d
...
...
@@ -35,3 +35,6 @@ __pycache__/
contribute.egg-info/
policies
.tmp
env/.jekyll-cache/
env/Gemfile.lock
env/_site/
This diff is collapsed.
Click to expand it.
index.md
+
5
−
5
View file @
1e1c626d
...
...
@@ -17,7 +17,7 @@ The How-to cards are intended to provide practical guidance in implementing Data
<div
class=
"index-box-container"
>
<div class="index-box">
<div class="index-box"
id="access"
>
<h3>Access</h3>
<ul>
<li><a href="external/access/harrenhal-access">HARRENHAL access</a></li>
...
...
@@ -27,7 +27,7 @@ The How-to cards are intended to provide practical guidance in implementing Data
</ul>
</div>
<div class="index-box">
<div class="index-box"
id="contribute"
>
<h3>Contribute</h3>
<ul>
<li><a href="external/contribute/add-edit-card">How to add or edit a howto card</a></li>
...
...
@@ -37,7 +37,7 @@ The How-to cards are intended to provide practical guidance in implementing Data
</ul>
</div>
<div class="index-box">
<div class="index-box"
id="exchange-channels"
>
<h3>Exchange channels</h3>
<ul>
<li><a href="external/exchange-channels/asperaweb">AsperaWEB Quick Guide</a></li>
...
...
@@ -46,7 +46,7 @@ The How-to cards are intended to provide practical guidance in implementing Data
</ul>
</div>
<div class="index-box">
<div class="index-box"
id="general"
>
<h3>General</h3>
<ul>
<li><a href="external/general/attend-webex">Attend the LCSB Team Meeting online (webex)</a></li>
...
...
@@ -54,7 +54,7 @@ The How-to cards are intended to provide practical guidance in implementing Data
</ul>
</div>
<div class="index-box">
<div class="index-box"
id="integrity"
>
<h3>Integrity</h3>
<ul>
<li><a href="external/integrity/checksum">Ensuring Integrity of Data Files with Checksums</a></li>
...
...
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