home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / public / htdocs / xml / hello.xsl < prev    next >
Encoding:
Extensible Markup Language  |  1999-03-19  |  929 b   |  49 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- Written by Stefano Mazzocchi <stefano@apache.org> -->
  4.  
  5. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  6.  
  7.   <xsl:template match="page">
  8.    <html>
  9.     <head>
  10.      <title>
  11.       <xsl:value-of select="title"/>
  12.      </title>
  13.     </head>
  14.     <body bgcolor="#ffffff">
  15.      <xsl:apply-templates/>
  16.     </body>
  17.    </html>
  18.   </xsl:template>
  19.  
  20.   <xsl:template match="title">
  21.    <h1 align="center">
  22.     <xsl:apply-templates/>
  23.    </h1>
  24.   </xsl:template>
  25.  
  26.   <xsl:template match="content">
  27.      <xsl:apply-templates/>
  28.   </xsl:template>
  29.  
  30.   <xsl:template match="paragraph">
  31.    <p align="center">
  32.     <i>
  33.      <xsl:apply-templates/><p>
  34.      <a href="http://dehua">Home!</a>
  35.      </p>
  36.     </i>
  37.    </p>
  38.   </xsl:template>
  39.  
  40.   <xsl:template match="link_a">
  41.    <p align="center">
  42.     <b>
  43.      <xsl:apply-templates/>
  44.     </b>
  45.    </p>
  46.   </xsl:template>
  47.  
  48.  
  49. </xsl:stylesheet>