You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2021/02/15 12:03:51 UTC

[jena-site] branch update-ns updated (5fde8db -> 01a6a65)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch update-ns
in repository https://gitbox.apache.org/repos/asf/jena-site.git.


 discard 5fde8db  Update function and property function NS to preferred form
     new 01a6a65  Update function and property function NS to preferred form

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5fde8db)
            \
             N -- N -- N   refs/heads/update-ns (01a6a65)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 source/documentation/query/text-query.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[jena-site] 01/01: Update function and property function NS to preferred form

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch update-ns
in repository https://gitbox.apache.org/repos/asf/jena-site.git

commit 01a6a650e52ebc400b86a5e0ffb48ac9e0931005
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Mon Feb 15 12:02:17 2021 +0000

    Update function and property function NS to preferred form
---
 source/documentation/query/extension.md        | 8 ++++----
 source/documentation/query/java-uri.md         | 2 +-
 source/documentation/query/library-function.md | 2 +-
 source/documentation/query/library-propfunc.md | 4 +++-
 source/documentation/query/text-query.md       | 1 +
 5 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/source/documentation/query/extension.md b/source/documentation/query/extension.md
index 7a712ab..9bcb311 100644
--- a/source/documentation/query/extension.md
+++ b/source/documentation/query/extension.md
@@ -52,9 +52,9 @@ access the queried dataset.
 ### Dynamically Loaded Functions
 
 The ARQ function library uses this mechanism.  The namespace of the
-ARQ function library is <`http://jena.hpl.hp.com/ARQ/function#>`.
+ARQ function library is `<http://jena.apache.org/ARQ/function#>`.
 
-    PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>
+    PREFIX afn: <http://jena.apache.org/ARQ/function#>
     PREFIX dc: <http://purl.org/dc/elements/1.1/>
     SELECT ?v { 
         ?x dc:date ?date . 
@@ -87,7 +87,7 @@ be query variable). They may take a list for subject or object.
 One common case is for access to collections (RDF lists) or
 containers (rdf:Bag, rdf:Seq, rdf:Alt).
 
-    PREFIX list: <http://jena.hpl.hp.com/ARQ/list#>
+    PREFIX list: <http://jena.apache.org/ARQ/list#>
     SELECT ?member { 
         ?x :p ?list .     # Some way to find the list 
         ?list list:member ?member .
@@ -95,7 +95,7 @@ containers (rdf:Bag, rdf:Seq, rdf:Alt).
 
 which can also be written:
 
-    PREFIX list: <http://jena.hpl.hp.com/ARQ/list#>
+    PREFIX list: <http://jena.apache.org/ARQ/list#>
     SELECT ?member { 
         ?x :p [ list:member ?member ] 
     }
diff --git a/source/documentation/query/java-uri.md b/source/documentation/query/java-uri.md
index 3bf3ada..1cc7523 100644
--- a/source/documentation/query/java-uri.md
+++ b/source/documentation/query/java-uri.md
@@ -33,7 +33,7 @@ the `PREFIX` declaration.
 All code loading is performed via the `MappedLoader` class. Before
 actually loading the code, the mapped loader applies any
 transformation of URIs. For example, the ARQ function library has a
-namespace of `<http://jena.hpl.hp.com/ARQ/function#>` and resides
+namespace of `<http://jena.apache.org/ARQ/function#>` 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/source/documentation/query/library-function.md b/source/documentation/query/library-function.md
index 943f384..f08575a 100644
--- a/source/documentation/query/library-function.md
+++ b/source/documentation/query/library-function.md
@@ -33,7 +33,7 @@ page.
 ### Function Library
 
 The prefix `afn` is `<http://jena.apache.org/ARQ/function#>`.
-(the old prefix of `<http://jena.hpl.hp.com/ARQ/function#>` continues to
+(The old prefix of `<http://jena.hpl.hp.com/ARQ/function#>` continues to
 work. Applications are encouraged to switch.)
 
 Direct loading using a URI prefix of
diff --git a/source/documentation/query/library-propfunc.md b/source/documentation/query/library-propfunc.md
index 37ad236..68e7a28 100644
--- a/source/documentation/query/library-propfunc.md
+++ b/source/documentation/query/library-propfunc.md
@@ -15,7 +15,9 @@ Applications can also [provide their own property functions](writing_propfuncs.h
 
 ## Property Function Library
 
-Prefix `apf:` which is `<http://jena.hpl.hp.com/ARQ/property#>`.
+The prefix `apf` is `<http://jena.apache.org/ARQ/property#>`.
+(The old prefix of `<http://jena.hpl.hp.com/ARQ/property#>` continues to
+work. Applications are encouraged to switch.)
 
 Direct loading using a URI prefix of
 `<java:org.apache.jena.sparql.pfunction.library.>` (note the final
diff --git a/source/documentation/query/text-query.md b/source/documentation/query/text-query.md
index d08c746..88b7459 100644
--- a/source/documentation/query/text-query.md
+++ b/source/documentation/query/text-query.md
@@ -14,6 +14,7 @@ searches within SPARQL queries. Here is a version compatibility table:
 | 3.3.0 - 3.9.0    | 6.4.x              | not supported     | 5.2.2 - 5.2.13 |
 | 3.10.0           | 7.4.0              | not supported     | 6.4.2          |
 | 3.15.0           | 7.7.x              | not supported     | 6.8.6          |
+| 4.0.0            | 8.8.x              | not supported     | not supported  |
 
 SPARQL allows the use of 
 [regex](https://www.w3.org/TR/2013/REC-sparql11-query-20130321/#func-regex)