You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by gi...@apache.org on 2021/02/16 17:07:54 UTC

[jena-site] branch asf-site updated: Updated site from main (25fde1af5026ff1f963586aeef10f13a5a0920ba)

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/jena-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 1566485  Updated site from main (25fde1af5026ff1f963586aeef10f13a5a0920ba)
1566485 is described below

commit 15664854b7359c3057ca5e713ddf315735b1a183
Author: jenkins <bu...@apache.org>
AuthorDate: Tue Feb 16 17:07:49 2021 +0000

    Updated site from main (25fde1af5026ff1f963586aeef10f13a5a0920ba)
---
 content/documentation/index.xml                   |  5 ++---
 content/documentation/query/extension.html        |  8 ++++----
 content/documentation/query/java-uri.html         |  2 +-
 content/documentation/query/library-function.html |  2 +-
 content/documentation/query/library-propfunc.html |  4 +++-
 content/documentation/query/text-query.html       |  6 ++++++
 content/index.xml                                 |  5 ++---
 content/sitemap.xml                               | 12 ++++++------
 8 files changed, 25 insertions(+), 19 deletions(-)

diff --git a/content/documentation/index.xml b/content/documentation/index.xml
index 63c917b..767935d 100644
--- a/content/documentation/index.xml
+++ b/content/documentation/index.xml
@@ -1146,9 +1146,8 @@ The intended usage of this is where using a QuerySolutionMap as initial bindings
 See also the free text search page.
 See also the FILTER functions FILTER functions library.
 Applications can also provide their own property functions.
-Property Function Library Prefix apf: which is &amp;lt;http://jena.hpl.hp.com/ARQ/property#&amp;gt;.
-Direct loading using a URI prefix of &amp;lt;java:org.apache.jena.sparql.pfunction.library.&amp;gt; (note the final dot) also works.
-The prefix list: is http://jena.</description>
+Property Function Library The prefix apf is &amp;lt;http://jena.apache.org/ARQ/property#&amp;gt;. (The old prefix of &amp;lt;http://jena.hpl.hp.com/ARQ/property#&amp;gt; continues to work. Applications are encouraged to switch.)
+Direct loading using a URI prefix of &amp;lt;java:org.</description>
     </item>
     
     <item>
diff --git a/content/documentation/query/extension.html b/content/documentation/query/extension.html
index 978a88a..6dd1a12 100644
--- a/content/documentation/query/extension.html
+++ b/content/documentation/query/extension.html
@@ -217,8 +217,8 @@ class so just registering a Java class will work. A function can
 access the queried dataset.</p>
 <h3 id="dynamically-loaded-functions">Dynamically Loaded Functions</h3>
 <p>The ARQ function library uses this mechanism.  The namespace of the
-ARQ function library is &lt;<code>http://jena.hpl.hp.com/ARQ/function#&gt;</code>.</p>
-<pre><code>PREFIX afn: &lt;http://jena.hpl.hp.com/ARQ/function#&gt;
+ARQ function library is <code>&lt;http://jena.apache.org/ARQ/function#&gt;</code>.</p>
+<pre><code>PREFIX afn: &lt;http://jena.apache.org/ARQ/function#&gt;
 PREFIX dc: &lt;http://purl.org/dc/elements/1.1/&gt;
 SELECT ?v { 
     ?x dc:date ?date . 
@@ -244,14 +244,14 @@ able to generate all possibilities for that slot.</p>
 be query variable). They may take a list for subject or object.</p>
 <p>One common case is for access to collections (RDF lists) or
 containers (rdf:Bag, rdf:Seq, rdf:Alt).</p>
-<pre><code>PREFIX list: &lt;http://jena.hpl.hp.com/ARQ/list#&gt;
+<pre><code>PREFIX list: &lt;http://jena.apache.org/ARQ/list#&gt;
 SELECT ?member { 
     ?x :p ?list .     # Some way to find the list 
     ?list list:member ?member .
 }
 </code></pre>
 <p>which can also be written:</p>
-<pre><code>PREFIX list: &lt;http://jena.hpl.hp.com/ARQ/list#&gt;
+<pre><code>PREFIX list: &lt;http://jena.apache.org/ARQ/list#&gt;
 SELECT ?member { 
     ?x :p [ list:member ?member ] 
 }
diff --git a/content/documentation/query/java-uri.html b/content/documentation/query/java-uri.html
index 5f81c65..a37561c 100644
--- a/content/documentation/query/java-uri.html
+++ b/content/documentation/query/java-uri.html
@@ -201,7 +201,7 @@ the <code>PREFIX</code> declaration.</p>
 <p>All code loading is performed via the <code>MappedLoader</code> class. Before
 actually loading the code, the mapped loader applies any
 transformation of URIs. For example, the ARQ function library has a
-namespace of <code>&lt;http://jena.hpl.hp.com/ARQ/function#&gt;</code> and resides
+namespace of <code>&lt;http://jena.apache.org/ARQ/function#&gt;</code> and resides
 in the Java package org.apache.jena.sparql.function.library. The
 mapped loader includes a partial rewrite rule turning http URLs
 starting with that namespace into java: URIs using the package
diff --git a/content/documentation/query/library-function.html b/content/documentation/query/library-function.html
index 04ece79..812887e 100644
--- a/content/documentation/query/library-function.html
+++ b/content/documentation/query/library-function.html
@@ -197,7 +197,7 @@ currently supported.  To check the exact current registrations, see
 page.</p>
 <h3 id="function-library">Function Library</h3>
 <p>The prefix <code>afn</code> is <code>&lt;http://jena.apache.org/ARQ/function#&gt;</code>.
-(the old prefix of <code>&lt;http://jena.hpl.hp.com/ARQ/function#&gt;</code> continues to
+(The old prefix of <code>&lt;http://jena.hpl.hp.com/ARQ/function#&gt;</code> continues to
 work. Applications are encouraged to switch.)</p>
 <p>Direct loading using a URI prefix of
 <code>&lt;java:org.apache.jena.sparql.function.library.&gt;</code> (note the final
diff --git a/content/documentation/query/library-propfunc.html b/content/documentation/query/library-propfunc.html
index f08a408..8f76844 100644
--- a/content/documentation/query/library-propfunc.html
+++ b/content/documentation/query/library-propfunc.html
@@ -183,7 +183,9 @@ triple matching process. Property functions can be
 <a href="library-function.html">FILTER functions library</a>.</p>
 <p>Applications can also <a href="writing_propfuncs.html">provide their own property functions</a>.</p>
 <h2 id="property-function-library">Property Function Library</h2>
-<p>Prefix <code>apf:</code> which is <code>&lt;http://jena.hpl.hp.com/ARQ/property#&gt;</code>.</p>
+<p>The prefix <code>apf</code> is <code>&lt;http://jena.apache.org/ARQ/property#&gt;</code>.
+(The old prefix of <code>&lt;http://jena.hpl.hp.com/ARQ/property#&gt;</code> continues to
+work. Applications are encouraged to switch.)</p>
 <p>Direct loading using a URI prefix of
 <code>&lt;java:org.apache.jena.sparql.pfunction.library.&gt;</code> (note the final
 dot) also works.</p>
diff --git a/content/documentation/query/text-query.html b/content/documentation/query/text-query.html
index 727d4b0..16d6f0f 100644
--- a/content/documentation/query/text-query.html
+++ b/content/documentation/query/text-query.html
@@ -214,6 +214,12 @@ searches within SPARQL queries. Here is a version compatibility table:</p>
 <td>not supported</td>
 <td>6.8.6</td>
 </tr>
+<tr>
+<td>4.0.0</td>
+<td>8.8.x</td>
+<td>not supported</td>
+<td>not supported</td>
+</tr>
 </tbody>
 </table>
 <p>SPARQL allows the use of
diff --git a/content/index.xml b/content/index.xml
index 02011f5..7338afe 100644
--- a/content/index.xml
+++ b/content/index.xml
@@ -1320,9 +1320,8 @@ The intended usage of this is where using a QuerySolutionMap as initial bindings
 See also the free text search page.
 See also the FILTER functions FILTER functions library.
 Applications can also provide their own property functions.
-Property Function Library Prefix apf: which is &amp;lt;http://jena.hpl.hp.com/ARQ/property#&amp;gt;.
-Direct loading using a URI prefix of &amp;lt;java:org.apache.jena.sparql.pfunction.library.&amp;gt; (note the final dot) also works.
-The prefix list: is http://jena.</description>
+Property Function Library The prefix apf is &amp;lt;http://jena.apache.org/ARQ/property#&amp;gt;. (The old prefix of &amp;lt;http://jena.hpl.hp.com/ARQ/property#&amp;gt; continues to work. Applications are encouraged to switch.)
+Direct loading using a URI prefix of &amp;lt;java:org.</description>
     </item>
     
     <item>
diff --git a/content/sitemap.xml b/content/sitemap.xml
index 2e422f1..40d1720 100644
--- a/content/sitemap.xml
+++ b/content/sitemap.xml
@@ -214,7 +214,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation/query/java-uri.html</loc>
-    <lastmod>2020-02-28T13:09:12+01:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>
@@ -299,7 +299,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation.html</loc>
-    <lastmod>2021-02-10T15:35:55+00:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>
@@ -319,7 +319,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation/query/extension.html</loc>
-    <lastmod>2020-06-28T16:59:39+01:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>
@@ -334,7 +334,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation/query/library-function.html</loc>
-    <lastmod>2020-02-28T13:09:12+01:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>
@@ -509,7 +509,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation/query/text-query.html</loc>
-    <lastmod>2020-07-23T12:44:56-05:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>
@@ -644,7 +644,7 @@
   
   <url>
     <loc>https://jena.apache.org/documentation/query/library-propfunc.html</loc>
-    <lastmod>2020-02-28T13:09:12+01:00</lastmod>
+    <lastmod>2021-02-16T16:52:52+00:00</lastmod>
   </url>
   
   <url>