1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/2005/Atom"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:vi="http://www.openlinksw.com/ods/"
xmlns:ods="http://openlinksw.com/ods/1.0/"
xmlns:rss="http://purl.org/rss/1.0/"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:aowl="http://atomowl.org/ontologies/atomrdf#"
xmlns:xml="xml"
version="1.0">
<!-- general element conversions -->
<xsl:template match="/">
<xsl:comment>ATOM based XML document generated By OpenLink Virtuoso</xsl:comment>
<rdf:RDF>
<xsl:apply-templates/>
</rdf:RDF>
</xsl:template>
<xsl:template match="feed">
<sioc:Site rdf:about="{link[@rel='alternate']/@href}">
<dc:title><xsl:value-of select="title"/></dc:title>
<sioc:host_of rdf:resource="{link[@rel='self']/@href}"/>
</sioc:Site>
<sioc:Forum rdf:about="{link[@rel='self']/@href}">
<dc:title><xsl:value-of select="title"/></dc:title>
<sioc:id><xsl:value-of select="id"/></sioc:id>
<sioc:has_host rdf:resource="{link[@rel='alternate']/@href}"/>
<xsl:for-each select="entry">
<sioc:container_of rdf:resource="{link[@rel='alternate']/@href}"/>
</xsl:for-each>
<rdfs:seeAlso rdf:resource="{link[@rel='alternate']/@href}"/>
</sioc:Forum>
<xsl:apply-templates select="entry"/>
<xsl:if test="entry/author/name">
<xsl:for-each select="distinct (entry/author)">
<foaf:Person rdf:about="#{name}">
<foaf:name><xsl:value-of select="name"/></foaf:name>
<xsl:if test="email">
<foaf:mbox rdf:resource="mailto:{email}"/>
</xsl:if>
</foaf:Person>
</xsl:for-each>
</xsl:if>
</xsl:template>
<xsl:template match="entry">
<sioc:Post rdf:about="{link[@rel='alternate']/@href}">
<dc:title><xsl:value-of select="title"/></dc:title>
<sioc:id><xsl:value-of select="id"/></sioc:id>
<sioc:has_container rdf:resource="{parent::feed/link[@rel='self']/@href}"/>
<dct:created><xsl:value-of select="published"/></dct:created>
<sioc:content><xsl:value-of select="content"/></sioc:content>
<xsl:if test="author/name">
<foaf:maker rdf:resource="#{author/name}" />
</xsl:if>
<rdfs:seeAlso rdf:resource="{link[@rel='alternate']/@href}"/>
</sioc:Post>
</xsl:template>
<xsl:template match="*|text()"/>
</xsl:stylesheet>
|