File: errors.xslt

package info (click to toggle)
darcs 2.0.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,400 kB
  • ctags: 1,048
  • sloc: haskell: 24,937; perl: 9,736; sh: 3,369; ansic: 1,913; makefile: 17; xml: 14
file content (36 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (3)
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
<?xml version="1.0" encoding="utf-8"?>

<!--
 template for converting selected content of errors.xml XML to XHTML. This
 template expects the following external variables:

   error-type     - the type of error
   stylesheet     - path to the CSS stylesheet

 the input XML must have the following structure

 <errors>
   <error type="" title="">
     ...
   </error>
 </errors>
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="error[@type = $error-type]">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
      <head>
        <title>
          <xsl:value-of select="@title"/>
        </title>
        <link rel="stylesheet" href="{$stylesheet}"/>
      </head>

      <body>
        <xsl:copy-of select="*"/>
      </body>
    </html>
  </xsl:template>

  <!-- ignore errors that don't match -->
  <xsl:template match="error"/>
</xsl:stylesheet>