Skip to content

Commit

Permalink
Wrap everything in lime:Lexicon with some DublinCore terms
Browse files Browse the repository at this point in the history
  • Loading branch information
kernc committed Dec 11, 2020
1 parent 8aa7360 commit 7598acc
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions Stylesheet/TEI2Ontolex.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,24 @@

<xsl:template match="/">
<rdf:RDF>
<xsl:apply-templates select="descendant::tei:entry"/>
<lime:Lexicon>
<xsl:apply-templates select="descendant::tei:teiHeader"/>
<xsl:apply-templates select="descendant::tei:entry"/>
</lime:Lexicon>
</rdf:RDF>
</xsl:template>

<xsl:template match="tei:teiHeader">
<xsl:apply-templates select="descendant::tei:title[text()]"/>
<xsl:apply-templates select="descendant::tei:author[text()]"/>
<xsl:apply-templates select="descendant::tei:date[text() | @when]"/>
<xsl:apply-templates select="descendant::tei:publisher[text()]"/>
<xsl:apply-templates select="descendant::tei:licence[text()]"/>
</xsl:template>

<xsl:template match="tei:entry">
<xsl:variable name="theEntry" select="."/>
<lime:entry>
<xsl:choose>
<!-- Case when there are two parts of speech: we split the entry in two -->
<xsl:when test="count(tei:gramGrp/tei:pos) > 1">
Expand Down Expand Up @@ -72,6 +84,7 @@
</ontolex:LexicalEntry>
</xsl:otherwise>
</xsl:choose>
</lime:entry>
</xsl:template>


Expand Down Expand Up @@ -556,7 +569,7 @@

<xsl:template match="tei:date">
<dc:date>
<xsl:apply-templates/>
<xsl:value-of select="text() | @when"/>
</dc:date>
</xsl:template>

Expand All @@ -566,6 +579,12 @@
</dc:publisher>
</xsl:template>

<xsl:template match="tei:licence">
<dct:licence>
<xsl:apply-templates/>
</dct:licence>
</xsl:template>

<!-- <xr> construct -->

<xsl:template match="tei:xr[@type = 'related' or @type = 'renvoi']">
Expand Down

0 comments on commit 7598acc

Please sign in to comment.