File: alt.xsl

package info (click to toggle)
apertium-en-es 0.8.0~r57502-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 22,500 kB
  • sloc: xml: 792; makefile: 149; sh: 24; perl: 14
file content (98 lines) | stat: -rw-r--r-- 3,775 bytes parent folder | download | duplicates (6)
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
<?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 name="replaceString">
  <xsl:param name="haystack"/>
  <xsl:param name="needle"/>
  <xsl:param name="replacement"/>
  <xsl:choose>
    <xsl:when test="contains($haystack, $needle)">
      <xsl:value-of select="substring-before($haystack, $needle)"/>
      <xsl:value-of select="$replacement"/>
      <xsl:call-template name="replaceString">
	<xsl:with-param name="haystack" 
			select="substring-after($haystack, $needle)"/>
	<xsl:with-param name="needle" select="$needle"/>
	<xsl:with-param name="replacement" select="$replacement"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$haystack"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

<xsl:template match="/">
  <xsl:value-of select="string('&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#xA;')"/>
  <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('&lt;')"/>
      <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('=&quot;')"/>
	  <xsl:call-template name="replaceString">
            <xsl:with-param name="haystack" select="."/>
            <xsl:with-param name="needle" select="string('&amp;')"/>
            <xsl:with-param name="replacement" select="string('&amp;amp;')"/>          
          </xsl:call-template>
          <xsl:value-of select="string('&quot;')"/>
        </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('/&gt;')"/>
        </xsl:if>
      </xsl:when>
      <xsl:otherwise>
        <xsl:if test="not(local-name(.)=string('group'))"> 
          <xsl:value-of select="string('&gt;')"/>
        </xsl:if>
        <xsl:apply-templates/>
        <xsl:if test="not(local-name(.)=string('group'))">           
          <xsl:value-of select="string('&lt;/')"/>
          <xsl:value-of select="local-name(.)"/>
          <xsl:value-of select="string('&gt;')"/>
        </xsl:if>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:if>
</xsl:template>

<xsl:template match="text()">
  <xsl:call-template name="replaceString">
    <xsl:with-param name="haystack" select="."/>
    <xsl:with-param name="needle" select="string('&amp;')"/>
    <xsl:with-param name="replacement" select="string('&amp;amp;')"/>          
  </xsl:call-template>
</xsl:template>

</xsl:stylesheet>