Changes for page Material Collection
Last modified by Judith Steinfeld on 2025/06/03 11:13
From version 61.1
edited by Judith Steinfeld
on 2024/11/14 16:31
on 2024/11/14 16:31
Change comment:
There is no comment for this version
To version 74.1
edited by Benjamin Fischer
on 2024/11/19 14:53
on 2024/11/19 14:53
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. JudithSteinfeld1 +XWiki.fischer - Content
-
... ... @@ -1,19 +1,15 @@ 1 - {{boxcssClass="floatinginfobox"title="== FurtherMaterialCollections ==1 +== Learning and Teaching Materials for ErUM-Data-Scientists == 2 2 3 - "}} 4 - **{{icon name="envelope"/}}[[Mailinglist>>https://lists.rwth-aachen.de/postorius/lists/erum-data-big-data-analytics.lists.rwth-aachen.de]]**3 +{{box cssClass="floatinginfobox" title="==== **Further Materials** ===="}} 4 +{{displayIcon name="world"/}}[[ Elixir TeSS Training Material>>https://tess.elixir-europe.org/]] 5 5 6 - **{{icon name="calendar"}}{{/icon}}[[Events>>https://indico.desy.de/category/1039/]]**6 +{{displayIcon name="world"/}} [[PaN TRaining Catalogue>>https://pan-training.eu/]] 7 7 8 - **Representative: **Dr. Jan Steinheimer8 +{{displayIcon name="world"/}} [[FAIRmat Tutorials>>https://www.fairmat-nfdi.eu/events/fairmat-tutorial-2/tutorial-2-materials]] 9 9 10 -**Deputy: **Prof. Dr. Thomas Kuhr 11 - 12 -{{displayIcon name="world"/}} 10 +{{displayIcon name="world"/}} [[LHC Masterclasses (Netzwerk Teilchenwelt)>>https://www.teilchenwelt.de/angebote/neue-links-zu-materialien/]] 13 13 {{/box}} 14 14 15 -== **Learning and Teaching Materials for ErUM-Data-Scientists** == 16 - 17 17 {{info width="70%"}} 18 18 Are you an ErUM-Data-Scientist who wants to expand your digital skills or do you want to support (young/prospective) ErUM-Scientists in pursuing digital transformation? 19 19 ... ... @@ -23,6 +23,8 @@ 23 23 24 24 25 25 If you want to be subscribed or unsubscribed from this list please contact [[judith.steinfeld@erumdatahub.de>>mailto:judith.steinfeld@erumdatahub.de]] 22 + 23 + 26 26 {{/info}} 27 27 28 28 {{success width="70%"}}
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -48,7 +48,12 @@ 48 48 const ol = new DOMParser().parseFromString(row.doc_location, "text/xml").documentElement; 49 49 const li = ol.children; 50 50 51 - li[0].remove(); // remove "Event" 51 + switch (li[0].textContent) { 52 + case "MoccaCalendar": 53 + li[1].remove(); // the sub calendar 54 + case "Material collection": 55 + li[0].remove(); // the "app" 56 + } 52 52 for (let i = 1; i < li.length - 1; i++) // intermediate 53 53 li[i].textContent = li[i].textContent; // remove link 54 54