Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • vilem.ded/howto-cards
  • yjarosz/labCards
  • sarah.diehl/howto-cards
  • jacek.lebioda/howto-cards
  • pinar.alper/howto-cards
  • maharshi.vyas/howto-cards
  • manuel.maidorn/howto-cards
  • roland.krause/howto-cards
  • miriam.fougeras/howto-cards
  • soraya.hezzaz/howto-cards
  • fasavanh.sanichanh/howto-cards
  • marie.fossepre/howto-cards
  • jennifer.behm/howto-cards
  • annegrat.daujeumont/howto-cards
  • jon.gales/howto-cards-jpg
  • sandy.thill/howto-cards
  • jenny.tran/howto-cards
17 results
Show changes
Commits on Source (506)
Showing
with 106 additions and 34 deletions
#!/bin/sh
# change this with environment
DEFAULT_NOT_SOURCE_REGEX="/\\/assets\\//"
NOT_SOURCE_REGEX="${NOT_SOURCE_REGEX:-$DEFAULT_NOT_SOURCE_REGEX}"
TIMESTAMP_SUFFIX="${SUFFIX:-.timestamp}"
LOGFILE="${LOGFILE:-/dev/null}"
[ -z "$1" ] && echo "$0: no inputs specified?" >/dev/stderr
while [ -n "$1" ]
do
echo "sourcing directory '$1' ..." >> "$LOGFILE"
find "$1" -type f -name '*.md' | grep -v "$NOT_SOURCE_REGEX" | while read file ; do
fn=`basename "$file"`
dir=`dirname "$file"`
tsfn="$fn.timestamp"
(
echo "making timestamp in '$dir' for file '$fn' ..." >> "$LOGFILE"
cd "$dir"
if [ -f "$tsfn" ]
then echo "... but it already exists; skipping!" >> "$LOGFILE"
else
TIMESTAMP=`git log -n 1 --pretty=format:%cs -- "$fn"`
mv "$fn" "$fn.temporary"
head -n1 "$fn.temporary" > "$fn"
echo "timestamp: \"$TIMESTAMP\"" >> "$fn"
tail -n+2 "$fn.temporary" >> "$fn"
rm -f "$fn.temporary"
fi
)
done
shift
done
Subproject commit e7924d5dc59143e62d60ea4e0ed844db204e71a7 Subproject commit 53a922a13c4e8916c97599b5242493a47ea0a2e2
*.PNG filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.mp4 filter=lfs diff=lfs merge=lfs -text
...@@ -11,6 +11,7 @@ stages: ...@@ -11,6 +11,7 @@ stages:
variables: variables:
GIT_STRATEGY: clone GIT_STRATEGY: clone
GIT_DEPTH: 0
DOCKER_DRIVER: overlay2 DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: "" DOCKER_TLS_CERTDIR: ""
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
...@@ -77,7 +78,7 @@ build:pages: ...@@ -77,7 +78,7 @@ build:pages:
stage: build stage: build
variables: variables:
JEKYLL_ENV: production JEKYLL_ENV: production
BUNDLER_VERSION: 2.0.2 BUNDLER_VERSION: 2.1.4
artifacts: artifacts:
expire_in: 1 day expire_in: 1 day
paths: paths:
...@@ -108,6 +109,7 @@ build:pages: ...@@ -108,6 +109,7 @@ build:pages:
- | - |
echo "Configuration: " && cat ".ci/_config_$CI_COMMIT_REF_NAME.yml" echo "Configuration: " && cat ".ci/_config_$CI_COMMIT_REF_NAME.yml"
# Run Jekyll with custom configuration # Run Jekyll with custom configuration
- LOGFILE=/dev/stdout .ci/add-timestamp-to-howtocard.sh external
- bundle exec jekyll build -d build --config "_config.yml,.ci/_config_$CI_COMMIT_REF_NAME.yml" - bundle exec jekyll build -d build --config "_config.yml,.ci/_config_$CI_COMMIT_REF_NAME.yml"
# check # check
...@@ -174,7 +176,7 @@ deploy:vm: ...@@ -174,7 +176,7 @@ deploy:vm:
- echo "$KNOWNHOSTS" > ~/.ssh/known_hosts - echo "$KNOWNHOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts - chmod 644 ~/.ssh/known_hosts
rules: rules:
- if: '$CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_REF_NAME == "develop" && $CI_PROJECT_PATH == "R3/howto-cards"' #- if: '$CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_REF_NAME == "develop" && $CI_PROJECT_PATH == "R3/howto-cards"'
- if: '$CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_REF_NAME == "master" && $CI_PROJECT_PATH == "R3/howto-cards"' - if: '$CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_REF_NAME == "master" && $CI_PROJECT_PATH == "R3/howto-cards"'
script: script:
- ssh -p $SSHPORT $SSHCONNECT "mkdir -p ~/$CI_COMMIT_REF_NAME/sources/public/$CI_JOB_ID ~/$CI_COMMIT_REF_NAME/public" - ssh -p $SSHPORT $SSHCONNECT "mkdir -p ~/$CI_COMMIT_REF_NAME/sources/public/$CI_JOB_ID ~/$CI_COMMIT_REF_NAME/public"
......
...@@ -12,7 +12,7 @@ gem "jekyll", "~> 4.0" ...@@ -12,7 +12,7 @@ gem "jekyll", "~> 4.0"
gem "bundler", "> 2.0" gem "bundler", "> 2.0"
gem "minima", "~> 2.5" gem "minima", "~> 2.5"
gem 'jekyll-theme-lcsb-default', '~> 0.4.21' gem 'jekyll-theme-lcsb-default', '~> 0.5.0'
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`. # uncomment the line below. To upgrade, run `bundle update github-pages`.
......
...@@ -10,6 +10,10 @@ ...@@ -10,6 +10,10 @@
{% comment %}This is used to generate share URL for howto-pages{% endcomment %} {% comment %}This is used to generate share URL for howto-pages{% endcomment %}
<div class="footer-text-container"> <div class="footer-text-container">
{% if page.timestamp %}
<p>Last page modification: {{ page.timestamp }}</p>
{% endif %}
{% if page.shortcut %} {% if page.shortcut %}
<p> <p>
Share this page: Share this page:
...@@ -44,4 +48,4 @@ ...@@ -44,4 +48,4 @@
</footer> </footer>
{% if site.siteID > 0 %} {% if site.siteID > 0 %}
{%- include gdpr-banner.html -%} {%- include gdpr-banner.html -%}
{% endif %} {% endif %}
\ No newline at end of file
...@@ -24,7 +24,7 @@ window.boxHider = (function() { ...@@ -24,7 +24,7 @@ window.boxHider = (function() {
function GetSelectedBoxElement(id) { function GetSelectedBoxElement(id) {
var allBoxesArray = GetAllBoxElementsArray(); var allBoxesArray = GetAllBoxElementsArray();
// note: handbook and lab are actually grouped sections // note: handbook and lab are actually grouped sections
if (id.startsWith('handbook') || id.startsWith('lab') || id.startsWith('qms')) { if (id.startsWith('handbook') || id.startsWith('lab') || id.startsWith('qms') || id.startsWith('publication')) {
return true; return true;
} else { } else {
var element = document.getElementById(id); var element = document.getElementById(id);
...@@ -104,6 +104,14 @@ window.boxHider = (function() { ...@@ -104,6 +104,14 @@ window.boxHider = (function() {
ShowElement(box); ShowElement(box);
} }
}); });
} else if (boxId.startsWith('publication')) {
allBoxes.map(function(box) {
if (!box.id.startsWith('publication')) {
HideElement(box);
} else {
ShowElement(box);
}
});
} else { } else {
allBoxes.map(function(box) { allBoxes.map(function(box) {
if (box != selectedBox) { if (box != selectedBox) {
......
...@@ -37,7 +37,8 @@ order: -1 ...@@ -37,7 +37,8 @@ order: -1
<li><a href="{{ 'external/access/harrenhal-access' | relative_url }}">HARRENHAL access</a></li> <li><a href="{{ 'external/access/harrenhal-access' | relative_url }}">HARRENHAL access</a></li>
<li><a href="{{ 'external/access/lums-passwords' | relative_url }}">LUMS account</a></li> <li><a href="{{ 'external/access/lums-passwords' | relative_url }}">LUMS account</a></li>
<li><a href="{{ 'external/access/passwords' | relative_url }}">Managing your passwords</a></li> <li><a href="{{ 'external/access/passwords' | relative_url }}">Managing your passwords</a></li>
<li><a href="{{ 'external/access/vpn-cerbere-access' | relative_url }}">VPN/CERBERE connection</a></li> <li><a href="{{ 'external/access/vpn-access' | relative_url }}">VPN connection</a></li>
<li><a href="{{ 'external/access/vpn-cerbere-access' | relative_url }}">Connect to Cerbere via VPN</a></li>
<li><a href="{{ 'external/access/vpn-mobile' | relative_url }}">VPN connection on your mobile phone</a></li> <li><a href="{{ 'external/access/vpn-mobile' | relative_url }}">VPN connection on your mobile phone</a></li>
<li><a href="{{ 'external/access/wifiNetworkAccessGuests' | relative_url }}">WiFi network access for guests</a></li> <li><a href="{{ 'external/access/wifiNetworkAccessGuests' | relative_url }}">WiFi network access for guests</a></li>
</ul> </ul>
...@@ -56,6 +57,8 @@ order: -1 ...@@ -56,6 +57,8 @@ order: -1
<li><a href="{{ 'external/contribute/markdown' | relative_url }}">Markdown</a></li> <li><a href="{{ 'external/contribute/markdown' | relative_url }}">Markdown</a></li>
<li><a href="{{ 'external/contribute/mirror-fork' | relative_url }}">Mirror fork automatically</a></li> <li><a href="{{ 'external/contribute/mirror-fork' | relative_url }}">Mirror fork automatically</a></li>
<li><a href="{{ 'external/contribute/review' | relative_url }}">Reviewing in Git</a></li> <li><a href="{{ 'external/contribute/review' | relative_url }}">Reviewing in Git</a></li>
<li><a href="{{ 'external/contribute/ssh-key-generation' | relative_url }}">Key-based Authentication on GitLab</a></li>
<li><a href="{{ 'external/contribute/supersede' | relative_url }}">Take over a stale merge request</a></li>
<li><a href="{{ 'external/contribute/vscode' | relative_url }}">Contribute using Visual Studio Code</a></li> <li><a href="{{ 'external/contribute/vscode' | relative_url }}">Contribute using Visual Studio Code</a></li>
<li><a href="{{ 'external/contribute/web-ide' | relative_url }}">Contribute using Gitlab Web IDE</a></li> <li><a href="{{ 'external/contribute/web-ide' | relative_url }}">Contribute using Gitlab Web IDE</a></li>
...@@ -64,10 +67,13 @@ order: -1 ...@@ -64,10 +67,13 @@ order: -1
<div class="index-box noborderbox" id="exchange-channels-card"> <div class="index-box noborderbox" id="exchange-channels-card">
<h3>Exchange channels</h3> <h3>Exchange channels</h3>
<ul> <ul>
<li><a href="{{ 'external/exchange-channels/lft' | relative_url }}">LCSB file transfer (LFT) Quick Guide</a></li>
<li><a href="{{ 'external/exchange-channels/calendar' | relative_url }}">Sharing calendar in Microsoft Exchange</a></li>
<li><a href="{{ 'external/exchange-channels/asperaweb' | relative_url }}">AsperaWEB Quick Guide</a></li> <li><a href="{{ 'external/exchange-channels/asperaweb' | relative_url }}">AsperaWEB Quick Guide</a></li>
<li><a href="{{ 'external/exchange-channels/atlas-hpc' | relative_url }}">Data transfer between Atlas and UL HPC Clusters</a></li>
<li><a href="{{ 'external/exchange-channels/calendar' | relative_url }}">Sharing calendar in Microsoft Exchange</a></li>
<li><a href="{{ 'external/exchange-channels/cryptomator' | relative_url }}">Cryptomator</a></li>
<li><a href="{{ 'external/exchange-channels/lft' | relative_url }}">LCSB file transfer (LFT) Quick Guide</a></li>
<li><a href="{{ 'external/exchange-channels/owncloud' | relative_url }}">Owncloud</a></li> <li><a href="{{ 'external/exchange-channels/owncloud' | relative_url }}">Owncloud</a></li>
</ul> </ul>
</div> </div>
<div class="index-box noborderbox" id="general-card"> <div class="index-box noborderbox" id="general-card">
...@@ -86,49 +92,67 @@ order: -1 ...@@ -86,49 +92,67 @@ order: -1
<h3>Integrity</h3> <h3>Integrity</h3>
<ul> <ul>
<li><a href="{{ 'external/integrity/checksum' | relative_url }}">Ensuring Integrity of Data Files with Checksums</a></li> <li><a href="{{ 'external/integrity/checksum' | relative_url }}">Ensuring Integrity of Data Files with Checksums</a></li>
<li><a href="{{ 'external/integrity/encryption/cloud' | relative_url }}">Data upload to cloud</a></li> <li><a href="{{ 'external/integrity/dmp' | relative_url }}">Data Management Plan</a></li>
<li><a href="{{ 'external/integrity/encryption/disk' | relative_url }}">Encrypting the Startup Disk for Your Laptop/Desktop</a></li> <li><a href="{{ 'external/integrity/encryption/disk' | relative_url }}">Encrypting the Startup Disk for Your Laptop/Desktop</a></li>
<li><a href="{{ 'external/integrity/encryption/file' | relative_url }}">Encrypting Files and Folders</a></li> <li><a href="{{ 'external/integrity/encryption/file' | relative_url }}">Encrypting Files and Folders</a></li>
<li><a href="{{ 'external/integrity/naming' | relative_url }}">Naming files</a></li> <li><a href="{{ 'external/integrity/naming' | relative_url }}">Naming files</a></li>
<li><a href="{{ 'external/integrity/organization' | relative_url }}">Organization</a></li> <li><a href="{{ 'external/integrity/organization' | relative_url }}">Organization</a></li>
<li><a href="{{ 'external/integrity/sanitisation' | relative_url }}">Sanitising Data Files</a></li> <li><a href="{{ 'external/integrity/sanitisation' | relative_url }}">Sanitising Data Files</a></li>
<li><a href="{{ 'external/integrity/spreadsheets' | relative_url }}">Working with spreadsheets</a></li> <li><a href="{{ 'external/integrity/spreadsheets' | relative_url }}">Working with spreadsheets</a></li>
<li><a href="{{ 'external/integrity/transfer/owncloud-privatebin' | relative_url }}">Transfer of Human Data with OwnCloud</a></li>
</ul> </ul>
</div> </div>
<div class="index-box noborderbox" id="lab-equipment-card"> <div class="index-box noborderbox" id="lab-equipment-card">
<h3>Lab: Equipment</h3> <h3>Lab: Equipment</h3>
<ul> <ul>
<li><a href="{{ 'external/lab-equipment/cryostorage' | relative_url }}">Utilization of the cryostorage</a></li> <li><a href="{{ 'external/lab-equipment/autoclaves' | relative_url }}">Autoclaves: utilization</a></li>
<li><a href="{{ 'external/lab-equipment/dishwasher-utilization-and-maintenance' | relative_url }}">Dishwasher utilization and maintenance</a></li> <li><a href="{{ 'external/lab-equipment/balances' | relative_url }}">Balances: utilization and maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/hoods' | relative_url }}">Laminar Flow - Fume Hood - Biosafety Cabinet: what are the differences and when to use them?</a></li> <li><a href="{{ 'external/lab-equipment/biosafety-cabinets' | relative_url }}">Biosafety Cabinets: good practices</a></li>
<li><a href="{{ 'external/lab-equipment/lightcycler' | relative_url }}">How to leave virtual instrument mode on the LightCycler</a></li> <li><a href="{{ 'external/lab-equipment/cold-traps' | relative_url }}">Cold traps: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/maintenance-of-fridges' | relative_url }}">Maintenance of fridges and freezers</a></li> <li><a href="{{ 'external/lab-equipment/cryostorage' | relative_url }}">Cryostorage: utilization</a></li>
<li><a href="{{ 'external/lab-equipment/maintenance_of_cold_traps' | relative_url }}">Maintenance of cold traps </a></li> <li><a href="{{ 'external/lab-equipment/dishwasher-utilization-and-maintenance' | relative_url }}">Dishwasher: utilization and maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/utilization-of-autoclaves' | relative_url }}">Utilization of autoclaves</a></li> <li><a href="{{ 'external/lab-equipment/electric-car' | relative_url }}">Electric Car</a></li>
<li><a href="{{ 'external/lab-equipment/utilization-of-balances' | relative_url }}">Utilization of balances</a></li> <li><a href="{{ 'external/lab-equipment/freezers' | relative_url }}">-20°C Freezers: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/utilization-of-bsc' | relative_url }}">Biosafety Cabinets: good practices</a></li> <li><a href="{{ 'external/lab-equipment/freezers-80' | relative_url }}">-80°C freezers: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/utilization-of-pH-meter' | relative_url }}">Utilization of pH meter</a></li> <li><a href="{{ 'external/lab-equipment/freezers-150' | relative_url }}">-150°C freezers: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/fridges' | relative_url }}">Fridges: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/hoods' | relative_url }}">Hoods: Laminar Flow - Fume Hood - Biosafety Cabinet</a></li>
<li><a href="{{ 'external/lab-equipment/incubators' | relative_url }}">Incubators: maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/lightcycler' | relative_url }}">LightCycler: leave the virtual instrument mode</a></li>
<li><a href="{{ 'external/lab-equipment/pH-meter' | relative_url }}">pH meter: utilization and maintenance</a></li>
<li><a href="{{ 'external/lab-equipment/power-consumption' | relative_url }}">Power consumption of the equipment</a></li>
</ul>
</div>
<div class="index-box noborderbox" id="lab-good-practice-card">
<h3>Lab: Good Practice</h3>
<ul>
<li><a href="{{ 'external/lab-good-practice/mycoplasma' | relative_url }}">Mycoplasma contamination check</a></li>
</ul> </ul>
</div> </div>
<div class="index-box noborderbox" id="lab-hsa-card"> <div class="index-box noborderbox" id="lab-hsa-card">
<h3>Lab: Health & Safety, Access</h3> <h3>Lab: Health & Safety, Access</h3>
<ul> <ul>
<li><a href="{{ 'external/lab-hsa/diphoterine' | relative_url }}">Diphoterine: utilization</a></li>
<li><a href="{{ 'external/lab-hsa/handwashing' | relative_url }}">Handwashing</a></li> <li><a href="{{ 'external/lab-hsa/handwashing' | relative_url }}">Handwashing</a></li>
<li><a href="{{ 'external/lab-hsa/lab-coats' | relative_url }}">Lab coats</a></li> <li><a href="{{ 'external/lab-hsa/lab-coats' | relative_url }}">Lab coats</a></li>
<li><a href="{{ 'external/lab-hsa/personal-alert-safety-system' | relative_url }}">Personal alert safety system (PASS)</a></li> <li><a href="{{ 'external/lab-hsa/personal-alert-safety-system' | relative_url }}">Personal alert safety system (PASS)</a></li>
<li><a href="{{ 'external/lab-hsa/shipment' | relative_url }}">Shipment of a biological or chemical sample</a></li> <li><a href="{{ 'external/lab-hsa/pictograms' | relative_url }}">Pictograms</a></li>
<li><a href="{{ 'external/lab-hsa/spill-bsc' | relative_url }}">How to deal with a spill in a BSC</a></li> <li><a href="{{ 'external/lab-hsa/ppe' | relative_url }}">Personal Protective Equipment (PPE)</a></li>
<li><a href="{{ 'external/lab-hsa/waste' | relative_url }}">Chemical and Biological Waste Management</a></li> <li><a href="{{ 'external/lab-hsa/shipment' | relative_url }}">Shipment of biological or chemical samples with carrier</a></li>
<li><a href="{{ 'external/lab-hsa/spill' | relative_url }}">Spill in a laboratory</a></li>
<li><a href="{{ 'external/lab-hsa/spill-bsc' | relative_url }}">Spill in a Biosafety Cabinet</a></li>
<li><a href="{{ 'external/lab-hsa/waste' | relative_url }}">Waste Management: Chemical and Biological waste</a></li>
</ul> </ul>
</div> </div>
<div class="index-box noborderbox" id="lab-quarks-card"> <div class="index-box noborderbox" id="lab-quarks-card">
<h3>Lab: Quarks</h3> <h3>Lab: Quarks</h3>
<ul> <ul>
<li><a href="{{ 'external/lab-quarks/book-lab-equipment' | relative_url }}">How to book a Lab Equipment in Quarks</a></li> <li><a href="{{ 'external/lab-quarks/book-lab-equipment' | relative_url }}">Booking of a Lab Equipment</a></li>
<li><a href="{{ 'external/lab-quarks/quarks-general' | relative_url }}">Quarks - General information</a></li> <li><a href="{{ 'external/lab-quarks/general' | relative_url }}">General information on Quarks</a></li>
</ul> </ul>
</div> </div>
...@@ -143,12 +167,17 @@ order: -1 ...@@ -143,12 +167,17 @@ order: -1
<div class="index-box noborderbox" id="publication-card"> <div class="index-box noborderbox" id="publication-card">
<h3>Publication</h3> <h3>Publication</h3>
<ul> <ul>
<li><a href="{{ 'external/publication/publish-repo' | relative_url }}">Publish a repository</a></li>
<li><a href="{{ 'external/publication/add-gitignore' | relative_url }}">Add a .gitignore to your repository</a></li>
<li><a href="{{ 'external/publication/orcid' | relative_url }}">Obtain an ORCID</a></li> <li><a href="{{ 'external/publication/orcid' | relative_url }}">Obtain an ORCID</a></li>
<li><a href="{{ 'external/publication/publishInBiotools' | relative_url }}">Publishing a tool in *bio.tools*</a></li>
<li><a href="{{ 'external/publication/phdThesisTemplate' | relative_url }}">LaTeX template for a doctoral thesis at University of Luxembourg</a></li> <li><a href="{{ 'external/publication/phdThesisTemplate' | relative_url }}">LaTeX template for a doctoral thesis at University of Luxembourg</a></li>
<li><a href="{{ 'external/publication/10WaysImproveEnglish' | relative_url }}">10 ways to improve your English</a></li> <li><a href="{{ 'external/publication/10WaysImproveEnglish' | relative_url }}">10 ways to improve your English</a></li>
</ul> </ul>
</div> </div>
<div class="index-box noborderbox" id="publication-code-card">
<h3>Publication: Publishing code and programs</h3>
<ul>
<li><a href="{{ 'external/publication-code/publish-repo' | relative_url }}">Publish a repository</a></li>
<li><a href="{{ 'external/publication-code/add-gitignore' | relative_url }}">Add a .gitignore to your repository</a></li>
<li><a href="{{ 'external/publication-code/publishInBiotools' | relative_url }}">Publishing a tool in *bio.tools*</a></li>
</ul>
</div>
</div><br><center><a href="{{ '/' | relative_url }}">go back</a></center><br><center><a href="{{ '/cards' | relative_url }}">Overview of all HowTo cards</a></center> </div><br><center><a href="{{ '/' | relative_url }}">go back</a></center><br><center><a href="{{ '/cards' | relative_url }}">Overview of all HowTo cards</a></center>
\ No newline at end of file
external/access/harrenhal-access/img/all_connections_01.png

129 B | W: 0px | H: 0px

external/access/harrenhal-access/img/all_connections_01.png

7.97 KiB | W: 0px | H: 0px

external/access/harrenhal-access/img/all_connections_01.png
external/access/harrenhal-access/img/all_connections_01.png
external/access/harrenhal-access/img/all_connections_01.png
external/access/harrenhal-access/img/all_connections_01.png
  • 2-up
  • Swipe
  • Onion skin
external/access/harrenhal-access/img/login_01.png

130 B | W: 0px | H: 0px

external/access/harrenhal-access/img/login_01.png

17.2 KiB | W: 0px | H: 0px

external/access/harrenhal-access/img/login_01.png
external/access/harrenhal-access/img/login_01.png
external/access/harrenhal-access/img/login_01.png
external/access/harrenhal-access/img/login_01.png
  • 2-up
  • Swipe
  • Onion skin
external/access/harrenhal-access/img/login_03.png

130 B | W: 0px | H: 0px

external/access/harrenhal-access/img/login_03.png

30.1 KiB | W: 0px | H: 0px

external/access/harrenhal-access/img/login_03.png
external/access/harrenhal-access/img/login_03.png
external/access/harrenhal-access/img/login_03.png
external/access/harrenhal-access/img/login_03.png
  • 2-up
  • Swipe
  • Onion skin
external/access/harrenhal-access/img/login_04.png

130 B | W: 0px | H: 0px

external/access/harrenhal-access/img/login_04.png

12.9 KiB | W: 0px | H: 0px

external/access/harrenhal-access/img/login_04.png
external/access/harrenhal-access/img/login_04.png
external/access/harrenhal-access/img/login_04.png
external/access/harrenhal-access/img/login_04.png
  • 2-up
  • Swipe
  • Onion skin
external/access/harrenhal-access/img/server_01.png

130 B | W: 0px | H: 0px

external/access/harrenhal-access/img/server_01.png

66.2 KiB | W: 0px | H: 0px

external/access/harrenhal-access/img/server_01.png
external/access/harrenhal-access/img/server_01.png
external/access/harrenhal-access/img/server_01.png
external/access/harrenhal-access/img/server_01.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_first-reset-password.png

131 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_first-reset-password.png

118 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_first-reset-password.png
external/access/lums-passwords/img/lums_first-reset-password.png
external/access/lums-passwords/img/lums_first-reset-password.png
external/access/lums-passwords/img/lums_first-reset-password.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_home-settings.png

131 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_home-settings.png

116 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_home-settings.png
external/access/lums-passwords/img/lums_home-settings.png
external/access/lums-passwords/img/lums_home-settings.png
external/access/lums-passwords/img/lums_home-settings.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_login.png

130 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_login.png

89.3 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_login.png
external/access/lums-passwords/img/lums_login.png
external/access/lums-passwords/img/lums_login.png
external/access/lums-passwords/img/lums_login.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_reset-password.png

130 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_reset-password.png

25.6 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_reset-password.png
external/access/lums-passwords/img/lums_reset-password.png
external/access/lums-passwords/img/lums_reset-password.png
external/access/lums-passwords/img/lums_reset-password.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_ticket-main.png

131 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_ticket-main.png

295 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_ticket-main.png
external/access/lums-passwords/img/lums_ticket-main.png
external/access/lums-passwords/img/lums_ticket-main.png
external/access/lums-passwords/img/lums_ticket-main.png
  • 2-up
  • Swipe
  • Onion skin
external/access/lums-passwords/img/lums_ticket-request.png

130 B | W: 0px | H: 0px

external/access/lums-passwords/img/lums_ticket-request.png

80.2 KiB | W: 0px | H: 0px

external/access/lums-passwords/img/lums_ticket-request.png
external/access/lums-passwords/img/lums_ticket-request.png
external/access/lums-passwords/img/lums_ticket-request.png
external/access/lums-passwords/img/lums_ticket-request.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -32,7 +32,7 @@ This serves for internal authentication for resources provided by the LCSB, e.g. ...@@ -32,7 +32,7 @@ This serves for internal authentication for resources provided by the LCSB, e.g.
## Requesting LUMS account as external collaborator, UL members or UL student ## Requesting LUMS account as external collaborator, UL members or UL student
* In case you are not a member of LCSB/DLSM, please ask your collaborator at LSCB/DLSM to request the account for you. You will need to provide an institutional email address. * In case you are not a member of LCSB/DLSM, please ask your collaborator at LCSB/DLSM to request the account for you. You will need to provide an institutional email address.
* Once the account is created, you will receive an email with your new LUMS account details and how to access services and VMS. * Once the account is created, you will receive an email with your new LUMS account details and how to access services and VMS.
## Requesting LUMS account for externals collaborators, UL members or UL students ## Requesting LUMS account for externals collaborators, UL members or UL students
......