You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2015/11/03 14:11:22 UTC

svn commit: r1712288 - /sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext

Author: kwin
Date: Tue Nov  3 13:11:22 2015
New Revision: 1712288

URL: http://svn.apache.org/viewvc?rev=1712288&view=rev
Log:
try to fix indentation of list

Modified:
    sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext

Modified: sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext?rev=1712288&r1=1712287&r2=1712288&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext (original)
+++ sling/site/trunk/content/documentation/the-sling-engine/authentication/authentication-framework.mdtext Tue Nov  3 13:11:22 2015
@@ -79,11 +79,10 @@ The values set on the *Authentication Re
 **Examples**
 
 * The `LoginServlet` contained in the Sling Auth Core bundle registers itself with the service registration property `sling.auth.requirements = "-/system/sling/login"` to ensure the servlet can be accessed without requiring authentication. The following request urls would work then without authentication:
-
-  1. /system/sling/login
-  1. /system/sling/login.html
-  1. /system/sling/login/somesuffix
-  1. /system/sling/login-test (if this is not desired, you have to use a restriction like this: `sling.auth.requirements = "-/system/sling/login"`)
+    * /system/sling/login
+    * /system/sling/login.html
+    * /system/sling/login/somesuffix
+    * /system/sling/login-test (if this is not desired, you have to use a restriction like this: `sling.auth.requirements = "-/system/sling/login"`)
 
 * An authentication handler may register itself with the service registration property `sling.auth.requirements = "-/apps/sample/loginform"` to ensure the login form can be rendered without requiring authentication.