The XSLT Stylesheet

The XSLT Stylesheet

Heres what that stylesheet, planetsPDF.xsl, looks like. This stylesheet takes the data in planets.xml and formats it in a PDF file, planets.pdf. In this case, Ill use a large font for text36 point:

Listing 1.8 XML to XSL-FO Transformation
 <?xml version='1.0'?>  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"      xmlns:fo="http://www.w3.org/1999/XSL/Format"      version="1.0">      <xsl:template match="PLANETS">          <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">              <fo:layout-master-set>                   <fo:simple-page-master master-name="page"                       page-height="400mm" page-width="300mm"                       margin-top="10mm" margin-bottom="10mm"                       margin-left="20mm" margin-right="20mm">                       <fo:region-body                           margin-top="0mm" margin-bottom="10mm"                           margin-left="0mm" margin-right="0mm"/>                       <fo:region-after extent="10mm"/>                   </fo:simple-page-master>               </fo:layout-master-set>               <fo:page-sequence master-name="page">                   <fo:flow flow-name="xsl-region-body">                       <xsl:apply-templates/>                   </fo:flow>               </fo:page-sequence>          </fo:root>      </xsl:template>      <xsl:template match="PLANET/NAME">          <fo:block font-weight="bold" font-size="36pt"              line-height="48pt" font-family="sans-serif">              Name:              <xsl:apply-templates/>          </fo:block>      </xsl:template>      <xsl:template match="PLANET/MASS">          <fo:block font-size="36pt" line-height="48pt"              font-family="sans-serif">              Mass (Earth = 1):              <xsl:apply-templates/>          </fo:block>      </xsl:template>      <xsl:template match="PLANET/DAY">          <fo:block font-size="36pt" line-height="48pt" font-family="sans-serif">              Day (Earth = 1):              <xsl:apply-templates/>          </fo:block>      </xsl:template>      <xsl:template match="PLANET/RADIUS">          <fo:block font-size="36pt" line-height="48pt" font-family="sans-serif">              Radius (in miles):              <xsl:apply-templates/>          </fo:block>      </xsl:template>      <xsl:template match="PLANET/DENSITY">          <fo:block font-size="36pt" line-height="48pt" font-family="sans-serif">              Density (Earth = 1):              <xsl:apply-templates/>          </fo:block>      </xsl:template>      <xsl:template match="PLANET/DISTANCE">          <fo:block font-size="36pt" line-height="48pt" font-family="sans-serif">              Distance (million miles):              <xsl:apply-templates/>          </fo:block>      </xsl:template>  </xsl:stylesheet> 


Inside XSLT
Inside Xslt
ISBN: B0031W8M4K
EAN: N/A
Year: 2005
Pages: 196

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net