File: bernhard.xsl

package info (click to toggle)
libxml-xslt-perl 0.40-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,172 kB
  • ctags: 103
  • sloc: xml: 10,144; perl: 2,000; makefile: 34
file content (15 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:template match="SCHADSTOFFBELASTUNG">
   <BLOCKQUOTE>

   <TT><B>Belastungsgebiet(e):</B></TT>
   <xsl:apply-templates/>

   </BLOCKQUOTE>
 </xsl:template>

 <xsl:template match="BELASTUNGSGEBIET">
        <TT><xsl:value-of select="."/></TT><BR/>
 </xsl:template>
</xsl:stylesheet>