-
Notifications
You must be signed in to change notification settings - Fork 4
/
alt.xsl
69 lines (62 loc) · 2.54 KB
/
alt.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
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- nxml -*- -->
<!--
Copyright (C) 2005 Universitat d'Alacant / Universidad de Alicante
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:param name="alt"/>
<xsl:template match="/">
<xsl:value-of select="string('<?xml version="1.0" encoding="UTF-8"?>
')"/>
<xsl:apply-templates select="*|text()"/>
</xsl:template>
<xsl:template match="*">
<xsl:if test="not(count(./@alt)=1) or ./@alt=$alt">
<xsl:if test="not(local-name(.)=string('group'))">
<xsl:value-of select="string('<')"/>
<xsl:value-of select="local-name(.)"/>
<xsl:for-each select="./@*">
<xsl:if test="not(local-name(.)=string('alt'))">
<xsl:value-of select="string(' ')"/>
<xsl:value-of select="local-name(.)"/>
<xsl:value-of select="string('="')"/>
<xsl:value-of select="string(.)"/>
<xsl:value-of select="string('"')"/>
</xsl:if>
</xsl:for-each>
</xsl:if>
<xsl:choose>
<xsl:when test="count(text()[normalize-space(.)] | *)=0">
<xsl:if test="not(local-name(.)=string('group'))">
<xsl:value-of select="string('/>')"/>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:if test="not(local-name(.)=string('group'))">
<xsl:value-of select="string('>')"/>
</xsl:if>
<xsl:apply-templates/>
<xsl:if test="not(local-name(.)=string('group'))">
<xsl:value-of select="string('</')"/>
<xsl:value-of select="local-name(.)"/>
<xsl:value-of select="string('>')"/>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>