-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patholdTagLib2newTagLib.xsl
182 lines (182 loc) · 7.96 KB
/
oldTagLib2newTagLib.xsl
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tei="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="xs xd tei teiEg xi" xmlns:teiEg="http://www.tei-c.org/ns/Examples"
xmlns:xi="http://www.w3.org/2003/XInclude" xmlns:xd="http://www.oxygenxml.com/ns/doc/xsl"
version="2.0">
<xd:doc scope="stylesheet">
<xd:desc>
<xd:p><xd:b>Created on:</xd:b> Feb 16, 2012</xd:p>
<xd:p><xd:b>Author:</xd:b> Terry Catapano</xd:p>
<xd:p>Stylesheet to extract element and attribute descriptions from existing EAC-CPF tag
library (i.e, "cpfTagLibrary.xml") as standalone documents converting resulting
documents to proposed TEI-based encoding</xd:p>
</xd:desc>
</xd:doc>
<xsl:output encoding="UTF-8" indent="yes" method="xml"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<!-- output a TEI root element with relevant namespace declarations -->
<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:eac-cpf="urn:isbn:1-931666-33-4"
xmlns:exml="http://workaround for xml namespace restriction/namespace"
xmlns:xlink="http://www.w3c.org/1999/xlink"
xmlns:xi="http://www.w3.org/2003/XInclude">
<!-- copy teiHeader -->
<xsl:copy-of select="/tei:TEI/tei:teiHeader"/>
<!-- output text element -->
<text>
<!-- copy front -->
<xsl:copy-of select="/tei:TEI/tei:text/tei:front"/>
<body>
<!-- process <div>'s in <body>. i.e., element and attribute descriptions -->
<div type="elements"><xsl:apply-templates select="/tei:TEI/tei:text/tei:body/tei:div[@type = 'elements']/tei:div"/></div>
<div type="attributes"><xsl:apply-templates select="/tei:TEI/tei:text/tei:body/tei:div[@type = 'attributes']/tei:div"/></div>
</body>
<!-- copy back -->
<xsl:copy-of select="/tei:TEI/tei:text/tei:back"/>
</text>
</TEI>
</xsl:template>
<xsl:template match="tei:div">
<xsl:variable name="filename"
select="concat('./descriptions/', substring(@type, 1, 4), '-', @xml:id, '.xml')"/>
<!--output xinclude reference for each element and attribute description -->
<xsl:element name="xi:include">
<xsl:attribute name="href">
<xsl:value-of select="$filename"/>
</xsl:attribute>
</xsl:element>
<!-- <xsl:call-template name="descDiv"/> -->
<!--output document for each element and attribute description -->
<xsl:result-document href="{$filename}" exclude-result-prefixes="#all" omit-xml-declaration="yes">
<!-- <xsl:element name="div" namespace="http://saa-sdt.org/tagLibrary/elementDesc/"> -->
<xsl:element name="div" inherit-namespaces="no">
<xsl:attribute name="type">
<!-- change a few type attribute values -->
<xsl:for-each select="@type">
<xsl:choose>
<xsl:when test=". = 'element'">
<xsl:text>elementDocumentation</xsl:text>
</xsl:when>
<xsl:when test=". = 'attribute'">
<xsl:text>attributeDocumentation</xsl:text>
</xsl:when>
<xsl:when test=". = 'mayOccurIn'">
<xsl:text>mayOccurWithin</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:copy/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:attribute>
<xsl:copy-of select="@* except @type "/>
<!-- get name of element from head[@type = 'tag'] -->
<xsl:apply-templates select="tei:head[@type = 'tag']"/>
<!-- process list containing description sections -->
<xsl:apply-templates select="tei:list"/>
</xsl:element>
</xsl:result-document>
</xsl:template>
<xsl:template match="tei:head[@type = 'tag']">
<head>
<xsl:apply-templates/>
</head>
<div type="fullName">
<p xml:lang="en">
<xsl:apply-templates select="parent::tei:div/tei:head[@type = 'name']"/>
</p>
</div>
</xsl:template>
<xsl:template match="tei:head[@type = 'name']">
<xsl:value-of select="normalize-space(.)"/>
</xsl:template>
<xsl:template match="tei:list">
<xsl:apply-templates/>
</xsl:template>
<!-- convert description sections from <item> to <div> -->
<xsl:template match="tei:item">
<xsl:element name="div">
<xsl:attribute name="type">
<!-- change a few type attribute values -->
<xsl:choose>
<xsl:when test="@n = 'mayOccurIn'">
<xsl:text>mayOccurWithin</xsl:text>
</xsl:when>
<xsl:when test="descendant::teiEg:egXML">
<xsl:text>examples</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@n"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:choose>
<!-- convert <p> in tei namespace to xml:lang <p> elements in no namespace-->
<xsl:when test="child::tei:p">
<xsl:for-each select="child::tei:p">
<p xml:lang="en">
<xsl:apply-templates/>
</p>
</xsl:for-each>
</xsl:when>
<!-- convert lists to <p xml:lang="en"> containing list[@type = 'gloss'] -->
<xsl:when test="tei:list">
<p xml:lang="en">
<xsl:apply-templates select="tei:list" mode="gloss"/>
</p>
</xsl:when>
<xsl:when test="teiEg:egXML">
<egXML>
<xsl:copy-of select="teiEg:egXML/*" copy-namespaces="no"/>
</egXML>
</xsl:when>
<!-- convert tei:item to <p xml:lang="en" -->
<xsl:when test="@n = 'summary'">
<p xml:lang="en">
<xsl:apply-templates/>
</p>
</xsl:when>
<xsl:when test="@n = 'description' and ancestor::tei:div[@type = 'attribute']">
<p xml:lang="en">
<xsl:apply-templates/>
</p>
</xsl:when>
<!-- all other tei:items convert to <p> -->
<xsl:otherwise>
<p>
<xsl:apply-templates/>
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:template>
<!-- convert <tag> to <gi> -->
<xsl:template match="tei:tag">
<gi>
<xsl:apply-templates/>
</gi>
</xsl:template>
<!-- convert <att> in TEI namespace to <att> in no namespace -->
<xsl:template match="tei:att">
<att>
<xsl:apply-templates/>
</att>
</xsl:template>
<!-- templates for lists in mode "gloss"; i.e., attributes section -->
<xsl:template match="tei:list" mode="gloss">
<list type="gloss">
<xsl:apply-templates mode="gloss"/>
</list>
</xsl:template>
<xsl:template match="tei:label" mode="gloss">
<label>
<xsl:apply-templates/>
</label>
</xsl:template>
<xsl:template match="tei:item" mode="gloss">
<item>
<xsl:apply-templates/>
</item>
</xsl:template>
</xsl:stylesheet>