This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/master by this push:
new b5d49bf fix typo
b5d49bf is described below
commit b5d49bfa44975b965e827f829a4a6d123ffdd651
Author: Konrad Windszus <[email protected]>
AuthorDate: Thu Aug 6 12:34:27 2020 +0200
fix typo
---
.../jbake/content/documentation/the-sling-engine/url-decomposition.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/jbake/content/documentation/the-sling-engine/url-decomposition.md
b/src/main/jbake/content/documentation/the-sling-engine/url-decomposition.md
index 96f39d4..a1bbcfa 100644
--- a/src/main/jbake/content/documentation/the-sling-engine/url-decomposition.md
+++ b/src/main/jbake/content/documentation/the-sling-engine/url-decomposition.md
@@ -10,7 +10,7 @@ tags=core,urls
During the *Resource Resolution* step, the client request URI (as being
returned by
[HttpServletRequest.getRequestURI()](http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getRequestURI()))
is decomposed into the following parts (in exactly this order):
1. **Resource Path** - For existing resources the resource path is the longest
match (also considering its
[mappings](/documentation/the-sling-engine/mappings-for-resource-resolution.html))
pointing to a resource where the next character is either a dot (`.`) or it is
the full request URI.
-Otherwise (for a path not matching any existing resource) the resource path
ends at the *first dot (`.`)* in the request url. The exact logic for
retrieving the resource path is implemented at
[ResourceResolver.resolve(HttpServletRequest)](https://sling.apache.org/apidocs/sling11/org/apache/sling/api/resource/ResourceResolver.html#resolve-javax.servlet.http.HttpServletRequest-java.lang.String-)
called from `org.apache.sling.engine.impl.request.RequestData.initResource()`
with the 2nd ar [...]
+Otherwise (for a path not matching any existing resource) the resource path
ends at the *first dot (`.`)* in the request url. The exact logic for
retrieving the resource path is implemented at
[ResourceResolver.resolve(HttpServletRequest,
String)](https://sling.apache.org/apidocs/sling11/org/apache/sling/api/resource/ResourceResolver.html#resolve-javax.servlet.http.HttpServletRequest-java.lang.String-)
called from `org.apache.sling.engine.impl.request.RequestData.initResource()`
with th [...]
1. **Selectors** - If the first character in the request URL after the
resource path is a dot (`.`), the string after the dot up to but not including
the last dot before the next slash character or the end of the request URL
comprises the selectors. If the resource path spans the complete request URL no
selectors exist. If only one dot follows the resource path before the end of
the request URL or the next slash, also no selectors exist.
1. **Extension** - The string after the last dot after the resource path in
the request URL but before the end of the request URL or the next slash after
the resource path in the request URL is the extension.
1. **Suffix** - If the request URL contains a slash character after the
resource path and optional selectors and extension, the path starting with the
slash up to the end of the request URL is the suffix path. Otherwise, the
suffix path is empty. Note, that after the resource path at least a dot must be
in the URL to let Sling detect the suffix.