tracker r2822 - in trunk: . utils/services



Author: pvanhoof
Date: Thu Jan 22 15:38:38 2009
New Revision: 2822
URL: http://svn.gnome.org/viewvc/tracker?rev=2822&view=rev

Log:
2009-01-22  Philip Van Hoof  <philip codeminded be>

        * utils/services/rdfxml2metadatasample.xsl: added one more sample that
        attempts to convert a rdf:xml file to our current ontology .ini format



Added:
   trunk/utils/services/rdfxml2metadatasample.xsl
Modified:
   trunk/ChangeLog

Added: trunk/utils/services/rdfxml2metadatasample.xsl
==============================================================================
--- (empty file)
+++ trunk/utils/services/rdfxml2metadatasample.xsl	Thu Jan 22 15:38:38 2009
@@ -0,0 +1,56 @@
+<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:param name="iteration">1</xsl:param>
+ <element index="{$iteration}"/>
+ <xsl:choose>
+  <xsl:when test="substring-after($about, '/')">
+   <xsl:call-template name="predicate-of">
+     <xsl:with-param name="about" select="substring-after($about, '/')"/>
+     <xsl:with-param name="iteration" select="$iteration +1"/>
+   </xsl:call-template>
+  </xsl:when>
+  <xsl:otherwise>
+   <xsl:if test="substring-before($about, '#') != 'XMLSchema'"><xsl:value-of select="substring-before($about, '#')"/>:</xsl:if><xsl:value-of select="substring-after($about, '#')"/>
+  </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+<xsl:template match="rdf:RDF">
+<xsl:for-each select="rdfs:Property">
+
+<xsl:variable name="about" select="@rdf:about"/>
+
+<xsl:value-of select="substring-after(@rdf:about, '#')"/>
+
+[nco:<xsl:call-template name="predicate-of"><xsl:with-param name="about"><xsl:value-of select="@rdf:about"/></xsl:with-param></xsl:call-template>]
+DataType=<xsl:call-template name="predicate-of"><xsl:with-param name="about"><xsl:value-of select="rdfs:range/@rdf:resource"/></xsl:with-param></xsl:call-template>
+Domain=<xsl:call-template name="predicate-of"><xsl:with-param name="about"><xsl:value-of select="rdfs:domain/@rdf:resource"/></xsl:with-param></xsl:call-template>
+
+
+</xsl:for-each>
+</xsl:template>
+</xsl:stylesheet> 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]