This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/sling-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new e606544ef Automatic website deployment from
https://ci-builds.apache.org/job/Sling/job/modules/job/sling-site/job/master/533/
e606544ef is described below
commit e606544ef06aabb018805810dd0e40199d4971a3
Author: jenkins <[email protected]>
AuthorDate: Mon Aug 22 15:29:52 2022 +0000
Automatic website deployment from
https://ci-builds.apache.org/job/Sling/job/modules/job/sling-site/job/master/533/
---
documentation/development/sling-mock.html | 51 +++----
sitemap.xml | 236 +++++++++++++++---------------
2 files changed, 136 insertions(+), 151 deletions(-)
diff --git a/documentation/development/sling-mock.html
b/documentation/development/sling-mock.html
index 7735fb64d..f7bb6b05c 100644
--- a/documentation/development/sling-mock.html
+++ b/documentation/development/sling-mock.html
@@ -259,34 +259,40 @@ public class ExampleTest {
<h3><a href="#resource-resolver-types" id="resource-resolver-types">Resource
Resolver Types</a></h3>
<p>The Sling Mocks resource resolver implementation supports different
"types" of adapters for the mocks. Depending on the type an
underlying JCR repository is used or not, and the data is stored in-memory or
in a real repository.</p>
<p>Resource resolver types currently supported:</p>
-<p><strong>RESOURCERESOLVER_MOCK (default)</strong></p>
+<p><strong>RESOURCERESOLVER_MOCK</strong> (default)</p>
<ul>
<li>Simulates an In-Memory resource tree, does not provide adaptions to JCR
API.</li>
-<li>Based on the <a
href="/documentation/development/resourceresolver-mock.html">Sling
resourceresolver-mock implementation</a> implementation</li>
+<li>Based on the <a
href="/documentation/development/resourceresolver-mock.html">Sling
resourceresolver-mock implementation</a> implementation.</li>
<li>You can use it to make sure the code you want to test does not contain
references to JCR API.</li>
<li>Behaves slightly different from JCR resource mapping e.g. handling binary
and date values.</li>
<li>This resource resolver type is very fast because data is stored in memory
and no JCR mapping is applied.</li>
</ul>
+<p><strong>RESOURCEPROVIDER_MOCK</strong></p>
+<ul>
+<li>Same as RESOURCERESOLVER_MOCK, but uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-resourceresolver">Sling
Resource Resolver implementation</a> with a mocked resource provider
implementation</li>
+<li>Allows using multiple resource providers and loading folders for JSON or
FileVault XML content.</li>
+<li>This resource resolver type is still quite fast, but has a bit more
overhead than RESOURCERESOLVER_MOCK.</li>
+</ul>
<p><strong>JCR_MOCK</strong></p>
<ul>
-<li>Based on the <a href="/documentation/development/jcr-mock.html">JCR
Mocks</a> implementation</li>
-<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-jcr-resource">Sling JCR
resource provider implementation</a> internally to do the Resource-JCR
mapping</li>
-<li>Is quite fast because data is stored only in-memory</li>
+<li>Based on the <a href="/documentation/development/jcr-mock.html">JCR
Mocks</a> implementation.</li>
+<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-jcr-resource">Sling JCR
resource provider implementation</a> internally to do the Resource-JCR
mapping.</li>
+<li>Is quite fast because data is stored only in-memory.</li>
</ul>
<p><strong>NONE</strong></p>
<ul>
-<li>Uses the productive Sling resource factory implementation without any
ResourceProvider. You have to register one yourself to do anything useful with
it.</li>
+<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-resourceresolver">Sling
Resource Resolver implementation</a> without any ResourceProvider. You have to
register one yourself to do anything useful with it.</li>
<li>The performance of this resource resolver type depends on the resource
provider registered.</li>
<li>This is useful if you want to test your own resource provides mapped to
root without any JCR.</li>
</ul>
<p><strong>JCR_OAK</strong></p>
<ul>
-<li>Uses a real JCR Jackrabbit Oak implementation based on the
<code>MemoryNodeStore</code></li>
-<li>Full JCR/Sling features supported e.g. observations manager, transactions,
versioning</li>
-<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-jcr-resource">Sling JCR
resource provider implementation</a> internally to do the Resource-JCR
mapping</li>
-<li>Takes some seconds for startup on the first access</li>
+<li>Uses a real JCR Jackrabbit Oak implementation based on the
<code>MemoryNodeStore</code>.</li>
+<li>Full JCR/Sling features supported e.g. observations manager, transactions,
versioning.</li>
+<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-jcr-resource">Sling JCR
resource provider implementation</a> internally to do the Resource-JCR
mapping.</li>
+<li>Takes some seconds for startup on the first access.</li>
<li>Node types defined in OSGi bundle header 'Sling-Nodetypes' found in
MANIFEST.MF files in the classpath are registered automatically.</li>
-<li>Lucene indexing is not included, thus fulltext search queries will return
no result</li>
+<li>Lucene indexing is not included, thus fulltext search queries will return
no result.</li>
</ul>
<p>To use this type you have to declare an additional dependency in your test
project:</p>
<pre><code><!-- TODO syntax marker (#!xml) disabled --><dependency>
@@ -296,27 +302,6 @@ public class ExampleTest {
</dependency>
</code></pre>
<p>See latest version on the <a href="/downloads.cgi">downloads page</a>.</p>
-<p><strong>JCR_JACKRABBIT</strong></p>
-<ul>
-<li>Uses a real JCR Jackrabbit implementation (not Oak) as provided by <a
href="https://github.com/apache/sling-org-apache-sling-commons-testing">sling/commons/testing</a></li>
-<li>Full JCR/Sling features supported e.g. observations manager, transactions,
versioning</li>
-<li>Uses the productive <a
href="https://github.com/apache/sling-org-apache-sling-jcr-resource">Sling JCR
resource provider implementation</a> internally to do the Resource-JCR
mapping</li>
-<li>Takes some seconds for startup on the first access</li>
-<li>Node types defined in OSGi bundle header 'Sling-Nodetypes' found in
MANIFEST.MF files in the classpath are registered automatically.</li>
-</ul>
-<p>To use this type you have to declare an additional dependency in your test
project:</p>
-<pre><code><!-- TODO syntax marker (#!xml) disabled --><dependency>
- <groupId>org.apache.sling</groupId>
-
<artifactId>org.apache.sling.testing.sling-mock-jackrabbit</artifactId>
- <scope>test</scope>
-</dependency>
-</code></pre>
-<p>See latest version on the <a href="/downloads.cgi">downloads page</a>.</p>
-<p><em>Remarks on the JCR_JACKRABBIT type:</em></p>
-<ul>
-<li>The repository is not cleared for each unit test, so make sure to use a
unique node path for each unit test. You may use the <code>uniquePath()</code>
helper object of the SlingContext rule for this.</li>
-<li>The <a
href="https://github.com/apache/sling-org-apache-sling-commons-testing">sling/commons/testing</a>
dependency introduces a lot of further dependencies from jackrabbit and
others, be careful that they do not conflict and are imported in the right
order in your test project</li>
-</ul>
<h3><a href="#sling-resource-resolver" id="sling-resource-resolver">Sling
Resource Resolver</a></h3>
<p>Example:</p>
<pre><code><!-- TODO syntax marker (#!java) disabled -->// get a resource
resolver
@@ -519,7 +504,7 @@ assertArrayEquals(TEST_DATA, response.getOutput());
content/documentation/development/sling-mock.md
</a>
</div> <div class="revisionInfo">
- Last modified by <span class="author">Konrad
Windszus</span> on <span class="comment">2021-11-17</span>
+ Last modified by <span class="author">Stefan
Seifert</span> on <span class="comment">2022-08-22</span>
</div><p>
Apache Sling, Sling, Apache, the Apache feather logo,
and the Apache Sling project
logo are trademarks of The Apache Software Foundation. All other marks
mentioned
diff --git a/sitemap.xml b/sitemap.xml
index 825df8c12..d33c0fe81 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1,11 +1,13 @@
<?xml version="1.0"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
-
<loc>https://sling.apache.org/documentation/bundles/models.html</loc><lastmod>2022-08-18</lastmod>
+
<loc>https://sling.apache.org/documentation/development/sling-mock.html</loc><lastmod>2022-08-22</lastmod>
</url><url>
<loc>https://sling.apache.org/releases.html</loc><lastmod>2022-08-22</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/scripting/scripting-htl.html</loc><lastmod>2022-08-18</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/bundles/models.html</loc><lastmod>2022-08-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/release-management.html</loc><lastmod>2022-08-15</lastmod>
</url><url>
@@ -16,6 +18,8 @@
<loc>https://sling.apache.org/documentation/bundles/sling-pipes/writers.html</loc><lastmod>2022-07-22</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/resources.html</loc><lastmod>2022-07-18</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/bundles/repository-initialization.html</loc><lastmod>2022-07-11</lastmod>
</url><url>
<loc>https://sling.apache.org/contributing.html</loc><lastmod>2022-07-01</lastmod>
</url><url>
@@ -58,8 +62,6 @@
<loc>https://sling.apache.org/documentation/bundles/resource-access-security.html</loc><lastmod>2021-11-04</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/request-analysis.html</loc><lastmod>2017-11-22</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/bundles/repository-initialization.html</loc><lastmod>2022-07-11</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/rendering-content-default-get-servlets.html</loc><lastmod>2022-01-13</lastmod>
</url><url>
@@ -138,240 +140,238 @@
<loc>https://sling.apache.org/documentation/apidocs.html</loc><lastmod>2022-03-21</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/sling-query/examples.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query/operators.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/sling-settings-org-apache-sling-settings.html</loc><lastmod>2020-09-18</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/bundles/xml-support.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/content-packages.html</loc><lastmod>2022-03-08</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/feature-model.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/ide-tooling/ide-tooling-incremental-build.html</loc><lastmod>2018-12-17</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/jspc.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/maven-launchpad-plugin.html</loc><lastmod>2018-07-13</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/null-analysis.html</loc><lastmod>2018-08-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/resourceresolver-mock.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/slingstart.html</loc><lastmod>2022-03-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/feature-model/feature-model-howto.html</loc><lastmod>2020-06-18</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/feature-model/howtos/sling-with-custom-project.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/legacy/logging.html</loc><lastmod>2018-07-13</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-actors.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-framework.html</loc><lastmod>2021-04-21</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/dispatching-requests.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/mappings-for-resource-resolution.html</loc><lastmod>2022-02-07</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/service-authentication.html</loc><lastmod>2022-05-25</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/the-sling-launchpad.html</loc><lastmod>2022-03-21</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/tutorials-how-tos/46-line-blog.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/tutorials-how-tos/jackrabbit-persistence.html</loc><lastmod>2018-07-17</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/errors/403.html</loc><lastmod>2017-10-07</lastmod>
</url><url>
<loc>https://sling.apache.org/links.html</loc><lastmod>2019-07-26</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/news/sling-12-released.html</loc><lastmod>2022-03-18</lastmod>
</url><url>
<loc>https://sling.apache.org/news/sling-launchpad-9-released.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/old-stuff/request-processing.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
<loc>https://sling.apache.org/old-stuff/scriptengineintegration.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/project-information/apache-sling-community-roles-and-processes.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/project-information.html</loc><lastmod>2021-07-07</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/sling-query/hierarchy-operators.html</loc><lastmod>2018-01-04</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query/selectors.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/bundles/subsystem-installer-factory.html</loc><lastmod>2020-03-30</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/bundles.html</loc><lastmod>2021-07-13</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/dependency-management.html</loc><lastmod>2018-07-13</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/getting-and-building-sling.html</loc><lastmod>2018-02-03</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/ide-tooling.html</loc><lastmod>2019-09-12</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/development/jsr-305.html</loc><lastmod>2018-08-18</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/development/maven-usage.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/osgi-mock.html</loc><lastmod>2019-03-17</lastmod>
+
<loc>https://sling.apache.org/documentation/feature-model/howtos/create-sling-composite.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/sling-mock.html</loc><lastmod>2021-11-17</lastmod>
+
<loc>https://sling.apache.org/documentation/pax-exam-utils.html</loc><lastmod>2017-12-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/testing-paxexam.html</loc><lastmod>2021-06-16</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-tasks.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/feature-model/howtos/create-sling-composite.html</loc><lastmod>2020-06-18</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/request-listeners.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/getting-started/discover-sling-in-15-minutes.html</loc><lastmod>2019-07-09</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/url-decomposition.html</loc><lastmod>2021-05-19</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/pax-exam-utils.html</loc><lastmod>2017-12-29</lastmod>
+
<loc>https://sling.apache.org/documentation/tutorials-how-tos/testing-sling-based-applications.html</loc><lastmod>2017-12-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler/form-based-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/media.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-tasks.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/news.html</loc><lastmod>2022-03-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/errorhandling.html</loc><lastmod>2017-11-22</lastmod>
+
<loc>https://sling.apache.org/old-stuff/servlet-resolution.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/request-listeners.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query/methods.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/servlets.html</loc><lastmod>2022-05-11</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/validation.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/url-decomposition.html</loc><lastmod>2021-05-19</lastmod>
+
<loc>https://sling.apache.org/documentation/development/deprecating-sling-modules.html</loc><lastmod>2020-03-31</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/tutorials-how-tos/getting-resources-and-properties-in-sling.html</loc><lastmod>2018-01-05</lastmod>
+
<loc>https://sling.apache.org/documentation/development/issue-tracker.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/tutorials-how-tos/testing-sling-based-applications.html</loc><lastmod>2017-12-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/maventipsandtricks.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/errors/404.html</loc><lastmod>2018-12-19</lastmod>
+
<loc>https://sling.apache.org/documentation/development/sling-testing-tools.html</loc><lastmod>2017-12-09</lastmod>
</url><url>
-
<loc>https://sling.apache.org/media.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/feature-model/howtos/create-sling-fm.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/news/sling-ide-tooling-11-released.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication.html</loc><lastmod>2018-05-14</lastmod>
</url><url>
-
<loc>https://sling.apache.org/news.html</loc><lastmod>2022-03-18</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/request-parameters.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/old-stuff/run-modes-org-apache-sling-runmode.html</loc><lastmod>2018-07-17</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/wrap-or-decorate-resources.html</loc><lastmod>2021-05-19</lastmod>
</url><url>
-
<loc>https://sling.apache.org/old-stuff/servlet-resolution.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/tutorials-how-tos.html</loc><lastmod>2020-08-06</lastmod>
</url><url>
-
<loc>https://sling.apache.org/project-information/project-license.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/news/sling-10-released.html</loc><lastmod>2018-02-06</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query/methods.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/old-stuff/assembly.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query/vs-jcr.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/old-stuff/sling-api.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/validation.html</loc><lastmod>2017-11-22</lastmod>
+
<loc>https://sling.apache.org/security/log4shell.html</loc><lastmod>2021-12-17</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/configuration.html</loc><lastmod>2019-07-26</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query/modifiers.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/deprecating-sling-modules.html</loc><lastmod>2020-03-31</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/web-console-extensions.html</loc><lastmod>2022-05-31</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/hamcrest.html</loc><lastmod>2021-11-23</lastmod>
+
<loc>https://sling.apache.org/documentation/development/embedding-sling.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/issue-tracker.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/development/jcr-mock.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/logging.html</loc><lastmod>2022-06-13</lastmod>
+
<loc>https://sling.apache.org/documentation/development/monitoring-requests.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/maventipsandtricks.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/sling.html</loc><lastmod>2019-01-14</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/sling-testing-tools.html</loc><lastmod>2017-12-09</lastmod>
+
<loc>https://sling.apache.org/documentation/feature-model/howtos/kickstart.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/version-policy.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/architecture.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/feature-model/howtos/create-sling-fm.html</loc><lastmod>2020-06-18</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/default-mapping-and-rendering.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/getting-started.html</loc><lastmod>2022-03-21</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler/openid-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation.html</loc><lastmod>2022-03-17</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication.html</loc><lastmod>2018-05-14</lastmod>
+
<loc>https://sling.apache.org/news/sling-11-released.html</loc><lastmod>2018-10-23</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/featureflags.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/old-stuff/launch-sling.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/request-parameters.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/old-stuff.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/sling-api-crud-support.html</loc><lastmod>2021-11-23</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query/operators.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/wrap-or-decorate-resources.html</loc><lastmod>2021-05-19</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/xml-support.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/tutorials-how-tos/how-to-manage-events-in-sling.html</loc><lastmod>2018-07-17</lastmod>
+
<loc>https://sling.apache.org/documentation/development/feature-model.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/tutorials-how-tos.html</loc><lastmod>2020-08-06</lastmod>
+
<loc>https://sling.apache.org/documentation/development/jspc.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/guides.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/null-analysis.html</loc><lastmod>2018-08-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/news/sling-10-released.html</loc><lastmod>2018-02-06</lastmod>
+
<loc>https://sling.apache.org/documentation/development/slingstart.html</loc><lastmod>2022-03-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/news/sling-ide-tooling-12-released.html</loc><lastmod>2018-01-21</lastmod>
+
<loc>https://sling.apache.org/documentation/feature-model/howtos/sling-with-custom-project.html</loc><lastmod>2020-06-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/old-stuff/assembly.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-actors.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/old-stuff/scriptengineintegration/groovy-support.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/dispatching-requests.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/old-stuff/sling-api.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/service-authentication.html</loc><lastmod>2022-05-25</lastmod>
</url><url>
-
<loc>https://sling.apache.org/project-information/project-team.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/tutorials-how-tos/46-line-blog.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/security/log4shell.html</loc><lastmod>2021-12-17</lastmod>
+
<loc>https://sling.apache.org/errors/403.html</loc><lastmod>2017-10-07</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query/modifiers.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/news/sling-12-released.html</loc><lastmod>2022-03-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/sling-query.html</loc><lastmod>2020-06-16</lastmod>
+
<loc>https://sling.apache.org/old-stuff/request-processing.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/bundles/web-console-extensions.html</loc><lastmod>2022-05-31</lastmod>
+
<loc>https://sling.apache.org/project-information/apache-sling-community-roles-and-processes.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/client-request-logging.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query/selectors.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/embedding-sling.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/documentation/bundles.html</loc><lastmod>2021-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/htl-maven-plugin.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/getting-and-building-sling.html</loc><lastmod>2018-02-03</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/jcr-mock.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/jsr-305.html</loc><lastmod>2018-08-18</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/maven-archetypes.html</loc><lastmod>2018-03-31</lastmod>
+
<loc>https://sling.apache.org/documentation/development/osgi-mock.html</loc><lastmod>2019-03-17</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/monitoring-requests.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/documentation/development/testing-paxexam.html</loc><lastmod>2021-06-16</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/repository-based-development.html</loc><lastmod>2017-10-07</lastmod>
+
<loc>https://sling.apache.org/documentation/getting-started/discover-sling-in-15-minutes.html</loc><lastmod>2019-07-09</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development/sling.html</loc><lastmod>2019-01-14</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler/form-based-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/development.html</loc><lastmod>2022-05-11</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/errorhandling.html</loc><lastmod>2017-11-22</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/feature-model/howtos/kickstart.html</loc><lastmod>2020-06-18</lastmod>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/servlets.html</loc><lastmod>2022-05-11</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/karaf.html</loc><lastmod>2022-03-06</lastmod>
+
<loc>https://sling.apache.org/documentation/tutorials-how-tos/getting-resources-and-properties-in-sling.html</loc><lastmod>2018-01-05</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/architecture.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/errors/404.html</loc><lastmod>2018-12-19</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
+
<loc>https://sling.apache.org/news/sling-ide-tooling-11-released.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine/default-mapping-and-rendering.html</loc><lastmod>2017-09-29</lastmod>
+
<loc>https://sling.apache.org/old-stuff/run-modes-org-apache-sling-runmode.html</loc><lastmod>2018-07-17</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/project-information/project-license.html</loc><lastmod>2017-09-29</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query/vs-jcr.html</loc><lastmod>2017-09-29</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/configuration.html</loc><lastmod>2019-07-26</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/hamcrest.html</loc><lastmod>2021-11-23</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/logging.html</loc><lastmod>2022-06-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/version-policy.html</loc><lastmod>2018-07-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/getting-started.html</loc><lastmod>2022-03-21</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler/openid-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/featureflags.html</loc><lastmod>2018-07-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/sling-api-crud-support.html</loc><lastmod>2021-11-23</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/tutorials-how-tos/how-to-manage-events-in-sling.html</loc><lastmod>2018-07-17</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/guides.html</loc><lastmod>2017-09-29</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/news/sling-ide-tooling-12-released.html</loc><lastmod>2018-01-21</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/old-stuff/scriptengineintegration/groovy-support.html</loc><lastmod>2017-09-29</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/project-information/project-team.html</loc><lastmod>2018-07-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/bundles/sling-query.html</loc><lastmod>2020-06-16</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/client-request-logging.html</loc><lastmod>2018-07-13</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/htl-maven-plugin.html</loc><lastmod>2017-09-29</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/maven-archetypes.html</loc><lastmod>2018-03-31</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development/repository-based-development.html</loc><lastmod>2017-10-07</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/development.html</loc><lastmod>2022-05-11</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/karaf.html</loc><lastmod>2022-03-06</lastmod>
+ </url><url>
+
<loc>https://sling.apache.org/documentation/the-sling-engine/authentication/authentication-authenticationhandler.html</loc><lastmod>2018-07-13</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/filters.html</loc><lastmod>2021-03-02</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/the-sling-engine/sling-properties.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation/the-sling-engine.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/documentation/tutorials-how-tos/installing-and-upgrading-bundles.html</loc><lastmod>2018-06-01</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/documentation.html</loc><lastmod>2022-03-17</lastmod>
</url><url>
<loc>https://sling.apache.org/index.html</loc><lastmod>2021-07-30</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/news/sling-11-released.html</loc><lastmod>2018-10-23</lastmod>
</url><url>
<loc>https://sling.apache.org/news/sling-launchpad-8-released.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/old-stuff/launch-sling.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/old-stuff/scriptengineintegration/xslt-processing-pipeline.html</loc><lastmod>2017-09-29</lastmod>
- </url><url>
-
<loc>https://sling.apache.org/old-stuff.html</loc><lastmod>2017-09-29</lastmod>
</url><url>
<loc>https://sling.apache.org/project-information/security.html</loc><lastmod>2017-09-29</lastmod>
</url><url>