This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.jcr.davex-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-davex.git
commit 102660760860f1d0bbea88d93812c8a5023ef514 Author: Felix Meschberger <[email protected]> AuthorDate: Wed Nov 9 10:16:35 2011 +0000 SLING-2275 Reverting the property name consolidation. This breaks configuration compatibility with release 1.0 ! git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/davex@1199684 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java | 2 +- src/main/resources/OSGI-INF/metatype/metatype.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java index 8c19559..83d3af6 100644 --- a/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java +++ b/src/main/java/org/apache/sling/jcr/davex/impl/servlets/SlingDavExServlet.java @@ -68,7 +68,7 @@ public class SlingDavExServlet extends JcrRemotingServlet { * registration. Default for the property is {@link #DEFAULT_DAV_ROOT}. */ @Property(value=DEFAULT_DAV_ROOT) - private static final String PROP_DAV_ROOT = "dav.root"; + private static final String PROP_DAV_ROOT = "alias"; /** * The name of the service property of the registered dummy service to cause diff --git a/src/main/resources/OSGI-INF/metatype/metatype.properties b/src/main/resources/OSGI-INF/metatype/metatype.properties index 51f0e8e..1eee1cd 100644 --- a/src/main/resources/OSGI-INF/metatype/metatype.properties +++ b/src/main/resources/OSGI-INF/metatype/metatype.properties @@ -33,6 +33,6 @@ dav.description = The DavEx Servlet allows direct access to the \ requests to this servlet do not pass by the Sling Main Servlet and request \ processing. -dav.root.name = Root Path -dav.root.description = The root path at which the DavEx Servlet is \ +alias.name = Root Path +alias.description = The root path at which the DavEx Servlet is \ accessible. The default value is "/server". -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
