summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2018-05-07 21:41:53 +0300
committerdefanor <defanor@uberspace.net>2018-05-07 21:41:53 +0300
commite3989dd45bc5d546e3063074aa1f46f25dd14cf0 (patch)
tree2997a7ef4f32eef63b48fc0c1615b6a19eed4135 /tools
parent142a7ba1d18d01e59c589212c8d4aff859cf33a6 (diff)
Use SIOC
Diffstat (limited to 'tools')
-rw-r--r--tools/xml-to-html.xsl13
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/xml-to-html.xsl b/tools/xml-to-html.xsl
index 1e937a6..c33a968 100644
--- a/tools/xml-to-html.xsl
+++ b/tools/xml-to-html.xsl
@@ -20,11 +20,12 @@
schema: http://schema.org/
foaf: http://xmlns.com/foaf/0.1/
dbr: http://dbpedia.org/resource/
+ sioc: http://rdfs.org/sioc/ns#
home: https://defanor.uberspace.net/"
- typeof="dc:Text schema:Article foaf:Document">
+ typeof="dc:Text schema:Article foaf:Document sioc:Post">
<head>
<!-- Only title is required -->
- <title property="dc:title schema:name foaf:name">
+ <title property="dc:title schema:name foaf:name sioc:name">
<xsl:value-of select="@title" />
</title>
<xsl:if test="@description">
@@ -48,7 +49,7 @@
content="{@published}" />
</xsl:if>
<xsl:if test="@modified">
- <meta property="dc:modified schema:dateModified"
+ <meta property="dc:modified schema:dateModified sioc:last_activity_date"
datatype="schema:Date"
content="{@modified}" />
</xsl:if>
@@ -65,9 +66,9 @@
<xsl:apply-templates select="xhtml:link" />
<!-- The rest is fixed metadata -->
- <link property="dc:creator schema:creator foaf:maker"
+ <link property="dc:creator schema:creator foaf:maker sioc:has_creator"
href="https://defanor.uberspace.net/about.xhtml#me" />
- <link property="dc:isPartOf schema:isPartOf"
+ <link property="dc:isPartOf schema:isPartOf sioc:has_container"
href="https://defanor.uberspace.net/" />
<link rel="stylesheet" title="Dark, blueish"
href="/xhtml-rdfa-dark.css" />
@@ -83,7 +84,7 @@
<!-- Additional topics -->
<xsl:template match="topic">
- <link property="dc:subject schema:about foaf:topic"
+ <link property="dc:subject schema:about foaf:topic sioc:topic"
href="{@iri}" />
</xsl:template>