You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by bu...@apache.org on 2012/11/26 21:50:00 UTC

svn commit: r839662 - in /websites/staging/jena/trunk/content: ./ documentation/query/function_forms.html documentation/query/negation.html

Author: buildbot
Date: Mon Nov 26 20:49:59 2012
New Revision: 839662

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/query/function_forms.html
    websites/staging/jena/trunk/content/documentation/query/negation.html

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Nov 26 20:49:59 2012
@@ -1 +1 @@
-1413826
+1413829

Modified: websites/staging/jena/trunk/content/documentation/query/function_forms.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/query/function_forms.html (original)
+++ websites/staging/jena/trunk/content/documentation/query/function_forms.html Mon Nov 26 20:49:59 2012
@@ -166,9 +166,7 @@ standard SPARQL include <code>bound</cod
 as an expression but just tests whether it is set or not, and
 boolean operators <code>||</code> and <code>&amp;&amp;</code> which handle errors and do not just
 evaluate each branch and combining the results.</p>
-<p>ARQ adds two forms: <code>IF</code> and <code>COALESCE.</code></p>
-<p><code>IF</code> and <code>COALESCE</code> involve syntactic extension and are available
-if the query is parsed with language <code>Syntax.syntaxARQ</code>.</p>
+<p>These were previously ARQ extensions but are now legal SPARQL 1.1</p>
 <h2 id="if">IF</h2>
 <p>The <code>IF</code> form evaluates it's first argument to get a boolean
 result, then evaluates and return the value of the second if the

Modified: websites/staging/jena/trunk/content/documentation/query/negation.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/query/negation.html (original)
+++ websites/staging/jena/trunk/content/documentation/query/negation.html Mon Nov 26 20:49:59 2012
@@ -161,8 +161,8 @@
 <code>OPTIONAL</code>/<code>!BOUND</code>. It is inconvenient and can be hard to use as
 complexity increases. ARQ supports additional operators for
 negation.</p>
-<p>This is syntactic extension and is available if the query is parsed
-with language <code>Syntax.syntaxARQ</code>.</p>
+<p>The <code>EXISTS</code> and <code>NOT EXISTS</code> are now legal SPARQL 1.1 when used inside a <code>FILTER</code>, 
+they may be used as bare graph patterns only when <code>Syntax.syntaxARQ</code> is used</p>
 <div class="codehilite"><pre><span class="c1"># Names of people who have not stated that they know anyone</span>
 <span class="n">PREFIX</span> <span class="n">foaf:</span> <span class="sr">&lt;http://xmlns.com/foaf/0.1/&gt;</span>
 <span class="n">SELECT</span> <span class="p">?</span><span class="n">name</span>