40e25873456611143ac8cd8797c145fd105220a3
[SXSI/xpathcomp.git] / tests / xpath-pt / xslt / C1.xsl
1 <?xml version="1.0"?> 
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3   <xsl:template match="/">
4     <xsl:copy-of select="site/people/person[profile/age &gt;= 18 and profile/@income &lt; 10000 and address/city != 'Dallas']/name"/>
5   </xsl:template>
6 </xsl:stylesheet>