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 2018/01/30 10:09:46 UTC

svn commit: r1822626 - in /jena/site/trunk/content/documentation/query: index.mdtext javascript-functions.md

Author: andy
Date: Tue Jan 30 10:09:45 2018
New Revision: 1822626

URL: http://svn.apache.org/viewvc?rev=1822626&view=rev
Log:
Link in js functions : clean lists

Modified:
    jena/site/trunk/content/documentation/query/index.mdtext
    jena/site/trunk/content/documentation/query/javascript-functions.md

Modified: jena/site/trunk/content/documentation/query/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/index.mdtext?rev=1822626&r1=1822625&r2=1822626&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/index.mdtext (original)
+++ jena/site/trunk/content/documentation/query/index.mdtext Tue Jan 30 10:09:45 2018
@@ -12,7 +12,7 @@ SPARQL is the query language developed b
 -   Free text search via Lucene
 -   SPARQL/Update
 -   Access and extension of the SPARQL algebra
--   Support for custom filter functions
+-   Support for custom filter functions, including javascript functions
 -   Property functions for custom processing of semantic
     relationships
 -   Aggregation, GROUP BY and assignment as SPARQL extensions
@@ -35,21 +35,15 @@ SPARQL is the query language developed b
 -   [Explaining queries](explain.html)
 -   [Tutorial: manipulating SPARQL using ARQ](manipulating_sparql_using_arq.html)
 -   [Basic federated query (`SERVICE`)](service.html)
-
-## Advanced SPARQL use
-
-Features of ARQ that are now legal SPARQL 1.1:
-
 -   [Property paths](property_paths.html)
 -   [GROUP BY and counting](group-by.html)
 -   [SELECT expressions](select_expr.html)
 -   [Sub-SELECT](sub-select.html)
 -   [Negation](negation.html)
--   [Conditions in FILTERs](function_forms.html)
--   [Construct Quad](construct-quad.html)
 
+Features of ARQ that are legal SPARQL syntax
 
-Features of ARQ that are legal SPARQL syntax.
+-   [Conditions in FILTERs](function_forms.html)
 
 -   [Free text searches](text-query.html)
 -   [Accessing lists](rdf_lists.html) (RDF collections)
@@ -59,8 +53,8 @@ Features of ARQ that are legal SPARQL sy
 -   Library
     -   [Expression function library](library-function.html)
     -   [Property function library](library-propfunc.html)
-
--   [Writing ARQ FILTER functions](writing_functions.html)
+-   [Writing SPARQL functions](writing_functions.html)
+-   [Writing SPARQL functions in JavaScript](javascript-functions.html)
 -   [Constructing queries programmatically](programmatic.html)
 -   [Parameterized query strings](parameterized-sparql-strings.html)
 -   [ARQ and the SPARQL algebra](algebra.html)
@@ -75,6 +69,7 @@ parsed with an explicit declaration of `
 
 -   [LET variable assignment](assignment.html)
 -   [Order results using a Collation](collation.html)
+-   [Construct Quad](construct-quad.html)
 
 ## Update
 
@@ -87,12 +82,12 @@ ARQ supports the W3C standard SPARQL Upd
 
 - [Fuseki](../fuseki2/index.html) - Server implementation of the SPARQL protocol.
 - [TDB - A SPARQL database for Jena](../tdb), a pure Java persistence layer for large graphs, high performance applications and embedded use.
-- [SDB - A SPARQL database for Jena](../sdb), using SQL databases.
+- [RDFConenction](../rdfconnection), a unified API for SPARQL Query, Update and Graph Store Protocol.
 
 ## W3C Documents
 
 -   [SPARQL Query Language specification](http://www.w3.org/TR/sparql11-query/)
--   [SPARQL Query Results XML Format](http://www.w3.org/TR/rdf-sparql-XMLres/)
+-   [SPARQL Query Results JSON Format](https://www.w3.org/TR/sparql11-results-json/)
 -   [SPARQL Protocol](http://www.w3.org/TR/rdf-sparql-protocol/)
 
 ## Articles
@@ -111,10 +106,12 @@ Articles and documentation elsewhere:
 -   [Writing an ARQ Extension Function](http://www.ldodds.com/blog/archives/000252.html)
     (by Leigh Dodds)
 
-## Miscellaneous Resources
+## RDF Syntax Specifications
 
--   [Turtle](http://www.w3.org/TeamSubmission/turtle/) - a non-XML
-    RDF serialization
+-   [Turtle](https://www.w3.org/TR/turtle/)
+-   [N-Triples](https://www.w3.org/TR/n-triples)
+-   [TriG](https://www.w3.org/TR/trig/)
+-   [N-Quads](https://www.w3.org/TR/n-quads/)
 
 ## Online Demo
 

Modified: jena/site/trunk/content/documentation/query/javascript-functions.md
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/javascript-functions.md?rev=1822626&r1=1822625&r2=1822626&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/javascript-functions.md (original)
+++ jena/site/trunk/content/documentation/query/javascript-functions.md Tue Jan 30 10:09:45 2018
@@ -127,7 +127,7 @@ or it can be specificied in the server c
         # Set the server-wide context
         ja:context [
              ja:cxtName "arq:js-library" ;
-             ja:cxtValue "/home/afs/tmp/JSF/functions.js"
+             ja:cxtValue "/filepath/functions.js"
         ] ;
     .