Last modified by Agnease on 2026/05/25 12:52

From version 8.4
edited by Agnease
on 2026/05/25 12:45
Change comment: There is no comment for this version
To version 8.3
edited by Agnease
on 2026/05/22 14:12
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,6 +1,7 @@
1 1  {{velocity}}
2 2  #set ($discard = $xwiki.ssx.use('PublicWebSite.WebHome'))
3 3  {{html clean="false"}}
4 +
4 4   ## PAGE HEADER
5 5   <section class="hero hero-centered service-hero" aria-labelledby="hero-title">
6 6   <div class="container hero-inner">
... ... @@ -22,61 +22,63 @@
22 22   </div>
23 23   </div>
24 24   </section>
25 - ## WHY ACCESS CONTROL CARDS
26 - #set ($accessControlItems = [{
27 - 'title': 'Connect users securely',
28 - 'icon': 'sign-in',
29 - 'content': 'Integrate XWiki with your identity provider so users can access the platform with familiar credentials.',
30 - 'items': [
31 - 'LDAP and Active Directory',
32 - 'OIDC, SAML and SSO',
33 - 'MFA and authentication extensions'
34 - ]
35 - },{
36 - 'title': 'Manage groups clearly',
37 - 'icon': 'users',
38 - 'content': 'Keep user and group synchronization understandable, scalable and aligned with the way permissions are used.',
39 - 'items': [
40 - 'User synchronization',
41 - 'Group mapping and filtering',
42 - 'Large directory considerations'
43 - ]
44 - },{
45 - 'title': 'Control access safely',
46 - 'icon': 'key',
47 - 'content': 'Review and structure rights so spaces, pages and applications can be maintained without accidental exposure.',
48 - 'items': [
49 - 'Wiki and page permissions',
50 - 'Admin and script rights awareness',
51 - 'Rights model cleanup'
52 - ]
53 - }])
54 54  
27 + ## WHY ACCESS CONTROL MATTERS
55 55   <section aria-labelledby="why-access-title">
56 56   <div class="container">
57 57   <h2 id="why-access-title">Access control is central to a reliable XWiki platform</h2>
31 +
58 58   <p class="section-intro">
59 59   XWiki often contains internal knowledge, procedures, project information, customer data, controlled documents
60 60   and business workflows. Authentication and permissions need to be configured carefully so users can access
61 61   what they need without exposing sensitive information or making administration too complex.
62 62   </p>
37 +
63 63   <div class="pathways">
64 - #foreach ($entry in $accessControlItems)
65 - <article class="pathway-card">
66 - <div class="card-heading">
67 - <div class="pathway-icon">
68 - <i class="fa fa-$entry.icon" aria-hidden="true"></i>
69 - </div>
70 - <h3>$entry.title</h3>
71 - </div>
72 - <p>$entry.content</p>
73 - <ul>
74 - #foreach ($item in $entry.items)
75 - <li>$item</li>
76 - #end
77 - </ul>
78 - </article>
79 - #end
39 + <article class="pathway-card">
40 + <div class="pathway-icon">
41 + <i class="fa fa-sign-in" aria-hidden="true"></i>
42 + </div>
43 + <h3>Connect users securely</h3>
44 + <p>
45 + Integrate XWiki with your identity provider so users can access the platform with familiar credentials.
46 + </p>
47 + <ul>
48 + <li>LDAP and Active Directory</li>
49 + <li>OIDC, SAML and SSO</li>
50 + <li>MFA and authentication extensions</li>
51 + </ul>
52 + </article>
53 +
54 + <article class="pathway-card">
55 + <div class="pathway-icon">
56 + <i class="fa fa-users" aria-hidden="true"></i>
57 + </div>
58 + <h3>Manage groups clearly</h3>
59 + <p>
60 + Keep user and group synchronization understandable, scalable and aligned with the way permissions are used.
61 + </p>
62 + <ul>
63 + <li>User synchronization</li>
64 + <li>Group mapping and filtering</li>
65 + <li>Large directory considerations</li>
66 + </ul>
67 + </article>
68 +
69 + <article class="pathway-card">
70 + <div class="pathway-icon">
71 + <i class="fa fa-key" aria-hidden="true"></i>
72 + </div>
73 + <h3>Control access safely</h3>
74 + <p>
75 + Review and structure rights so spaces, pages and applications can be maintained without accidental exposure.
76 + </p>
77 + <ul>
78 + <li>Wiki and page permissions</li>
79 + <li>Admin and script rights awareness</li>
80 + <li>Rights model cleanup</li>
81 + </ul>
82 + </article>
80 80   </div>
81 81   </div>
82 82   </section>