[阅读: 495] 2006-10-27 08:22:23
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<xsl:template match="//TABLE">
<html><head></head><body>
<xsl:apply-templates select="DATA/ROW[Queue_Type='Local' and Host_Name='TIVE05']"/>
</body></html>
</xsl:template>
<xsl:template match="ROW">
<h1>
<xsl:value-of select="Queue_Name"/>
</h1>
</xsl:template>
</xsl:stylesheet