Home
Browse all 647 examples
Download all 647 examples
Download sample chapters
Reviews
Errata
Acknowledgments
Links on .NET
Paradoxal Press

Buy directly from Paradoxal Press at $33.99 (Save 43%)



Category: Programming
Level: Beginner to seasoned
900 pages
ISBN-10 097661322-0
ISBN-13 978-097661322-0
$59.99 USA
$79.99 CANADA


Listing 21-3 extracted from chapter XML


Listing 21-2<     > Listing 21-4



Example_21_3_to_rename_books.xsl
<xsl:stylesheet version="1.0"  
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match= "/bookstore" >
    <xsl:for-each select= "book[@publicationdate>1980]" >
Title: <xsl:value-of select= "title" />
Published <xsl:value-of select= "2006 - (@publicationdate)" /> years ago
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>	
Copyright Patrick Smacchia 2006 2007