You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by en...@apache.org on 2022/02/04 21:46:40 UTC

[sling-site] branch master updated (09ed7f5 -> 516b893)

This is an automated email from the ASF dual-hosted git repository.

enorman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git.


    from 09ed7f5  SLING-11034 document the confuration option
     new 3ec9a44  SLING-11034 document the configuration option
     new d8d92b6  Merge branch 'master' of https://gitbox.apache.org/repos/asf/sling-site
     new 516b893  SLING-9810 document the provider.root configuration option

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../managing-users-and-groups-jackrabbit-usermanager.md | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

[sling-site] 01/03: SLING-11034 document the configuration option

Posted by en...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git

commit 3ec9a44dcdec4e051e09e36d96027358a39e7947
Author: Eric Norman <en...@apache.org>
AuthorDate: Fri Feb 4 13:30:35 2022 -0800

    SLING-11034 document the configuration option
    
    To expose nested authorizable properties as child resources
---
 .../managing-users-and-groups-jackrabbit-usermanager.md      | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md b/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
index e5eb715..9ae472f 100644
--- a/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
+++ b/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
@@ -405,3 +405,15 @@ Additionally, the following service interfaces may be implemented by a custom OS
 2. **org.apache.sling.jackrabbit.usermanager.PrincipalNameGenerator** - An implementation of this service interface allows to fully customize principal name generation
 
 
+#### Enabling the option to expose nested authorizable property containers as child resources
+
+*Since Version 2.2.18*
+
+By default, the nested authorizable property containers are not exposed as child resources.  This behavior may be enabled via configuration.
+
+For example:
+
+    "org.apache.sling.jackrabbit.usermanager.impl.resource.AuthorizableResourceProvider":{
+        "resources.for.nested.properties":true
+    }
+

[sling-site] 02/03: Merge branch 'master' of https://gitbox.apache.org/repos/asf/sling-site

Posted by en...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git

commit d8d92b631997e07821356b4cc8277f613bdaab85
Merge: 3ec9a44 09ed7f5
Author: Eric Norman <en...@apache.org>
AuthorDate: Fri Feb 4 13:42:08 2022 -0800

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/sling-site


[sling-site] 03/03: SLING-9810 document the provider.root configuration option

Posted by en...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git

commit 516b893c9667869834f75bb8ac607370317cb0d7
Author: Eric Norman <en...@apache.org>
AuthorDate: Fri Feb 4 13:46:32 2022 -0800

    SLING-9810 document the provider.root configuration option
    
    Configuration to change the AuthorizableResourceProvider root path
---
 .../managing-users-and-groups-jackrabbit-usermanager.md | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md b/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
index 9ae472f..347a444 100644
--- a/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
+++ b/src/main/jbake/content/documentation/bundles/managing-users-and-groups-jackrabbit-usermanager.md
@@ -1,4 +1,4 @@
-title=Managing users and groups (jackrabbit.usermanager)		
+title=Managing users and groups (jackrabbit.usermanager)
 type=page
 status=published
 tags=security
@@ -356,6 +356,19 @@ Example:
     %>
 
 
+## Changing the root path for usermanager resources
+
+*Since Version 2.2.12*
+
+By default, the usermanager resources are provided under the /system/userManager path.  This location may be changed via configuration.
+
+For example:
+
+    "org.apache.sling.jackrabbit.usermanager.impl.resource.AuthorizableResourceProvider":{
+        "provider.root":"/people",
+    }
+
+
 ## Generating principal names from a hint
 
 *Since Version 2.2.16*
@@ -405,7 +418,7 @@ Additionally, the following service interfaces may be implemented by a custom OS
 2. **org.apache.sling.jackrabbit.usermanager.PrincipalNameGenerator** - An implementation of this service interface allows to fully customize principal name generation
 
 
-#### Enabling the option to expose nested authorizable property containers as child resources
+## Enabling the option to expose nested authorizable property containers as child resources
 
 *Since Version 2.2.18*