Sascha Teifke wrote:

I am using fop with apache lenya to create pdf files.
I'm using a simple xsl-file for transforming the created
lenya xml files into pdf files:

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0"
   xmlns:fo="http://www.w3.org/1999/XSL/Format";
>
   <!-- generate PDF page structure -->
   <xsl:template match="/">
       <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>
           <fo:layout-master-set>
               <fo:simple-page-master master-name="page"
                 page-height="29.7cm"
                 page-width="21cm"
                 margin-top="1cm"
                 margin-bottom="2cm"
                 margin-left="2.5cm"
                 margin-right="2.5cm"
               >
                   <fo:region-before extent="3cm"/>
                   <fo:region-body margin-top="3cm"/>
                   <fo:region-after extent="1.5cm"/>
               </fo:simple-page-master>

               <fo:page-sequence-master master-name="all">
                   <fo:repeatable-page-master-alternatives>
                       <fo:conditional-page-master-reference
                          master-reference="page" page-position="first"/>
                   </fo:repeatable-page-master-alternatives>
               </fo:page-sequence-master>
           </fo:layout-master-set>

           <fo:page-sequence master-reference="all">
               <fo:flow flow-name="xsl-region-body">
                   <fo:block><xsl:apply-templates/></fo:block>


<xsl:apply-templates select="/html/*[local-name() != 'meta']"/>

HTH

Michi




--
Michael Wechner
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://www.wyona.com                      http://lenya.apache.org
[EMAIL PROTECTED]                        [EMAIL PROTECTED]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to