Changes for page XWiki Authentication and Access Control
Last modified by Agnease on 2026/05/25 12:52
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -183,6 +183,24 @@ 183 183 </section> 184 184 185 185 ## SPECIFIC AREAS 186 + #set ($accessAreasItems = [{ 187 + 'title': 'Directory configuration', 188 + 'icon': 'server', 189 + 'content': 'LDAP/AD connection settings, bind users, search bases, user filters, group filters and synchronization behavior.' 190 + },{ 191 + 'title': 'Group mapping', 192 + 'icon': 'random', 193 + 'content': 'Mapping external groups into XWiki groups while avoiding unnecessary complexity and performance issues.' 194 + },{ 195 + 'title': 'Permission structure', 196 + 'icon': 'lock', 197 + 'content': 'Space and page rights, inheritance, administrative access, edit rights, view rights and application permissions.' 198 + },{ 199 + 'title': 'Security-sensitive rights', 200 + 'icon': 'user-secret', 201 + 'content': 'Review of powerful rights such as admin, programming, script and edit rights where they affect security.' 202 + }]) 203 + 186 186 <section aria-labelledby="areas-title"> 187 187 <div class="container"> 188 188 <h2 id="areas-title">Specific areas we can review</h2> ... ... @@ -193,45 +193,16 @@ 193 193 </p> 194 194 195 195 <div class="widgets"> 196 - <article class="widget"> 197 - <div class="icon" aria-hidden="true"> 198 - <i class="fa fa-server"></i> 199 - <h4>Directory<br />configuration</h4> 200 - </div> 201 - <p> 202 - LDAP/AD connection settings, bind users, search bases, user filters, group filters and synchronization behavior. 203 - </p> 204 - </article> 214 + #foreach ($entry in $accessAreasItems) 215 + <article class="widget"> 216 + <div class="icon" aria-hidden="true"> 217 + <i class="fa fa-$entry.icon"></i> 218 + <h4>$entry.title</h4> 219 + </div> 205 205 206 - <article class="widget"> 207 - <div class="icon" aria-hidden="true"> 208 - <i class="fa fa-random"></i> 209 - <h4>Group<br />mapping</h4> 210 - </div> 211 - <p> 212 - Mapping external groups into XWiki groups while avoiding unnecessary complexity and performance issues. 213 - </p> 214 - </article> 215 - 216 - <article class="widget"> 217 - <div class="icon" aria-hidden="true"> 218 - <i class="fa fa-lock"></i> 219 - <h4>Permission<br />structure</h4> 220 - </div> 221 - <p> 222 - Space and page rights, inheritance, administrative access, edit rights, view rights and application permissions. 223 - </p> 224 - </article> 225 - 226 - <article class="widget"> 227 - <div class="icon" aria-hidden="true"> 228 - <i class="fa fa-user-secret"></i> 229 - <h4>Security<br />sensitive rights</h4> 230 - </div> 231 - <p> 232 - Review of powerful rights such as admin, programming, script and edit rights where they affect security. 233 - </p> 234 - </article> 221 + <p>$entry.content</p> 222 + </article> 223 + #end 235 235 </div> 236 236 </div> 237 237 </section>