-
Notifications
You must be signed in to change notification settings - Fork 23
/
alto2.0__alto3.0.xsl
26 lines (23 loc) · 1.03 KB
/
alto2.0__alto3.0.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://github.com/altoxml/documentation/issues/1#issuecomment-219671094 -->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0"
xmlns:v2="http://www.loc.gov/standards/alto/ns-v2#"
xmlns:v3="http://www.loc.gov/standards/alto/ns-v3#">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<!-- replace xsi:schemaLocation attribute -->
<xsl:template match="@xsi:schemaLocation">
<xsl:attribute name="xsi:schemaLocation">http://www.loc.gov/standards/alto/ns-v3# http://www.loc.gov/standards/alto/v3/alto-3-0.xsd</xsl:attribute>
</xsl:template>
<!-- replace namespace -->
<xsl:template match="v2:*">
<xsl:element name="{local-name()}" namespace="http://www.loc.gov/standards/alto/ns-v3#">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>