tracker r2838 - in trunk: . utils/services
- From: pvanhoof svn gnome org
- To: svn-commits-list gnome org
- Subject: tracker r2838 - in trunk: . utils/services
- Date: Mon, 26 Jan 2009 14:26:33 +0000 (UTC)
Author: pvanhoof
Date: Mon Jan 26 14:26:33 2009
New Revision: 2838
URL: http://svn.gnome.org/viewvc/tracker?rev=2838&view=rev
Log:
2009-01-26 Philip Van Hoof <philip codeminded be>
* utils/services/rdfxml2unittest_data.xsl: added a sample xsl that
generates a libtracker-data unit test's data.ttl file
* utils/services/rdfxml2unittest_query.xsl: added a sample xsl that
generates a libtracker-data unit test's query file
Added:
trunk/utils/services/rdfxml2unittest_query.xsl
Modified:
trunk/ChangeLog
Added: trunk/utils/services/rdfxml2unittest_query.xsl
==============================================================================
--- (empty file)
+++ trunk/utils/services/rdfxml2unittest_query.xsl Mon Jan 26 14:26:33 2009
@@ -0,0 +1,85 @@
+<xsl:stylesheet version = '1.0'
+ xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
+ xmlns:nid3="http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#"
+ xmlns:nfo="http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#"
+ xmlns:nmo="http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#"
+ xmlns:nie="http://www.semanticdesktop.org/ontologies/2007/01/19/nie#"
+ xmlns:exif="http://www.kanzaki.com/ns/exif#"
+ xmlns:nao="http://www.semanticdesktop.org/ontologies/2007/08/15/nao#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:protege="http://protege.stanford.edu/system#"
+ xmlns:dcterms="http://purl.org/dc/terms/"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:ncal="http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+ xmlns:nrl="http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#"
+ xmlns:pimo="http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#"
+ xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
+ xmlns:tmo="http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:nco="http://www.semanticdesktop.org/ontologies/2007/03/22/nco#"
+ xmlns:nexif="http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#">
+<xsl:output method="text" />
+
+<xsl:template name="predicate-of">
+ <xsl:param name="about"/>
+ <xsl:choose>
+ <xsl:when test="substring-after($about, '/')">
+ <xsl:call-template name="predicate-of">
+ <xsl:with-param name="about" select="substring-after($about, '/')"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:choose>
+ <xsl:when test="substring-after($about, '#')">
+ <xsl:if test="substring-before($about, '#') != 'XMLSchema'"><xsl:value-of select="substring-before($about, '#')"/>:</xsl:if><xsl:value-of select="substring-after($about, '#')"/>
+ </xsl:when>
+ <xsl:otherwise>DC:<xsl:value-of select="$about"/></xsl:otherwise>
+ </xsl:choose>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+<xsl:template match="rdf:RDF">
+ prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+ prefix foaf: <http://xmlns.com/foaf/0.1/> .
+ prefix owl: <http://www.w3.org/2002/07/owl#> .
+ prefix xsl: <http://www.w3.org/1999/XSL/Transform#> .
+ prefix nid3: <http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#> .
+ prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#> .
+ prefix nmo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#> .
+ prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
+ prefix exif: <http://www.kanzaki.com/ns/exif#> .
+ prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
+ prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+ prefix protege: <http://protege.stanford.edu/system#> .
+ prefix dcterms: <http://purl.org/dc/terms/> .
+ prefix ncal: <http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#> .
+ prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+ prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
+ prefix pimo: <http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#> .
+ prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
+ prefix tmo: <http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#> .
+ prefix dc: <http://purl.org/dc/elements/1.1/> .
+ prefix nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#> .
+ prefix nexif: <http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#> .
+
+<xsl:for-each select="rdfs:Class">
+<xsl:variable name="about" select="@rdf:about"/>
+<xsl:for-each select="/rdf:RDF/rdf:Property/rdfs:domain[ rdf:resource=$about]">
+<xsl:choose>
+<xsl:when test="substring-after(../rdfs:range/@rdf:resource, '#') = 'string'">
+
+# Query for <xsl:call-template name="predicate-of"><xsl:with-param name="about"><xsl:value-of select="../@rdf:about"/></xsl:with-param></xsl:call-template>
+SELECT ?<xsl:value-of select="substring-after(../@rdf:about, '#')"/>
+WHERE { ?x <xsl:call-template name="predicate-of"><xsl:with-param name="about"><xsl:value-of select="../@rdf:about"/></xsl:with-param></xsl:call-template> ?<xsl:value-of select="substring-after(../@rdf:about, '#')"/> }
+ORDER BY ?<xsl:value-of select="substring-after(../@rdf:about, '#')"/>
+</xsl:when>
+<xsl:otherwise>
+</xsl:otherwise>
+</xsl:choose>
+
+</xsl:for-each>
+
+</xsl:for-each>
+</xsl:template>
+</xsl:stylesheet>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]