Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Miriam Fougeras
howto-cards
Commits
3cbe4bf1
Commit
3cbe4bf1
authored
Feb 25, 2021
by
Laurent Heirendt
✈
Browse files
Merge branch 'develop' into 'master'
[release] Regular merge of develop See merge request
R3/howto-cards!237
parents
671b81d9
b84ea778
Changes
5
Hide whitespace changes
Inline
Side-by-side
_layouts/landing.html
View file @
3cbe4bf1
...
...
@@ -42,14 +42,21 @@
<main
class=
"page-content"
aria-label=
"Content"
style=
"margin-right: 0%"
>
{% if site.internal %}
<div
class=
"indicator tooltip"
id=
"external-indicator"
>
<i
class=
"material-icons"
>
verified
</i>
<p>
External
<i
class=
"material-icons"
>
info
</i>
</p>
<span
class=
"tooltip-text"
>
You are connected to the uni.lu network.
<br
/>
You see all the cards.
</span>
</div>
{% else %}
<div
class=
"indicator tooltip"
id=
"internal-indicator"
>
<i
class=
"material-icons"
>
pending
</i>
<p>
External
<i
class=
"material-icons"
>
info
</i>
</p>
<span
class=
"tooltip-text"
>
You are
<strong>
not connected
</strong>
to the uni.lu network.
<br
/>
You can see only publicly available cards.
<br
/>
In order to see all, please connect to the university network via VPN.
</span>
...
...
assets/css/landing.css
View file @
3cbe4bf1
...
...
@@ -260,7 +260,7 @@
/* ==================================================== */
div
.search-bar
{
width
:
60%
;
margin-left
:
2
0
%
;
margin-left
:
1
2%
;
display
:
flex
;
}
@media
(
max-width
:
1080px
)
{
...
...
@@ -300,19 +300,31 @@ div.search-bar {
.indicator
{
position
:
absolute
;
top
:
190px
;
right
:
7
5px
;
right
:
5
9
px
;
color
:
#d6d6d6
;
text-align
:
center
;
cursor
:
pointer
;
}
@media
(
max-width
:
1080px
)
{
.indicator
{
top
:
40
px
;
right
:
2
0
px
;
top
:
128
px
;
right
:
7
2px
;
}
}
.indicator
>
i
{
font-size
:
36px
;
@media
(
max-width
:
650px
)
{
.indicator
{
top
:
50px
;
right
:
50px
;
}
}
.indicator
>
p
>
i
{
font-size
:
20px
;
position
:
relative
;
top
:
5px
;
left
:
5px
;
}
.indicator
>
p
{
font-size
:
14px
;
}
/* ==================================================== */
/* Tooltip */
...
...
@@ -321,7 +333,7 @@ div.search-bar {
visibility
:
hidden
;
width
:
400px
;
right
:
120%
;
top
:
-
15
px
;
top
:
-
43
px
;
background-color
:
var
(
--tooltip-bg
);
color
:
var
(
--secondary-color
);
text-align
:
center
;
...
...
assets/js/box_hider.js
View file @
3cbe4bf1
...
...
@@ -38,7 +38,7 @@ window.boxHider = (function() {
}
}
function
Unhide
Element
(
element
)
{
function
Show
Element
(
element
)
{
if
(
element
instanceof
HTMLElement
)
{
element
.
style
[
'
display
'
]
=
'
inline-block
'
;
}
...
...
@@ -52,7 +52,7 @@ window.boxHider = (function() {
function
ShowAllBoxes
()
{
var
allBoxes
=
GetAllBoxElementsArray
();
allBoxes
.
map
(
function
(
box
)
{
Unhide
Element
(
box
);
Show
Element
(
box
);
});
}
...
...
@@ -74,17 +74,22 @@ window.boxHider = (function() {
// Hide the "All Categories" element
HideAllCategories
();
// Finally, hide all boxes except of the selected one
// Moreover, make sure that the selected boxes are displayed.
var
allBoxes
=
GetAllBoxElementsArray
();
if
(
boxId
.
startsWith
(
'
handbook
'
))
{
allBoxes
.
map
(
function
(
box
)
{
if
(
!
box
.
id
.
startsWith
(
'
handbook
'
))
{
HideElement
(
box
);
}
else
{
ShowElement
(
box
);
}
});
}
else
{
allBoxes
.
map
(
function
(
box
)
{
if
(
box
!=
selectedBox
)
{
HideElement
(
box
);
}
else
{
ShowElement
(
box
);
}
});
}
...
...
cards.md
View file @
3cbe4bf1
...
...
@@ -12,6 +12,21 @@ order: -1
}
</style>
{% comment %}
This code adds CSS that hides the index-boxes by default.
It's in javascript, so that it doesn't effect the browsers with javascript disabled.
How the correct boxes are shown then? box_hider.js shows them
{% endcomment %}
<script>
var element = document.createElement('style');
var content = document.createTextNode(".index-box {display: none;}");
var head = document.getElementsByTagName('head');
if (head.length > 0) {
element.appendChild(content);
head[0].appendChild(element);
}
</script>
<!-- index -->
<div
class=
"index-box-container"
>
...
...
@@ -58,6 +73,7 @@ order: -1
<h3>Integrity</h3>
<ul>
<li><a href="external/integrity/checksum">Ensuring Integrity of Data Files with Checksums</a></li>
<li><a href="external/integrity/encryption/cloud">Data upload to cloud</a></li>
<li><a href="external/integrity/encryption/disk">Encrypting the Startup Disk for Your Laptop/Desktop</a></li>
<li><a href="external/integrity/encryption/file">Encrypting Files and Folders</a></li>
<li><a href="external/integrity/naming">Naming files</a></li>
...
...
external/integrity/encryption/cloud/cloud.md
0 → 100644
View file @
3cbe4bf1
---
layout
:
page
permalink
:
/external/integrity/encryption/cloud/
shortcut
:
integrity:encryption:cloud
redirect_from
:
-
/cards/integrity:encryption:cloud
-
/external/cards/integrity:encryption:cloud
---
# Data upload to cloud
Data encryption and hash-check for uploading to UL-LCSB onedrive or owncloud
[
Windows
](
https://git-r3lab.uni.lu/transmed/support/data-upload-to-cloud/-/wikis/Upload-data-from-Windows
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment