File: ex2_finish.xsl

package info (click to toggle)
libcgi-xmlapplication-perl 1.1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 196 kB
  • sloc: perl: 522; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"/>
    <xsl:template match="/">
        <html>
           <head><title>example 2 finish</title></head>
           <body>
               <xsl:value-of select="//message"/><br/>
           </body>
        </html>
    </xsl:template>
</xsl:stylesheet>