You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bu...@apache.org on 2017/09/25 10:38:59 UTC

svn commit: r1018680 - in /websites/staging/sling/trunk/content: ./ documentation/bundles/sling-query.html documentation/bundles/sling-query/vs-jcr.html

Author: buildbot
Date: Mon Sep 25 10:38:59 2017
New Revision: 1018680

Log:
Staging update by buildbot for sling

Modified:
    websites/staging/sling/trunk/content/   (props changed)
    websites/staging/sling/trunk/content/documentation/bundles/sling-query.html
    websites/staging/sling/trunk/content/documentation/bundles/sling-query/vs-jcr.html

Propchange: websites/staging/sling/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Sep 25 10:38:59 2017
@@ -1 +1 @@
-1809599
+1809601

Modified: websites/staging/sling/trunk/content/documentation/bundles/sling-query.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/bundles/sling-query.html (original)
+++ websites/staging/sling/trunk/content/documentation/bundles/sling-query.html Mon Sep 25 10:38:59 2017
@@ -145,8 +145,8 @@ $<span class="p">(</span><span class="n"
 <p>SlingQuery is inspired by the jQuery framework. jQuery is the source of method names, selector string syntax and the dollar sign method used as a collection constructor.</p>
 <h2 id="features">Features<a class="headerlink" href="#features" title="Permanent link">&para;</a></h2>
 <ul>
-<li>useful <a href="https://github.com/Cognifide/Sling-Query/wiki/Method-list">operations</a> to traverse the resource tree,</li>
-<li>flexible <a href="https://github.com/Cognifide/Sling-Query/wiki/Selector-syntax">filtering syntax</a>,</li>
+<li>useful <a href="/documentation/bundles/sling-query/methods.html">operations</a> to traverse the resource tree,</li>
+<li>flexible <a href="/documentation/bundles/sling-query/selectors.html">filtering syntax</a>,</li>
 <li>lazy evaluation of the query result,</li>
 <li><code>SlingQuery</code> object is immutable (thread-safe),</li>
 <li>fluent, friendly, jQuery-like API.</li>
@@ -164,23 +164,22 @@ $<span class="p">(</span><span class="n"
 <h2 id="documentation">Documentation<a class="headerlink" href="#documentation" title="Permanent link">&para;</a></h2>
 <ul>
 <li><a href="http://cognifide.github.io/Sling-Query/circuit2014/">CIRCUIT 2014 presentation</a></li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Basic-ideas">Basic ideas</a></li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Method-list">Method list</a></li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Selector-syntax">Selector syntax</a><ul>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Operator-list">Operator list</a></li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Modifier-list">Modifier list</a></li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Hierarchy-operator-list">Hierarchy operator list</a></li>
+<li><a href="/documentation/bundles/sling-query/basic-ideas.html">Basic ideas</a></li>
+<li><a href="/documentation/bundles/sling-query/methods.html">Method list</a></li>
+<li><a href="/documentation/bundles/sling-query/selectors.html">Selector syntax</a><ul>
+<li><a href="/documentation/bundles/sling-query/operators.html">Operator list</a></li>
+<li><a href="/documentation/bundles/sling-query/modifiers.html">Modifier list</a></li>
+<li><a href="/documentation/bundles/sling-query/hierarchy-operators.html">Hierarchy operator list</a></li>
 </ul>
 </li>
-<li><a href="https://github.com/Cognifide/Sling-Query/wiki/Examples">Examples</a></li>
+<li><a href="/documentation/bundles/sling-query/examples.html">Examples</a></li>
 </ul>
 <h2 id="external-resources">External resources<a class="headerlink" href="#external-resources" title="Permanent link">&para;</a></h2>
 <ul>
-<li>See the <a href="http://sling.apache.org/">Apache Sling website</a> for the Sling reference documentation. Apache Sling, Apache and Sling are trademarks of the <a href="http://apache.org">Apache Software Foundation</a>.</li>
 <li>Method names, selector syntax and some parts of documentation are inspired by the <a href="http://jquery.com/">jQuery</a> library.</li>
 </ul>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1675116 by justin on Tue, 21 Apr 2015 13:30:34 +0000
+        Rev. 1809601 by tomekr on Mon, 25 Sep 2017 10:38:47 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project

Modified: websites/staging/sling/trunk/content/documentation/bundles/sling-query/vs-jcr.html
==============================================================================
--- websites/staging/sling/trunk/content/documentation/bundles/sling-query/vs-jcr.html (original)
+++ websites/staging/sling/trunk/content/documentation/bundles/sling-query/vs-jcr.html Mon Sep 25 10:38:59 2017
@@ -154,9 +154,9 @@ h2:hover > .headerlink, h3:hover > .head
 </tr>
 </tbody>
 </table>
-<p>[1] - Actually, the <code>find()</code> operation uses QUERY strategy by default, which means that the selector string is transformed to a SQL2 query. However, the transformation process is very naïve and simply skips all conditions that can't be easily transformed to SQL2 (eg. selector <code>[jcr:content/jcr:title=some title]</code> won't be transformed as it contains some subresource reference). The result of this query is then filtere manually. See <a href="Method list#searchstrategystrategy">searchStrategy</a> for more details.</p>
+<p>[1] - Actually, the <code>find()</code> operation uses QUERY strategy by default, which means that the selector string is transformed to a SQL2 query. However, the transformation process is very naïve and simply skips all conditions that can't be easily transformed to SQL2 (eg. selector <code>[jcr:content/jcr:title=some title]</code> won't be transformed as it contains some subresource reference). The result of this query is then filtere manually. See <a href="methods.html#searchstrategystrategy">searchStrategy</a> for more details.</p>
       <div class="timestamp" style="margin-top: 30px; font-size: 80%; text-align: right;">
-        Rev. 1809599 by tomekr on Mon, 25 Sep 2017 10:28:26 +0000
+        Rev. 1809601 by tomekr on Mon, 25 Sep 2017 10:38:47 +0000
       </div>
       <div class="trademarkFooter"> 
         Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project