Changes for page Home
Last modified by Jesse Veentjer on 26-5-2025 10:13
From version 224.1
edited by Jesse Veentjer
on 26-5-2025 10:13
on 26-5-2025 10:13
Change comment:
There is no comment for this version
To version 122.1
edited by Jesse Veentjer
on 31-10-2022 12:31
on 31-10-2022 12:31
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 2 added, 8 removed)
-
Objects (5 modified, 0 added, 1 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,61 +1,106 @@ 1 -(% class=" wblinks" %)1 +(% class="floatinginfobox wbrechts" %) 2 2 ((( 3 -{{velocity}} 4 -#if($isGuest) 5 -#set($loginscherm = 'https://kennis.wardenburg.nl/login/XWiki/XWikiLogin') 6 -=Welcome to our Knowledge Base= 7 -Access to (high-quality) information is a challenge everyone struggles with. With the launch of this digital archive where we can place and share knowledge, the latest developments (news), files, and ideas, we aim to make finding information easier. At its core, the knowledge base enables generating, organizing, and sharing information. 3 +(% class="wbrb" %) 4 +[[image:cheer.gif||data-xwiki-image-style-alignment="center"]] 8 8 9 -{{showhide showmessage="We can use this in many ways, click here to see some examples:" hidemessage="Hide examples" effectduration="1"}} 10 -✅ Access to information, broaden your knowledge to new topics. 11 -* Shared knowledge is easily searchable; you can link to specific parts of pages with a weblink! 12 -* Knowledge from colleagues is shared with each other. It prevents you from reinventing the wheel while a colleague may already have information on a certain topic. 13 -* //Help colleagues and customers by enabling them to help themselves//[[(Note: without logging in, visitors can also see the 'Public' folder)>>path:/Main/Openbaar/]] 6 +(% class="wbtoc" %) 7 +((( 8 + (% class="wbtocheader" %)Inhoud 14 14 15 -✅ Thanks to the news section, the latest developments per 'news topic' can also be placed in the knowledge base. 10 +{{toc/}} 11 +))) 12 +))) 16 16 17 -✅ Share your knowledge by recording it in the knowledge base. 14 +(% class="wblinks" %) 15 +((( 16 += **Welkom op de WB Kennisbank** = 18 18 19 - * Whetherit's aknownrror ina device/softwareversionor a handywaytoconfigureaninstallation,if you've investedtimesolvingaproblem,it'sashame ifa colleaguehastostruggleto reachthesame solution.18 +Hier kunnen we kennis, de laatste ontwikkelingen (nieuws), bestanden en ideeën plaatsen en delen. Klik[[ hier >>doc:.Werkwijze.Applicaties.Kennisbank.WebHome]]voor uitleg hoe een pagina aan te maken en wat de mogelijk is binnen een pagina. 20 20 21 - ✅ Provides transparency and clarityin the area of knowledge.22 - 23 - * Explanationsand manuals for installations, as well asourworkprocesses, can bedocumented and shared via the knowledgebase.24 - *Experiencesand discussions can be placedand discussed per topic.25 - {{/showhide}}26 - 27 - {{html}}28 - <ahref=$loginscherm>29 - <buttonclass="login-btn" onclick="this.classList.add('clicked')"><span>Login</span></button>30 - </a>31 - {{/html}}32 - Byloggingin you gain morefunctions in theknowledge base. Log inusing your firstname.lastname(same as your emailwithout the@wardenburg.nl part).33 -#else 34 -= Search=35 - [[Clickheretoclearthesearch query>>path:/Main||target="_self"]]36 - {{includereference="Main.Search" /}}37 - ----38 - *[[Clickhereforinstructions on how theknowledge base works>>path:/Main/Werkwijze/Kennisbank/]]. //If you get lost, you can always click the logo in the top left to return to this homepage.//39 - *[[Todiscuss, ask questions, or give feedback about the knowledge base, you can join this team channel>>url:https://teams.microsoft.com/l/team/19%3aAxo-k8j1CVRGXTb0t3Dc6tjNDNudeTZjcP_KZVFR5381%40thread.tacv2/conversations?groupId=4da292cd-ff72-4d4c-adc5-8aa3dfc4ae3f&tenantId=42b413cc-67db-4507-a4a6-ce30ce798022||rel="noopener noreferrer" target="_blank"]].20 +{{velocity}} 21 +## Escape special characters in macro parameter values. 22 +#set ($openToDoc = $doc.documentReference.toString().replaceAll('([~"])', '~$1')) 23 +## Apply the configured page exclusions. 24 +#set ($config = $xwiki.getDocument('PanelsCode.NavigationConfiguration')) 25 +#set ($exclusions = $collectiontool.set) 26 +#set ($defaultDocumentName = $services.model.getEntityReference('DOCUMENT', 'default').name) 27 +## Exclude top level extension pages. 28 +#if ($config.getValue('excludeTopLevelExtensionPages') == 1) 29 + #set ($query = $services.query.hql('select space.name from XWikiSpace space where space.parent is null')) 30 + #set ($discard = $query.addFilter('hidden/space')) 31 + #foreach ($result in $query.execute()) 32 + #set ($documentReference = $services.model.createDocumentReference($NULL, $result, $defaultDocumentName)) 33 + #set ($installedExtensions = $services.extension.xar.getInstalledExtensions($documentReference)) 34 + #if ($installedExtensions && $installedExtensions.size() > 0 35 + && !$services.extension.xar.isEditAllowed($documentReference)) 36 + #set ($discard = $exclusions.add("space:$services.model.escape($result, 'SPACE')")) 37 + #end 38 + #end 40 40 #end 41 -#if(!$isGuest) 42 -= News = 43 -{{blogpostlist blog="Nieuws.WebHome" limit="6" layout="cards" layoutParams="displayTitle=true|useSummary=true"/}} 40 +## Exclude top level application pages. 41 +#if ($config.getValue('excludeTopLevelApplicationPages') == 1) 42 + #set ($statement = 'select space.name ' 43 + + 'from XWikiSpace as space, Document as doc, doc.object(AppWithinMinutes.LiveTableClass) as app ' 44 + + 'where space.parent is null and doc.space = space.reference') 45 + #set ($query = $services.query.xwql($statement).addFilter('hidden/space')) 46 + #foreach ($result in $query.execute()) 47 + #set ($discard = $exclusions.add("space:$services.model.escape($result, 'SPACE')")) 48 + #end 44 44 #end 50 +## Inclusions are treated as exceptions to the dynamic exclusion filters. 51 +#if ($config.getValue('excludeTopLevelExtensionPages') == 1 || $config.getValue('excludeTopLevelApplicationPages') == 1) 52 + ## FIXME: This panel is cached and the cache is not invalidated by default when an extension is installed or 53 + ## uninstalled and neither when an application is created, deleted or renamed. Ideally we should invalidate the cache 54 + ## whenever a top level page is created or modified but we can't do this ATM so the next best thing is to invalidate 55 + ## the cache whenever a page (anywhere in the page hierarchy) is modified. 56 + #set ($discard = $services.async.useEntity("wiki:$xcontext.database")) 57 + #foreach ($inclusion in $config.getValue('inclusions')) 58 + #set ($documentReference = $services.model.resolveDocument($inclusion)) 59 + ## Dynamic exclusion filters target only top level pages and thus inclusions, which are treated as exceptions to 60 + ## those filters, should target also top level pages. 61 + #set ($discard = $exclusions.remove("space:$services.model.serialize($documentReference.lastSpaceReference, 62 + 'local')")) 63 + #end 64 +#end 65 +## Other page exclusions. 66 +#foreach ($exclusion in $config.getValue('exclusions')) 67 + #set ($exclusionReference = $services.model.resolveDocument($exclusion)) 68 + #if ($exclusionReference.name == $defaultDocumentName) 69 + #set ($exclusionReference = $exclusionReference.lastSpaceReference) 70 + #end 71 + #set ($discard = $exclusions.add($exclusionReference.type.lowerCase + ':' 72 + + $services.model.serialize($exclusionReference, 'local'))) 73 +#end 74 +#set ($exclusions = $stringtool.join($exclusions, ',')) 75 +{{documentTree showTranslations="false" showAttachments="false" compact="true" openTo="document:$openToDoc" 76 + exclusions="$exclusions" /}} 45 45 {{/velocity}} 46 46 47 47 80 +{{velocity}} 81 +#if($isGuest) 82 +#set($loginscherm = 'https://kennis.wardenburg.nl/login/XWiki/XWikiLogin') 83 +==**Inloggen**== 84 +Door in te loggen krijg je meer functies op de kennisbank.[[Log hier in op de wiki >>$loginscherm ||target="_blank"]] met je voornaam.achternaam (hetzelfde als je e-mail zonder het @wardenburg.nl gedeelte). 85 +#end 86 +#if(!$isGuest) 87 +(% class="nieuws" %) 88 += **Nieuws** = 48 48 49 ----- 90 +(% class="nieuwstabel" %) 91 +((( 92 +{{blogpostlist blog="Nieuws.WebHome" limit="10" layout="cards" layoutParams="displayTitle=true|useSummary=true"/}} 93 +))) 94 +#end 50 50 51 -* [[Click here for instructions on how the knowledge base works>>path:/Main/Werkwijze/Kennisbank/]]. //If you get lost, you can always click the logo in the top left to return to this homepage.// 52 -* [[To discuss, ask questions, or give feedback about the knowledge base, you can join this team channel>>url:https://teams.microsoft.com/l/team/19%3aAxo-k8j1CVRGXTb0t3Dc6tjNDNudeTZjcP_KZVFR5381%40thread.tacv2/conversations?groupId=4da292cd-ff72-4d4c-adc5-8aa3dfc4ae3f&tenantId=42b413cc-67db-4507-a4a6-ce30ce798022||rel="noopener noreferrer" target="_blank"]]. 53 - 54 -= News = 55 - 56 -{{blogpostlist blog="Nieuws.WebHome" limit="6" layout="cards" layoutParams="displayTitle=true|useSummary=true"/}} 57 - 58 - 59 -* [[Click here for instructions on how the knowledge base works>>path:/Main/Werkwijze/Kennisbank/]]. //If you get lost, you can always click the logo in the top left to return to this homepage.// 60 -* [[To discuss, ask questions, or give feedback about the knowledge base, you can join this team channel>>url:https://teams.microsoft.com/l/team/19%3aAxo-k8j1CVRGXTb0t3Dc6tjNDNudeTZjcP_KZVFR5381%40thread.tacv2/conversations?groupId=4da292cd-ff72-4d4c-adc5-8aa3dfc4ae3f&tenantId=42b413cc-67db-4507-a4a6-ce30ce798022||rel="noopener noreferrer" target="_blank"]]. 96 +{{/velocity}} 61 61 ))) 98 + 99 +{{velocity}} 100 +#if (!$hasEdit) 101 + ## Verstop tabs 102 + #set($displayDocExtra = false) 103 + ## En de balken onderin 104 + #set ($displayShortcuts = false) 105 +#end 106 +{{/velocity}}
- BMI-handboek.gif
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -802.6 KB - Content
- Preloader_blauw.gif
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -3.3 MB - Content
- Preloader_oranje.gif
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -2.0 MB - Content
- aanhetwerk.gif
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -4.0 MB - Content
- favicon.ico
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -14.7 KB - Content
- inbraak-handboek.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -20.4 KB - Content
- inbraak.gif
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -1.1 MB - Content
- vca-handboek.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jesse - Size
-
... ... @@ -1,1 +1,0 @@ 1 -18.5 KB - Content
- cheer.gif
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Jesse - Size
-
... ... @@ -1,0 +1,1 @@ 1 +3.0 KB - Content
- logo.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Jesse - Size
-
... ... @@ -1,0 +1,1 @@ 1 +423.5 KB - Content
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -3,106 +3,3 @@ 3 3 height: 169px; 4 4 width: 100%; 5 5 } 6 - 7 - /* Styling for the button */ 8 - .login-btn { 9 - display: inline-block; 10 - padding: 24px 48px; /* Increased padding for a slightly bigger button */ 11 - background-color: #D9D9D9; /* Grijs (formulier - header) */ 12 - color: #000; /* Text color */ 13 - border: none; 14 - border-radius: 5px; 15 - font-size: 27px; /* Increased font size for a slightly larger button */ 16 - cursor: pointer; 17 - position: relative; 18 - overflow: hidden; 19 - transition: all 0.3s ease; 20 - } 21 - 22 - /* Styling for the button hover effect */ 23 - .login-btn:hover { 24 - background-color: #F2F2F2; /* Lighter shade of grey on hover */ 25 - } 26 - 27 - /* Styling for the button before animation */ 28 - .login-btn:before { 29 - content: ""; 30 - position: absolute; 31 - top: 50%; 32 - left: 50%; 33 - width: 300%; 34 - height: 300%; 35 - background-color: #878787; 36 - transition: all 0.3s ease; 37 - border-radius: 50%; 38 - z-index: 0; 39 - transform: translate(-50%, -50%); 40 - } 41 - 42 - /* Animation when button is clicked */ 43 - .login-btn.clicked:before { 44 - width: 50%%; 45 - height: 50%; 46 - opacity: 0; 47 - } 48 - 49 - /* Styling for the button text */ 50 - .login-btn span { 51 - position: relative; 52 - z-index: 1; 53 - } 54 - 55 -/* Styling for the smaller button */ 56 -.small-login-btn { 57 - display: inline-block; 58 - padding: 12px 24px; /* Reduced padding for a smaller button */ 59 - background-color: #D9D9D9; /* Grijs (formulier - header) */ 60 - color: #000; /* Text color */ 61 - border: none; 62 - border-radius: 5px; 63 - font-size: 18px; /* Reduced font size for a smaller button */ 64 - cursor: pointer; 65 - position: relative; 66 - overflow: hidden; 67 - transition: all 0.3s ease; 68 -} 69 - 70 -/* Styling for the smaller button hover effect */ 71 -.small-login-btn:hover { 72 - background-color: #F2F2F2; /* Lighter shade of grey on hover */ 73 -} 74 - 75 -/* Styling for the smaller button before animation */ 76 -.small-login-btn:before { 77 - content: ""; 78 - position: absolute; 79 - top: 50%; 80 - left: 50%; 81 - width: 300%; 82 - height: 300%; 83 - background-color: #878787; 84 - transition: all 0.3s ease; 85 - border-radius: 50%; 86 - z-index: 0; 87 - transform: translate(-50%, -50%); 88 -} 89 - 90 -/* Animation when smaller button is clicked */ 91 -.small-login-btn.clicked:before { 92 - width: 50%%; 93 - height: 50%; 94 - opacity: 0; 95 -} 96 - 97 -/* Styling for the smaller button text */ 98 -.small-login-btn span { 99 - position: relative; 100 - z-index: 1; 101 -} 102 - 103 -/* gehele container 104 -#xwikimaincontainer { 105 - width: 970px; 106 -} 107 -*/ 108 -
- XWiki.XWikiRights[0]
-
- levels
-
... ... @@ -1,1 +1,1 @@ 1 -view ,script1 +view
- XWiki.XWikiRights[1]
-
- levels
-
... ... @@ -1,1 +1,1 @@ 1 -view ,script1 +view
- XWiki.XWikiRights[2]
-
- levels
-
... ... @@ -1,1 +1,1 @@ 1 -view ,script1 +view
- XWiki.XWikiRights[5]
-
- levels
-
... ... @@ -1,1 +1,1 @@ 1 -view ,comment,edit,script,delete1 +view
- XWiki.XWikiRights[9]
-
- allow
-
... ... @@ -1,1 +1,0 @@ 1 -Allow - groups
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Axians - levels
-
... ... @@ -1,1 +1,0 @@ 1 -view,script