You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2015/06/02 12:07:30 UTC

svn commit: r1683069 - in /marmotta/site/trunk/content/markdown/ldpath: index.md.vm language.md.vm

Author: wikier
Date: Tue Jun  2 10:07:29 2015
New Revision: 1683069

URL: http://svn.apache.org/r1683069
Log:
minor updates on the ldpath section

Modified:
    marmotta/site/trunk/content/markdown/ldpath/index.md.vm
    marmotta/site/trunk/content/markdown/ldpath/language.md.vm

Modified: marmotta/site/trunk/content/markdown/ldpath/index.md.vm
URL: http://svn.apache.org/viewvc/marmotta/site/trunk/content/markdown/ldpath/index.md.vm?rev=1683069&r1=1683068&r2=1683069&view=diff
==============================================================================
--- marmotta/site/trunk/content/markdown/ldpath/index.md.vm (original)
+++ marmotta/site/trunk/content/markdown/ldpath/index.md.vm Tue Jun  2 10:07:29 2015
@@ -16,6 +16,7 @@ the context resource:
 
     foaf:knows / foaf:name :: xsd:string
 
+Read the [full language specification](language.html) for further details.
 Before dontated to the [ASF](www.apache.org), LDPath (formally known as RDFPath)
 was hosted on [Google Code](https://code.google.com/p/ldpath/).
 

Modified: marmotta/site/trunk/content/markdown/ldpath/language.md.vm
URL: http://svn.apache.org/viewvc/marmotta/site/trunk/content/markdown/ldpath/language.md.vm?rev=1683069&r1=1683068&r2=1683069&view=diff
==============================================================================
--- marmotta/site/trunk/content/markdown/ldpath/language.md.vm (original)
+++ marmotta/site/trunk/content/markdown/ldpath/language.md.vm Tue Jun  2 10:07:29 2015
@@ -9,8 +9,9 @@ Introduction
 ------------
 
 LDPath (fka RDF Path) follows a syntax similar to XPath that can be used for selecting the values of properties.
-It has originally been developed for configuring the semantic search component of the
-[Linked Media Framework](http://code.google.com/p/lmf/), but has been moved out into a separate, generic module. 
+
+It has originally been developed for configuring the [semantic search](http://github.com/wikier/marmotta-search) component 
+of the [Linked Media Framework](http://bitbucket.org/srfgkmt/lmf/), but has been moved out into a separate, generic module. 
 It still contains some syntactical constructs that are only relevant for configuring semantic search; these are marked 
 explicitly below.
 
@@ -50,13 +51,13 @@ Some common prefixes are predefined and
 
 <h3> Search specific constructs </h3>
 
-<h4> Filter Definition (Search Indexing only) </h4>
+<h4> Filter Definition (search/indexing only) </h4>
 
     @filter TEST
 
 The search index will only contain nodes (documents) that pass the defined filter. See Value Testing below.
 
-<h4> Boost Definition (Search Indexing only) </h4>
+<h4> Boost Definition (search/indexing only) </h4>
 
     @boost PATH
 
@@ -357,7 +358,7 @@ function can also be used to retrieve th
 
 would retrieve the homepage of a foaf:Person and index it as English text.
 
-Index Types (Search Indexing only)
+Index Types (search/indexing only)
 ----------------------------------
 
 All XML Schema built-in datatypes (http://www.w3.org/TR/xmlschema-2/) are supported as field types in the SOLR index.
@@ -382,7 +383,7 @@ In addition to the XML Schema base types
 * lmf:location_s - interpret evaluated string as [[http://wiki.apache.org/solr/SpatialSearch#LatLonType|solr.LatLonType]]
 * lmf:geohash_s - interpret evaluated string as [[http://wiki.apache.org/solr/SpatialSearchDev#Geohash|solr.GeoHashField]]
 
-Field Configuration (Search Indexing only)
+Field Configuration (search/indexing only)
 ------------------------------------------
 
 Field Configuration allows additional index configuration for each field.
@@ -408,7 +409,6 @@ The following properties are interpreted
 Examples
 --------
 
-
 <h3> FOAF </h3>
 
     @prefix foaf : <http://xmlns.com/foaf/0.1/> ;
@@ -420,3 +420,4 @@ Examples
     friends    = foaf:knows / (foaf:name | fn:concat(foaf:givename," ",foaf:surname)) :: xsd:string;
     contrycode = foaf:based_near / <http://www.geonames.org/ontology#countryCode> :: xsd:string ;
     type       = rdf:type :: xsd:anyURI ;
+