Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. ThomasMortagne1 +XWiki.valdisvi - Content
-
... ... @@ -24,6 +24,10 @@ 24 24 Be careful that if you use the ##HTTP## protocol your password will be sent in clear over the network and is thus very unsafe. When using Basic Authentication you should make sure your wiki is configured to use ##HTTPS##. 25 25 {{/warning}} 26 26 27 += Social login extension = 28 + 29 +See [[http://extensions.xwiki.org/xwiki/bin/view/Extension/Social+Login]] 30 + 27 27 = LDAP Authentication = 28 28 29 29 {{warning}} ... ... @@ -224,13 +224,13 @@ 224 224 225 225 Note, that you also can implement own right management service by implementing {{scm path="xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/user/api/XWikiRightService.java"}}XWikiRightService{{/scm}} interface: 226 226 227 -{{code}} 231 +{{code language="properties"}} 228 228 xwiki.authentication.rightsclass = com.acme.MyCustomRightsService 229 229 {{/code}} 230 230 231 231 and Group Service by implementing {{scm path="xwiki-platform-core/xwiki-platform-oldcore/src/main/java/com/xpn/xwiki/user/api/XWikiGroupService.java"}}XWikiGroupService{{/scm}}: 232 232 233 -{{code}} 237 +{{code language="properties"}} 234 234 xwiki.authentication.groupclass = com.acme.MyCustomGroupService 235 235 {{/code}} 236 236 ... ... @@ -238,13 +238,13 @@ 238 238 239 239 Start by specifying you want to use the Groovy Authenticator: 240 240 241 -{{code}} 245 +{{code language="properties"}} 242 242 xwiki.authentication.authclass = com.xpn.xwiki.user.impl.xwiki.GroovyAuthServiceImpl 243 243 {{/code}} 244 244 245 245 Then add another configuration parameter to specify in which wiki page the authenticator is: 246 246 247 -{{code}} 251 +{{code language="properties"}} 248 248 xwiki.authentication.groovy.pagename = MySpace.MyPage 249 249 {{/code}} 250 250