This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XSL tranformation performance


Christian,
You could look in the Kay on page 99. Or here you go

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="#ss"?>
<books>
  <book>XSLT Programmers Reference</book>
</books>
<xsl:stylesheet id="ss" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
  <xsl:template match="xsl:stylesheet" />
  <xsl:template match="books">
    <xsl:value-of select="book" />
  </xsl:template>
</xsl:stylesheet>

Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]