File: test-9.1-2.xsl

package info (click to toggle)
libxslt 1.1.43-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,556 kB
  • sloc: xml: 66,120; ansic: 36,088; sh: 4,582; python: 3,206; makefile: 1,378; javascript: 470; perl: 34
file content (32 lines) | stat: -rw-r--r-- 633 bytes parent folder | download | duplicates (15)
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
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:fo="http://www.w3.org/1999/XSL/Format"
      exclude-result-prefixes="fo">

<xsl:strip-space elements="itemlist"/>

<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="itemlist">
<table>
<tbody>
<xsl:apply-templates/>
</tbody>
</table>
</xsl:template>

<xsl:template match="item">
  <tr>
    <xsl:if test="position() mod 2 = 0">
       <xsl:attribute name="bgcolor">yellow</xsl:attribute>
    </xsl:if>
    <xsl:apply-templates/>
  </tr>
</xsl:template>
</xsl:stylesheet>