You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by fe...@apache.org on 2008/02/14 15:44:38 UTC

svn commit: r627761 - /forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl

Author: ferdinand
Date: Thu Feb 14 06:44:37 2008
New Revision: 627761

URL: http://svn.apache.org/viewvc?rev=627761&view=rev
Log:
Reformatted document with xmlformat and forrest configuration

Modified:
    forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl

Modified: forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl
URL: http://svn.apache.org/viewvc/forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl?rev=627761&r1=627760&r2=627761&view=diff
==============================================================================
--- forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl (original)
+++ forrest/branches/UpdateFOPto094/plugins/org.apache.forrest.plugin.output.pdf/resources/stylesheets/document-to-fo.xsl Thu Feb 14 06:44:37 2008
@@ -19,225 +19,225 @@
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:fo="http://www.w3.org/1999/XSL/Format"
     version="1.0">
-    <!-- left, justify, right -->
-    <xsl:variable
+<!-- left, justify, right -->
+  <xsl:variable
         name="text-align"
         select="string(//skinconfig/pdf/page/@text-align)" />
-    <!-- prefix which turns relative URLs into absolute ones, empty by default -->
-    <xsl:variable
+<!-- prefix which turns relative URLs into absolute ones, empty by default -->
+  <xsl:variable
         name="url-prefix"
         select="string(//skinconfig/pdf/url-prefix)" />
-    <!-- print URL of external links -->
-    <xsl:variable
+<!-- print URL of external links -->
+  <xsl:variable
         name="show-external-urls"
         select="//skinconfig/pdf/show-external-urls" />
-    <!-- disable the table of content (enabled by default) -->
-    <xsl:variable
+<!-- disable the table of content (enabled by default) -->
+  <xsl:variable
         name="disable-toc"
         select="string(//skinconfig/pdf/disable-toc)" />
-    <!-- Get the section depth to use when generating the minitoc (default is 2) -->
-    <xsl:variable
+<!-- Get the section depth to use when generating the minitoc (default is 2) -->
+  <xsl:variable
         name="toc-max-depth"
         select="number(//skinconfig/toc/@max-depth)" />
-    <!-- The page size to be used -->
-    <xsl:variable
+<!-- The page size to be used -->
+  <xsl:variable
         name="pagesize"
         select="string(//skinconfig/pdf/page/@size)" />
-    <!-- The page orientation ("portrait" or "landscape") -->
-    <xsl:variable
+<!-- The page orientation ("portrait" or "landscape") -->
+  <xsl:variable
         name="pageorientation"
         select="string(//skinconfig/pdf/page/@orientation)" />
-    <!-- Double-sided printing toggle -->
-    <xsl:variable
+<!-- Double-sided printing toggle -->
+  <xsl:variable
         name="doublesided"
         select="string(//skinconfig/pdf/margins/@double-sided)" />
-    <!-- The top page margin -->
-    <xsl:variable
+<!-- The top page margin -->
+  <xsl:variable
         name="topmargin"
         select="string(//skinconfig/pdf/margins/top)" />
-    <!-- The bottom page margin -->
-    <xsl:variable
+<!-- The bottom page margin -->
+  <xsl:variable
         name="bottommargin"
         select="string(//skinconfig/pdf/margins/bottom)" />
-    <!-- The inner page margin (always the left margin if
+<!-- The inner page margin (always the left margin if
   double-sided printing is off, alternating between left and right if
   it's on) -->
-    <xsl:variable
+  <xsl:variable
         name="innermargin"
         select="string(//skinconfig/pdf/margins/inner)" />
-    <!-- The outer page margin (always the right margin if
+<!-- The outer page margin (always the right margin if
   double-sided printing is off, alternating between right and left if
   it's on)-->
-    <xsl:variable
+  <xsl:variable
         name="outermargin"
         select="string(//skinconfig/pdf/margins/outer)" />
-    <xsl:param
+  <xsl:param
         name="numbersections"
         select="'true'" />
-    <!-- page breaks after TOC and each page if an aggregate document -->
-    <xsl:variable
+<!-- page breaks after TOC and each page if an aggregate document -->
+  <xsl:variable
         name="page-break-top-sections"
         select="'true'" />
-    <!-- page numbering format -->
-    <xsl:variable
+<!-- page numbering format -->
+  <xsl:variable
         name="page-numbering-format"
         select="string(//skinconfig/pdf/page-numbering-format)" />
-    <!-- Section depth at which we stop numbering and just indent -->
-    <xsl:param
+<!-- Section depth at which we stop numbering and just indent -->
+  <xsl:param
         name="numbering-max-depth"
         select="'3'" />
-    <xsl:param
+  <xsl:param
         name="imagesdir"
         select="." />
-    <xsl:param
+  <xsl:param
         name="xmlbasedir" />
-    <xsl:include
+  <xsl:include
         href="pdfoutline.xsl" />
-    <xsl:include
+  <xsl:include
         href="footerinfo.xsl" />
-    <!-- Determine page height for various page sizes (US Letter portrait
+<!-- Determine page height for various page sizes (US Letter portrait
   is the default) -->
-    <!-- FIXME: JJP:would this be better of a file? -->
-    <xsl:variable
+<!-- FIXME: JJP:would this be better of a file? -->
+  <xsl:variable
         name="pageheight">
-        <xsl:choose>
-            <xsl:when
+    <xsl:choose>
+      <xsl:when
                 test="$pageorientation = 'landscape'">
-                <xsl:choose>
-                    <xsl:when
+        <xsl:choose>
+          <xsl:when
                         test="$pagesize = 'a0'">841mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a1'">594mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a2'">420mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a3'">297mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a4'">210mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a5'">148mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'executive'">7.25in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'folio'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'ledger'">11in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'legal'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'letter'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'quarto'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'tabloid'">11in</xsl:when>
-                    <xsl:otherwise>8.5in</xsl:otherwise>
-                </xsl:choose>
-            </xsl:when>
-            <xsl:otherwise>
-                <xsl:choose>
-                    <xsl:when
+          <xsl:otherwise>8.5in</xsl:otherwise>
+        </xsl:choose>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:choose>
+          <xsl:when
                         test="$pagesize = 'a0'">1189mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a1'">841mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a2'">594mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a3'">420mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a4'">297mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a5'">210mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'executive'">10.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'folio'">13in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'ledger'">17in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'legal'">14in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'quarto'">10.83in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'tabloid'">17in</xsl:when>
-                    <xsl:otherwise>11in</xsl:otherwise>
-                </xsl:choose>
-            </xsl:otherwise>
+          <xsl:otherwise>11in</xsl:otherwise>
         </xsl:choose>
-    </xsl:variable>
-    <!-- Determine page width for various page sizes (US Letter portrait
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:variable>
+<!-- Determine page width for various page sizes (US Letter portrait
   is the default) -->
-    <xsl:variable
+  <xsl:variable
         name="pagewidth">
-        <xsl:choose>
-            <xsl:when
+    <xsl:choose>
+      <xsl:when
                 test="$pageorientation = 'landscape'">
-                <xsl:choose>
-                    <xsl:when
+        <xsl:choose>
+          <xsl:when
                         test="$pagesize = 'a0'">1189mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a1'">841mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a2'">594mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a3'">420mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a4'">297mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a5'">210mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'executive'">10.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'folio'">13in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'ledger'">17in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'legal'">14in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'quarto'">10.83in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'tabloid'">17in</xsl:when>
-                    <xsl:otherwise>11in</xsl:otherwise>
-                </xsl:choose>
-            </xsl:when>
-            <xsl:otherwise>
-                <xsl:choose>
-                    <xsl:when
+          <xsl:otherwise>11in</xsl:otherwise>
+        </xsl:choose>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:choose>
+          <xsl:when
                         test="$pagesize = 'a0'">841mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a1'">594mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a2'">420mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a3'">297mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a4'">210mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'a5'">148mm</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'executive'">7.25in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'folio'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'ledger'">11in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'legal'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'letter'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'quarto'">8.5in</xsl:when>
-                    <xsl:when
+          <xsl:when
                         test="$pagesize = 'tabloid'">11in</xsl:when>
-                    <xsl:otherwise>8.5in</xsl:otherwise>
-                </xsl:choose>
-            </xsl:otherwise>
+          <xsl:otherwise>8.5in</xsl:otherwise>
         </xsl:choose>
-    </xsl:variable>
-    <xsl:template
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:variable>
+  <xsl:template
         match="/">
-        <fo:root
+    <fo:root
             xmlns:fo="http://www.w3.org/1999/XSL/Format">
-            <fo:layout-master-set>
-                <fo:simple-page-master
+      <fo:layout-master-set>
+        <fo:simple-page-master
                     master-name="first-page"
                     page-height="{$pageheight}"
                     page-width="{$pagewidth}"
@@ -245,62 +245,62 @@
                     margin-bottom="{$bottommargin}"
                     margin-left="{$innermargin}"
                     margin-right="{$outermargin}">
-                    <fo:region-body
+          <fo:region-body
                         margin-top="0.5in"
                         margin-bottom=".5in" />
-                    <fo:region-after
+          <fo:region-after
                         region-name="first-footer"
                         extent=".5in"
                         display-align="before" />
-                </fo:simple-page-master>
-                <fo:simple-page-master
+        </fo:simple-page-master>
+        <fo:simple-page-master
                     master-name="even-page"
                     page-height="{$pageheight}"
                     page-width="{$pagewidth}"
                     margin-top="{$topmargin}"
                     margin-bottom="{$bottommargin}">
-                    <xsl:choose>
-                        <xsl:when
+          <xsl:choose>
+            <xsl:when
                             test="$doublesided = 'true'">
-                            <xsl:attribute
+              <xsl:attribute
                                 name="margin-left">
-                                <xsl:value-of
+                <xsl:value-of
                                     select="$outermargin" />
-                            </xsl:attribute>
-                            <xsl:attribute
+              </xsl:attribute>
+              <xsl:attribute
                                 name="margin-right">
-                                <xsl:value-of
+                <xsl:value-of
                                     select="$innermargin" />
-                            </xsl:attribute>
-                        </xsl:when>
-                        <xsl:otherwise>
-                            <xsl:attribute
+              </xsl:attribute>
+            </xsl:when>
+            <xsl:otherwise>
+              <xsl:attribute
                                 name="margin-left">
-                                <xsl:value-of
+                <xsl:value-of
                                     select="$innermargin" />
-                            </xsl:attribute>
-                            <xsl:attribute
+              </xsl:attribute>
+              <xsl:attribute
                                 name="margin-right">
-                                <xsl:value-of
+                <xsl:value-of
                                     select="$outermargin" />
-                            </xsl:attribute>
-                        </xsl:otherwise>
-                    </xsl:choose>
-                    <fo:region-body
+              </xsl:attribute>
+            </xsl:otherwise>
+          </xsl:choose>
+          <fo:region-body
                         margin-top="0.5in"
                         margin-bottom=".5in" />
-                    <fo:region-before
+          <fo:region-before
                         region-name="even-header"
                         extent="0.5in" />
-                    <!-- commented out from region-body
+<!-- commented out from region-body
                            because it is not standard conforming
                         border-bottom="0.5pt solid"  -->
-                    <fo:region-after
+          <fo:region-after
                         region-name="even-footer"
                         extent=".5in"
                         display-align="before" />
-                </fo:simple-page-master>
-                <fo:simple-page-master
+        </fo:simple-page-master>
+        <fo:simple-page-master
                     master-name="odd-page"
                     page-height="{$pageheight}"
                     page-width="{$pagewidth}"
@@ -308,151 +308,151 @@
                     margin-bottom="{$bottommargin}"
                     margin-left="{$innermargin}"
                     margin-right="{$outermargin}">
-                    <fo:region-body
+          <fo:region-body
                         margin-top="0.5in"
                         margin-bottom=".5in" />
-                    <fo:region-before
+          <fo:region-before
                         region-name="odd-header"
                         extent="0.5in" />
-                    <!-- commented out from region-body
+<!-- commented out from region-body
                         because it is not standard conforming
                         border-bottom="0.5pt solid"  -->
-                    <fo:region-after
+          <fo:region-after
                         region-name="odd-footer"
                         extent=".5in"
                         display-align="before" />
-                </fo:simple-page-master>
-                <fo:page-sequence-master
+        </fo:simple-page-master>
+        <fo:page-sequence-master
                     master-name="book">
-                    <fo:repeatable-page-master-alternatives>
-                        <fo:conditional-page-master-reference
+          <fo:repeatable-page-master-alternatives>
+            <fo:conditional-page-master-reference
                             page-position="first"
                             master-reference="first-page" />
-                        <fo:conditional-page-master-reference
+            <fo:conditional-page-master-reference
                             odd-or-even="odd"
                             master-reference="odd-page" />
-                        <fo:conditional-page-master-reference
+            <fo:conditional-page-master-reference
                             odd-or-even="even"
                             master-reference="even-page" />
-                    </fo:repeatable-page-master-alternatives>
-                </fo:page-sequence-master>
-            </fo:layout-master-set>
-            <xsl:apply-templates
+          </fo:repeatable-page-master-alternatives>
+        </fo:page-sequence-master>
+      </fo:layout-master-set>
+      <xsl:apply-templates
                 select="/site/document"
                 mode="outline" />
-            <fo:page-sequence
+      <fo:page-sequence
                 master-reference="book">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="/site/document" />
-            </fo:page-sequence>
-        </fo:root>
-    </xsl:template>
-    <xsl:template
+      </fo:page-sequence>
+    </fo:root>
+  </xsl:template>
+  <xsl:template
         match="document">
-        <fo:title>
-            <xsl:value-of
+    <fo:title>
+      <xsl:value-of
                 select="header/title" />
-        </fo:title>
-        <fo:static-content
+    </fo:title>
+    <fo:static-content
             flow-name="first-footer">
-            <fo:block
+      <fo:block
                 border-top="0.25pt solid"
                 padding-before="6pt"
                 text-align="center">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="footer" />
-            </fo:block>
-            <!-- don't list page number on first page if its content is just the TOC -->
-            <xsl:if
+      </fo:block>
+<!-- don't list page number on first page if its content is just the TOC -->
+      <xsl:if
                 test="$disable-toc = 'true' or not($toc-max-depth > 0 and $page-break-top-sections)">
-                <xsl:call-template
+        <xsl:call-template
                     name="insertPageNumber">
-                    <xsl:with-param
+          <xsl:with-param
                         name="text-align">start</xsl:with-param>
-                </xsl:call-template>
-            </xsl:if>
-            <xsl:call-template
+        </xsl:call-template>
+      </xsl:if>
+      <xsl:call-template
                 name="info" />
-        </fo:static-content>
-        <fo:static-content
+    </fo:static-content>
+    <fo:static-content
             flow-name="even-header">
-            <fo:block
+      <fo:block
                 font-size="70%"
                 text-align="end"
                 font-style="italic">
-                <xsl:value-of
+        <xsl:value-of
                     select="header/title" />
-            </fo:block>
-        </fo:static-content>
-        <fo:static-content
+      </fo:block>
+    </fo:static-content>
+    <fo:static-content
             flow-name="even-footer">
-            <fo:block
+      <fo:block
                 border-top="0.25pt solid"
                 padding-before="6pt"
                 text-align="center">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="footer" />
-            </fo:block>
-            <xsl:call-template
+      </fo:block>
+      <xsl:call-template
                 name="insertPageNumber">
-                <xsl:with-param
+        <xsl:with-param
                     name="text-align">end</xsl:with-param>
-            </xsl:call-template>
-            <xsl:call-template
+      </xsl:call-template>
+      <xsl:call-template
                 name="info" />
-        </fo:static-content>
-        <fo:static-content
+    </fo:static-content>
+    <fo:static-content
             flow-name="odd-header">
-            <fo:block
+      <fo:block
                 font-size="70%"
                 text-align="start"
                 font-style="italic">
-                <xsl:value-of
+        <xsl:value-of
                     select="header/title" />
-            </fo:block>
-        </fo:static-content>
-        <fo:static-content
+      </fo:block>
+    </fo:static-content>
+    <fo:static-content
             flow-name="odd-footer">
-            <fo:block
+      <fo:block
                 border-top="0.25pt solid"
                 padding-before="6pt"
                 text-align="center">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="footer" />
-            </fo:block>
-            <xsl:call-template
+      </fo:block>
+      <xsl:call-template
                 name="insertPageNumber">
-                <xsl:with-param
+        <xsl:with-param
                     name="text-align">start</xsl:with-param>
-            </xsl:call-template>
-            <xsl:call-template
+      </xsl:call-template>
+      <xsl:call-template
                 name="info" />
-        </fo:static-content>
-        <fo:flow
+    </fo:static-content>
+    <fo:flow
             flow-name="xsl-region-body">
-            <fo:block
+      <fo:block
                 padding-before="24pt"
                 padding-after="24pt"
                 font-size="24pt"
                 font-weight="bold"
                 id="{generate-id()}">
-                <xsl:value-of
+        <xsl:value-of
                     select="header/title" />
-            </fo:block>
-            <fo:block
+      </fo:block>
+      <fo:block
                 text-align="{$text-align}"
                 padding-before="18pt"
                 padding-after="18pt">
-                <xsl:apply-templates />
-            </fo:block>
-            <!-- Total number of pages calculation... -->
-            <fo:block
+        <xsl:apply-templates />
+      </fo:block>
+<!-- Total number of pages calculation... -->
+      <fo:block
                 id="term" />
-        </fo:flow>
-    </xsl:template>
-    <xsl:template
+    </fo:flow>
+  </xsl:template>
+  <xsl:template
         match="abstract">
-        <fo:block
+    <fo:block
             font-size="12pt"
             text-align="center"
             space-before="20pt"
@@ -460,14 +460,14 @@
             width="7.5in"
             font-family="serif"
             font-style="italic">
-            <xsl:call-template
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="notice">
-        <fo:block
+    <fo:block
             font-size="10pt"
             text-align="left"
             space-before="20pt"
@@ -477,185 +477,183 @@
             border-bottom="0.25pt solid"
             padding-before="6pt"
             padding-after="6pt">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <!-- insert i18n stuff here --> NOTICE: <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+<!-- insert i18n stuff here --> NOTICE: <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="anchor">
-        <fo:block>
-        <xsl:copy-of select="@id"/>
-        </fo:block>
-        <xsl:apply-templates />
-    </xsl:template>
-    
-    <xsl:template
+    <fo:block>
+      <xsl:copy-of select="@id"/>
+    </fo:block>
+    <xsl:apply-templates />
+  </xsl:template>
+  <xsl:template
         match="section">
-        <xsl:param
+    <xsl:param
             name="level">0</xsl:param>
-        <xsl:variable
+    <xsl:variable
             name="size">
-            <xsl:value-of
+      <xsl:value-of
                 select="12-number($level)" />
-        </xsl:variable>
-        <xsl:variable
+    </xsl:variable>
+    <xsl:variable
             name="background-color"
             select="//skinconfig/colors/color[@name='body']/@value" />
-        <xsl:variable
+    <xsl:variable
             name="heading-color"
             select="//skinconfig/colors/color[@name='subheading']/@value" />
-        <xsl:variable
+    <xsl:variable
             name="heading-type"
             select="//skinconfig/headings/@type" />
-        <fo:block
+    <fo:block
             font-family="sans-serif"
             font-size="{$size}pt"
             font-weight="bold"
             space-before="12pt"
             space-after="8pt"
             margin="0">
-            <xsl:call-template
+      <xsl:call-template
             name="insertPageBreaks" />
-            <xsl:attribute
+      <xsl:attribute
                 name="id">
-                <xsl:choose>
-                    <xsl:when
+        <xsl:choose>
+          <xsl:when
                         test="normalize-space(@id)!=''">
-                        <xsl:value-of
+            <xsl:value-of
                             select="@id" />
-                    </xsl:when>
-                    <xsl:otherwise>
-                        <xsl:value-of
+          </xsl:when>
+          <xsl:otherwise>
+            <xsl:value-of
                             select="generate-id()" />
-                    </xsl:otherwise>
-                </xsl:choose>
-            </xsl:attribute>
-            <xsl:if
+          </xsl:otherwise>
+        </xsl:choose>
+      </xsl:attribute>
+      <xsl:if
                 test="$heading-type = 'boxed'">
-                <xsl:attribute
+        <xsl:attribute
                     name="background-color">
-                    <xsl:value-of
+          <xsl:value-of
                         select="$heading-color" />
-                </xsl:attribute>
-                <xsl:attribute
+        </xsl:attribute>
+        <xsl:attribute
                     name="padding-left">3pt</xsl:attribute>
-                <xsl:attribute
+        <xsl:attribute
                     name="padding-top">4pt</xsl:attribute>
-            </xsl:if>
-            <xsl:if
+      </xsl:if>
+      <xsl:if
                 test="$heading-type = 'underlined'">
-                <xsl:attribute
+        <xsl:attribute
                     name="border-bottom-style">solid</xsl:attribute>
-                <xsl:attribute
-                    name="border-bottom-width"><xsl:value-of select="2+(2-number($level))*2"/>pt</xsl:attribute>
-                <xsl:attribute
-                    name="border-bottom-color"><xsl:value-of select="$heading-color"/>
-                </xsl:attribute>
-            </xsl:if>
-            
-            <xsl:if
+        <xsl:attribute
+                    name="border-bottom-width">
+          <xsl:value-of select="2+(2-number($level))*2"/>pt</xsl:attribute>
+        <xsl:attribute
+                    name="border-bottom-color">
+          <xsl:value-of select="$heading-color"/>
+        </xsl:attribute>
+      </xsl:if>
+      <xsl:if
                 test="$numbersections = 'true' and number($level) &lt; $numbering-max-depth+1">
-                <xsl:number
+        <xsl:number
                     format="1.1.1.1.1.1.1"
                     count="section"
                     level="multiple" />
-                <xsl:text>. </xsl:text>
-            </xsl:if>
-            <!-- For sections 4  or more nestings deep, indent instead of number -->
-            <xsl:if
+<xsl:text>. </xsl:text>
+      </xsl:if>
+<!-- For sections 4  or more nestings deep, indent instead of number -->
+      <xsl:if
                 test="number($level) &gt; $numbering-max-depth+1">
-                <xsl:attribute
+        <xsl:attribute
                     name="start-indent">
-                    <xsl:value-of
+          <xsl:value-of
                         select="4+number($level)" />
-                    <xsl:text>pt</xsl:text>
-                </xsl:attribute>
-            </xsl:if>
-            <xsl:value-of
+<xsl:text>pt</xsl:text>
+        </xsl:attribute>
+      </xsl:if>
+      <xsl:value-of
                 select="title" />
-        </fo:block>
-        
-        <fo:block
+    </fo:block>
+    <fo:block
             background-color="{$background-color}">
-            <xsl:apply-templates>
-                <xsl:with-param
+      <xsl:apply-templates>
+        <xsl:with-param
                     name="level"
                     select="number($level)+1" />
-            </xsl:apply-templates>
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      </xsl:apply-templates>
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="title">
-        <!-- do nothing as titles are handled in their parent templates -->
-    </xsl:template>
-    <xsl:template
+<!-- do nothing as titles are handled in their parent templates -->
+  </xsl:template>
+  <xsl:template
         match="subtitle">
-        <xsl:param
+    <xsl:param
             name="level">0</xsl:param>
-        <xsl:variable
+    <xsl:variable
             name="size"
             select="16-(number($level)*1.5)" />
-        <fo:block
+    <fo:block
             font-weight="bold"
             font-size="{$size}pt">
-            <xsl:call-template
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="authors">
-        <fo:block
+    <fo:block
             space-before="20pt"
             font-weight="bold"
             font-size="9pt">
-            <xsl:call-template
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <!-- insert i18n stuff here --> by <xsl:for-each
+<!-- insert i18n stuff here --> by <xsl:for-each
                 select="person">
-                <xsl:value-of
+        <xsl:value-of
                     select="@name" />
-                <xsl:if
+        <xsl:if
                     test="not(position() = last())">, </xsl:if>
-            </xsl:for-each>
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      </xsl:for-each>
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="p">
-        <xsl:choose>
-            <xsl:when
+    <xsl:choose>
+      <xsl:when
                 test="ancestor::li and not(preceding-sibling::*)">
-                <fo:block
+        <fo:block
                     space-after="4pt"
                     font-family="serif">
-                    <xsl:copy-of select="@id"/>
-                    <xsl:call-template
+          <xsl:copy-of select="@id"/>
+          <xsl:call-template
                         name="insertPageBreaks" />
-                    <xsl:apply-templates />
-                </fo:block>
-            </xsl:when>
-            
-            <xsl:otherwise>
-                <fo:block
+          <xsl:apply-templates />
+        </fo:block>
+      </xsl:when>
+      <xsl:otherwise>
+        <fo:block
                     space-before="4pt"
                     space-after="4pt"
                     font-family="serif">
-                    <xsl:copy-of select="@id"/>
-                    <xsl:call-template
+          <xsl:copy-of select="@id"/>
+          <xsl:call-template
                         name="insertPageBreaks" />
-                    <xsl:apply-templates />
-                </fo:block>
-            </xsl:otherwise>
-        </xsl:choose>
-    </xsl:template>
-    <xsl:template
+          <xsl:apply-templates />
+        </fo:block>
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:template>
+  <xsl:template
         match="source">
-        <xsl:variable
+    <xsl:variable
             name="color"
             select="//skinconfig/colors/color[@name='code']/@value" />
-        <fo:block
+    <fo:block
             font-family="monospace"
             font-size="8pt"
             padding="6pt"
@@ -666,162 +664,162 @@
             white-space-treatment="preserve"
             wrap-option="wrap"
             text-align="start">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="ol|ul">
-        <fo:list-block
+    <fo:list-block
             provisional-distance-between-starts="18pt"
             provisional-label-separation="3pt"
             text-align="start">
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:list-block>
-    </xsl:template>
-    <xsl:template
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:list-block>
+  </xsl:template>
+  <xsl:template
         match="ol/li">
-        <fo:list-item>
-            <xsl:copy-of select="@id"/>
-            <xsl:if
+    <fo:list-item>
+      <xsl:copy-of select="@id"/>
+      <xsl:if
                 test="not(following-sibling::li[1])">
-                <xsl:attribute
+        <xsl:attribute
                     name="space-after">6pt</xsl:attribute>
-            </xsl:if>
-            <fo:list-item-label
+      </xsl:if>
+      <fo:list-item-label
                 end-indent="label-end()"
                 font-size="9">
-                <fo:block>
-                    <xsl:number
+        <fo:block>
+          <xsl:number
                         format="1." />
-                </fo:block>
-            </fo:list-item-label>
-            <fo:list-item-body
+        </fo:block>
+      </fo:list-item-label>
+      <fo:list-item-body
                 start-indent="body-start()">
-                <fo:block
+        <fo:block
                     font-family="serif">
-                    <xsl:apply-templates />
-                </fo:block>
-            </fo:list-item-body>
-        </fo:list-item>
-    </xsl:template>
-    <!-- Emulate browser handling of these invalid combinations that our DTD
+          <xsl:apply-templates />
+        </fo:block>
+      </fo:list-item-body>
+    </fo:list-item>
+  </xsl:template>
+<!-- Emulate browser handling of these invalid combinations that our DTD
   unfortunately allows -->
-    <xsl:template
+  <xsl:template
         match="ul/ul | ul/ol | ol/ul | ol/ol">
-        <fo:list-item>
-            <xsl:copy-of select="@id"/>
-            <fo:list-item-label
+    <fo:list-item>
+      <xsl:copy-of select="@id"/>
+      <fo:list-item-label
                 end-indent="label-end()">
-                <fo:block />
-            </fo:list-item-label>
-            <fo:list-item-body
+        <fo:block />
+      </fo:list-item-label>
+      <fo:list-item-body
                 start-indent="body-start()">
-                <fo:block
+        <fo:block
                     font-family="serif">
-                    <xsl:apply-templates />
-                </fo:block>
-            </fo:list-item-body>
-        </fo:list-item>
-    </xsl:template>
-    <xsl:template
+          <xsl:apply-templates />
+        </fo:block>
+      </fo:list-item-body>
+    </fo:list-item>
+  </xsl:template>
+  <xsl:template
         match="ul/li">
-        <fo:list-item>
-            <xsl:copy-of select="@id"/>
-            <xsl:if
+    <fo:list-item>
+      <xsl:copy-of select="@id"/>
+      <xsl:if
                 test="not(following-sibling::li[1])">
-                <xsl:attribute
+        <xsl:attribute
                     name="space-after">6pt</xsl:attribute>
-            </xsl:if>
-            <fo:list-item-label
+      </xsl:if>
+      <fo:list-item-label
                 end-indent="label-end()">
-                <fo:block>&#x2022;</fo:block>
-            </fo:list-item-label>
-            <fo:list-item-body
+        <fo:block>&#x2022;</fo:block>
+      </fo:list-item-label>
+      <fo:list-item-body
                 start-indent="body-start()">
-                <fo:block
+        <fo:block
                     font-family="serif">
-                    <xsl:apply-templates />
-                </fo:block>
-            </fo:list-item-body>
-        </fo:list-item>
-    </xsl:template>
-    <xsl:template
+          <xsl:apply-templates />
+        </fo:block>
+      </fo:list-item-body>
+    </fo:list-item>
+  </xsl:template>
+  <xsl:template
         match="dl">
-        <fo:list-block
+    <fo:list-block
             provisional-distance-between-starts="18pt"
             provisional-label-separation="3pt"
             text-align="start">
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:list-block>
-    </xsl:template>
-    <xsl:template
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:list-block>
+  </xsl:template>
+  <xsl:template
         match="dt">
-        <fo:list-item>
-            <xsl:copy-of select="@id"/>
-            <fo:list-item-label
+    <fo:list-item>
+      <xsl:copy-of select="@id"/>
+      <fo:list-item-label
                 end-indent="label-end()">
-                <fo:block />
-            </fo:list-item-label>
-            <fo:list-item-body
+        <fo:block />
+      </fo:list-item-label>
+      <fo:list-item-body
                 start-indent="body-start()">
-                <fo:block
+        <fo:block
                     font-weight="bold">
-                    <xsl:apply-templates />
-                </fo:block>
-            </fo:list-item-body>
-        </fo:list-item>
-    </xsl:template>
-    <xsl:template
+          <xsl:apply-templates />
+        </fo:block>
+      </fo:list-item-body>
+    </fo:list-item>
+  </xsl:template>
+  <xsl:template
         match="dd">
-        <fo:list-item>
-            <xsl:copy-of select="@id"/>
-            <fo:list-item-label
+    <fo:list-item>
+      <xsl:copy-of select="@id"/>
+      <fo:list-item-label
                 end-indent="label-end()">
-                <fo:block />
-            </fo:list-item-label>
-            <fo:list-item-body
+        <fo:block />
+      </fo:list-item-label>
+      <fo:list-item-body
                 start-indent="body-start()">
-                <fo:block>
-                    <xsl:apply-templates />
-                </fo:block>
-            </fo:list-item-body>
-        </fo:list-item>
-    </xsl:template>
-    <xsl:template
+        <fo:block>
+          <xsl:apply-templates />
+        </fo:block>
+      </fo:list-item-body>
+    </fo:list-item>
+  </xsl:template>
+  <xsl:template
         match="strong">
-        <fo:inline
+    <fo:inline
             font-weight="bold">
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:inline>
-    </xsl:template>
-    <xsl:template
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:inline>
+  </xsl:template>
+  <xsl:template
         match="em">
-        <fo:inline
+    <fo:inline
             font-style="italic">
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:inline>
-    </xsl:template>
-    <xsl:template
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:inline>
+  </xsl:template>
+  <xsl:template
         match="code">
-        <fo:inline
+    <fo:inline
             font-family="monospace">
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:inline>
-    </xsl:template>
-    <xsl:template
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:inline>
+  </xsl:template>
+  <xsl:template
         match="warning">
-        <xsl:variable
+    <xsl:variable
             name="color"
             select="//skinconfig/colors/color[@name='warning']/@value" />
-        <fo:block
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             padding-left="3pt"
@@ -836,21 +834,21 @@
             border-color="{$color}"
             background-color="{$color}"
             color="#ffffff">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:choose>
-                <xsl:when
+      <xsl:choose>
+        <xsl:when
                     test="@label">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@label" />
-                </xsl:when>
-                <xsl:otherwise>Warning: </xsl:otherwise>
-            </xsl:choose>
-            <xsl:value-of
+        </xsl:when>
+        <xsl:otherwise>Warning: </xsl:otherwise>
+      </xsl:choose>
+      <xsl:value-of
                 select="title" />
-        </fo:block>
-        <fo:block
+    </fo:block>
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             font-family="serif"
@@ -865,15 +863,15 @@
             padding-before="3pt"
             padding-after="3pt"
             space-after="10pt">
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="note">
-        <xsl:variable
+    <xsl:variable
             name="color"
             select="//skinconfig/colors/color[@name='note']/@value" />
-        <fo:block
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             padding-left="3pt"
@@ -888,22 +886,22 @@
             border-end-style="solid"
             border-color="{$color}"
             background-color="{$color}">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:choose>
-                <xsl:when
+      <xsl:choose>
+        <xsl:when
                     test="@label">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@label" />
-                </xsl:when>
-                <!-- insert i18n stuff here -->
-                <xsl:otherwise>Note: </xsl:otherwise>
-            </xsl:choose>
-            <xsl:value-of
+        </xsl:when>
+<!-- insert i18n stuff here -->
+        <xsl:otherwise>Note: </xsl:otherwise>
+      </xsl:choose>
+      <xsl:value-of
                 select="title" />
-        </fo:block>
-        <fo:block
+    </fo:block>
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             font-family="serif"
@@ -918,15 +916,15 @@
             padding-end="3pt"
             padding-before="3pt"
             padding-after="3pt">
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="fixme">
-        <xsl:variable
+    <xsl:variable
             name="color"
             select="//skinconfig/colors/color[@name='fixme']/@value" />
-        <fo:block
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             padding-left="3pt"
@@ -941,14 +939,14 @@
             border-end-style="solid"
             border-color="{$color}"
             background-color="{$color}">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <!-- insert i18n stuff here --> FIXME (<xsl:value-of
+<!-- insert i18n stuff here --> FIXME (<xsl:value-of
                 select="@author" />): <xsl:value-of
                 select="title" />
-        </fo:block>
-        <fo:block
+    </fo:block>
+    <fo:block
             margin-left="0.25in"
             margin-right="0.25in"
             font-family="serif"
@@ -963,259 +961,257 @@
             padding-end="3pt"
             padding-before="3pt"
             padding-after="3pt">
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="link|fork|jump">
-        <xsl:variable
+    <xsl:variable
             name="color"
             select="//skinconfig/colors/color[@name = 'body']/@link" />
-        <xsl:choose>
-            <xsl:when
+    <xsl:choose>
+      <xsl:when
                 test="starts-with(@href, '#')">
-                <fo:basic-link
+        <fo:basic-link
                     color="{$color}"
                     text-decoration="underline"
                     internal-destination="{substring(@href,2)}">
-                    <xsl:copy-of select="@id"/>
-                    <xsl:apply-templates />
-                </fo:basic-link>
-            </xsl:when>
-            <xsl:otherwise>
-                <!-- Make relative URLs absolute -->
-                <xsl:variable
+          <xsl:copy-of select="@id"/>
+          <xsl:apply-templates />
+        </fo:basic-link>
+      </xsl:when>
+      <xsl:otherwise>
+<!-- Make relative URLs absolute -->
+        <xsl:variable
                     name="href">
-                    <xsl:choose>
-                        <!-- already absolute -->
-                        <xsl:when
+          <xsl:choose>
+<!-- already absolute -->
+            <xsl:when
                             test="contains(@href,'://')">
-                            <xsl:value-of
+              <xsl:value-of
                                 select="@href" />
-                        </xsl:when>
-                        <!-- add prefix if one is set -->
-                        <xsl:when
+            </xsl:when>
+<!-- add prefix if one is set -->
+            <xsl:when
                             test="$url-prefix != ''">
-                            <xsl:value-of
+              <xsl:value-of
                                 select="concat($url-prefix,@href)" />
-                        </xsl:when>
-                        <!-- keep as is -->
-                        <xsl:otherwise>
-                            <xsl:value-of
+            </xsl:when>
+<!-- keep as is -->
+            <xsl:otherwise>
+              <xsl:value-of
                                 select="@href" />
-                        </xsl:otherwise>
-                    </xsl:choose>
-                </xsl:variable>
-                <fo:basic-link
+            </xsl:otherwise>
+          </xsl:choose>
+        </xsl:variable>
+        <fo:basic-link
                     color="{$color}"
                     text-decoration="underline"
                     external-destination="{$href}">
-                    <xsl:copy-of select="@id"/>
-                    <xsl:apply-templates />
-                </fo:basic-link>
-                <xsl:if
+          <xsl:copy-of select="@id"/>
+          <xsl:apply-templates />
+        </fo:basic-link>
+        <xsl:if
                     test="$show-external-urls = 'true' and @href != string(.)"> (<xsl:value-of
                         select="$href" />) </xsl:if>
-            </xsl:otherwise>
-        </xsl:choose>
-    </xsl:template>
-    <xsl:template
+      </xsl:otherwise>
+    </xsl:choose>
+  </xsl:template>
+  <xsl:template
         match="figure|img">
-        <fo:block
+    <fo:block
             text-align="center">
-            
-            <xsl:call-template
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:copy-of select="@id"/>
-            <!-- Make relative paths absolute -->
-            <xsl:variable
+      <xsl:copy-of select="@id"/>
+<!-- Make relative paths absolute -->
+      <xsl:variable
                 name="imgpath">
-                <xsl:choose>
-                    <!-- resources image dir -->
-                    <xsl:when
+        <xsl:choose>
+<!-- resources image dir -->
+          <xsl:when
                         test="starts-with(string(@src),'images/')">
-                        <xsl:value-of
+            <xsl:value-of
                             select="concat($imagesdir,substring-after(@src,'images'))" />
-                    </xsl:when>
-                    <xsl:when
+          </xsl:when>
+          <xsl:when
                         test="contains(string(@src),'/images/')">
-                        <xsl:value-of
+            <xsl:value-of
                             select="concat($imagesdir,substring-after(@src,'/images'))" />
-                    </xsl:when>
-                    <!-- already absolute -->
-                    <xsl:when
+          </xsl:when>
+<!-- already absolute -->
+          <xsl:when
                         test="contains(string(@src),':') or starts-with(string(@src),'/')">
-                        <xsl:value-of
+            <xsl:value-of
                             select="@src" />
-                    </xsl:when>
-                    <!-- relative to document -->
-                    <xsl:otherwise>
-                        <xsl:value-of
+          </xsl:when>
+<!-- relative to document -->
+          <xsl:otherwise>
+            <xsl:value-of
                             select="concat($xmlbasedir,@src)" />
-                    </xsl:otherwise>
-                </xsl:choose>
-            </xsl:variable>
-            <fo:external-graphic
+          </xsl:otherwise>
+        </xsl:choose>
+      </xsl:variable>
+      <fo:external-graphic
                 src="{$imgpath}">
-                <xsl:if
+        <xsl:if
                     test="@height">
-
-                    <xsl:attribute
+          <xsl:attribute
                         name="height">
-                        <xsl:value-of
+            <xsl:value-of
                             select="@height" />
-                    </xsl:attribute>
-                    <xsl:attribute
+          </xsl:attribute>
+          <xsl:attribute
                         name="content-height">scale-to-fit</xsl:attribute>
-                </xsl:if>
-                <xsl:if
+        </xsl:if>
+        <xsl:if
                     test="@width">
-                    <xsl:attribute
+          <xsl:attribute
                         name="width">
-                        <xsl:value-of
+            <xsl:value-of
                             select="@width" />
-                    </xsl:attribute>
-                    <xsl:attribute
+          </xsl:attribute>
+          <xsl:attribute
                         name="content-width">scale-to-fit</xsl:attribute>
-                </xsl:if>
-                <!-- Work around for fop094 not supporting 
+        </xsl:if>
+<!-- Work around for fop094 not supporting 
                 scale-down-to-fit, to be replaces as soon as fop095 is released
                 -->
-                <xsl:if
+        <xsl:if
                     test=" not((@width|@height))">
-                    <xsl:attribute
+          <xsl:attribute
                         name="width">100%</xsl:attribute>
-                    <xsl:attribute
+          <xsl:attribute
                         name="content-width">scale-to-fit</xsl:attribute>
-                    <xsl:attribute
+          <xsl:attribute
                         name="content-height">100%</xsl:attribute>
-                </xsl:if>
-            </fo:external-graphic>
-            <!-- alt text -->
-            <xsl:if
+        </xsl:if>
+      </fo:external-graphic>
+<!-- alt text -->
+      <xsl:if
                 test="//skinconfig/pdf/show-image-alt-text='true'">
-                <xsl:if
+        <xsl:if
                     test="normalize-space(@alt)!=''">
-                    <fo:block>
-                        <xsl:value-of
+          <fo:block>
+            <xsl:value-of
                             select="@alt" />
-                    </fo:block>
-                </xsl:if>
-            </xsl:if>
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+          </fo:block>
+        </xsl:if>
+      </xsl:if>
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="table">
-        <!-- FIXME: Apache FOP must have column widths specified at present,
+<!-- FIXME: Apache FOP must have column widths specified at present,
          this section can be removed when this limitation is removed from Fop.
          Unfortunately, this means that each column is a fixed width,
          but at least the table displays! -->
-        <xsl:variable
+    <xsl:variable
             name="max-number-columns-td">
-            <xsl:for-each
+      <xsl:for-each
                 select="tr">
-                <xsl:sort
+        <xsl:sort
                     select="count(td|th)"
                     data-type="number"
                     order="descending" />
-                <xsl:if
+        <xsl:if
                     test="position() = 1">
-                    <xsl:value-of
+          <xsl:value-of
                         select="count(td|th)" />
-                </xsl:if>
-            </xsl:for-each>
-        </xsl:variable>
-        <xsl:variable
+        </xsl:if>
+      </xsl:for-each>
+    </xsl:variable>
+    <xsl:variable
             name="max-number-columns-colspan">
-            <xsl:for-each
+      <xsl:for-each
                 select="tr">
-                <xsl:sort
+        <xsl:sort
                     select="count(td|th)"
                     data-type="number"
                     order="descending" />
-                <xsl:if
+        <xsl:if
                     test="position() = 1">
-                    <xsl:value-of
+          <xsl:value-of
                         select="sum(td/@colspan|th/@colspan)" />
-                </xsl:if>
-            </xsl:for-each>
-        </xsl:variable>
-        <xsl:variable
+        </xsl:if>
+      </xsl:for-each>
+    </xsl:variable>
+    <xsl:variable
             name="max-number-columns">
-            <xsl:choose>
-                <xsl:when
+      <xsl:choose>
+        <xsl:when
                     test="$max-number-columns-colspan&gt;$max-number-columns-td">
-                    <xsl:value-of
+          <xsl:value-of
                         select="$max-number-columns-colspan" />
-                </xsl:when>
-                <xsl:otherwise>
-                    <xsl:value-of
+        </xsl:when>
+        <xsl:otherwise>
+          <xsl:value-of
                         select="$max-number-columns-td" />
-                </xsl:otherwise>
-            </xsl:choose>
-        </xsl:variable>
-        <xsl:variable
+        </xsl:otherwise>
+      </xsl:choose>
+    </xsl:variable>
+    <xsl:variable
             name="column-width">
-            <xsl:value-of
+      <xsl:value-of
                 select="6.25 div number($max-number-columns)" />in </xsl:variable>
-        <fo:table table-layout="fixed" width="100%">
-            <xsl:copy-of select="@id"/>
-            <fo:table-column>
-                <xsl:attribute
+    <fo:table table-layout="fixed" width="100%">
+      <xsl:copy-of select="@id"/>
+      <fo:table-column>
+        <xsl:attribute
                     name="column-width">
-                    <xsl:value-of
+          <xsl:value-of
                         select="$column-width" />
-                </xsl:attribute>
-                <xsl:attribute
+        </xsl:attribute>
+        <xsl:attribute
                     name="number-columns-repeated">
-                    <xsl:value-of
+          <xsl:value-of
                         select="number($max-number-columns)" />
-                </xsl:attribute>
-            </fo:table-column>
-            <!-- End of hack for Fop support (if removing this hack, remember
+        </xsl:attribute>
+      </fo:table-column>
+<!-- End of hack for Fop support (if removing this hack, remember
            you need the <fo:table> element) -->
-            <fo:table-body
+      <fo:table-body
                 font-size="10pt"
                 font-family="serif">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="tr" />
-            </fo:table-body>
-        </fo:table>
-        <!-- FIXME: Apache Fop does not support the caption element yet.
+      </fo:table-body>
+    </fo:table>
+<!-- FIXME: Apache Fop does not support the caption element yet.
          This hack will display the table caption accordingly. -->
-        <xsl:if
+    <xsl:if
             test="caption">
-            <fo:block
+      <fo:block
                 font-size="10pt"
                 text-align="left"
                 font-weight="normal"
                 margin-top="5pt">
-                <!-- insert i18n stuff here --> Table <xsl:text> </xsl:text>
-                <xsl:number
+<!-- insert i18n stuff here --> Table <xsl:text> </xsl:text>
+        <xsl:number
                     count="table"
                     level="multiple" />
-                <xsl:text>: </xsl:text>
-                <xsl:value-of
+<xsl:text>: </xsl:text>
+        <xsl:value-of
                     select="caption" />
-            </fo:block>
-        </xsl:if>
-    </xsl:template>
-    <xsl:template
+      </fo:block>
+    </xsl:if>
+  </xsl:template>
+  <xsl:template
         match="tr">
-        <fo:table-row>
-            <xsl:copy-of select="@id"/>
-            <xsl:apply-templates />
-        </fo:table-row>
-    </xsl:template>
-    <xsl:template
+    <fo:table-row>
+      <xsl:copy-of select="@id"/>
+      <xsl:apply-templates />
+    </fo:table-row>
+  </xsl:template>
+  <xsl:template
         match="th">
-        <xsl:variable
+    <xsl:variable
             name="border-color"
             select="//skinconfig/colors/color[@name = 'table']/@value" />
-        <xsl:variable
+    <xsl:variable
             name="background-color"
             select="$border-color" />
-        <fo:table-cell
+    <fo:table-cell
             padding-before="4pt"
             padding-after="4pt"
             padding-start="4pt"
@@ -1223,84 +1219,84 @@
             color="#FFFFFF"
             background-color="{$background-color}"
             border="1pt solid {$border-color}">
-            <xsl:copy-of select="@id"/>
-            <xsl:if
+      <xsl:copy-of select="@id"/>
+      <xsl:if
                 test="@colspan!=''">
-                <xsl:attribute
+        <xsl:attribute
                     name="number-columns-spanned">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@colspan" />
-                </xsl:attribute>
-            </xsl:if>
-            <xsl:if
+        </xsl:attribute>
+      </xsl:if>
+      <xsl:if
                 test="@rowspan!=''">
-                <xsl:attribute
+        <xsl:attribute
                     name="number-rows-spanned">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@rowspan" />
-                </xsl:attribute>
-            </xsl:if>
-            <fo:block
+        </xsl:attribute>
+      </xsl:if>
+      <fo:block
                 text-align="center">
-                <xsl:apply-templates />
-            </fo:block>
-        </fo:table-cell>
-    </xsl:template>
-    <xsl:template
+        <xsl:apply-templates />
+      </fo:block>
+    </fo:table-cell>
+  </xsl:template>
+  <xsl:template
         match="td">
-        <xsl:variable
+    <xsl:variable
             name="border-color"
             select="//skinconfig/colors/color[@name = 'table']/@value" />
-        <xsl:variable
+    <xsl:variable
             name="background-color"
             select="//skinconfig/colors/color[@name = 'table-cell']/@value" />
-        <fo:table-cell
+    <fo:table-cell
             padding-before="4pt"
             padding-after="4pt"
             padding-start="4pt"
             padding-end="4pt"
             background-color="{$background-color}"
             border="1pt solid {$border-color}">
-            <xsl:copy-of select="@id"/>
-            <xsl:if
+      <xsl:copy-of select="@id"/>
+      <xsl:if
                 test="@colspan!=''">
-                <xsl:attribute
+        <xsl:attribute
                     name="number-columns-spanned">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@colspan" />
-                </xsl:attribute>
-            </xsl:if>
-            <xsl:if
+        </xsl:attribute>
+      </xsl:if>
+      <xsl:if
                 test="@rowspan!=''">
-                <xsl:attribute
+        <xsl:attribute
                     name="number-rows-spanned">
-                    <xsl:value-of
+          <xsl:value-of
                         select="@rowspan" />
-                </xsl:attribute>
-            </xsl:if>
-            <fo:block>
-                <xsl:apply-templates />
-            </fo:block>
-        </fo:table-cell>
-    </xsl:template>
-    <xsl:template
+        </xsl:attribute>
+      </xsl:if>
+      <fo:block>
+        <xsl:apply-templates />
+      </fo:block>
+    </fo:table-cell>
+  </xsl:template>
+  <xsl:template
         match="br">
-        <fo:block>
-            <xsl:copy-of select="@id"/>
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+    <fo:block>
+      <xsl:copy-of select="@id"/>
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         match="legal">
-        <fo:inline
+    <fo:inline
             font-size="8pt">
-            <xsl:apply-templates />
-        </fo:inline>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:inline>
+  </xsl:template>
+  <xsl:template
         match="body[count(//section) != 0]">
-        <xsl:if
+    <xsl:if
             test="$disable-toc != 'true' and $toc-max-depth > 0">
-            <fo:block
+      <fo:block
                 font-family="sans-serif"
                 font-size="12pt"
                 font-weight="bold"
@@ -1308,100 +1304,101 @@
                 space-before="5pt"
                 text-align="justify"
                 width="7.5in">
-                <xsl:call-template
+        <xsl:call-template
                     name="insertPageBreaks" />
-                <!-- insert i18n stuff here -->
-                <xsl:text>Table of contents</xsl:text>
-            </fo:block>
-            <fo:block
+<!-- insert i18n stuff here -->
+<xsl:text>Table of contents</xsl:text>
+      </fo:block>
+      <fo:block
                 font-family="serif"
                 font-size="12pt"
                 space-after="5pt"
                 space-before="0pt"
                 text-align="justify"
                 width="7.5in">
-                <xsl:if
+        <xsl:if
                     test="$page-break-top-sections">
-                    <xsl:attribute
+          <xsl:attribute
                         name="break-after">page</xsl:attribute>
-                </xsl:if>
-                <xsl:apply-templates
+        </xsl:if>
+        <xsl:apply-templates
                     select="section"
                     mode="toc" />
-            </fo:block>
-        </xsl:if>
-        <xsl:apply-templates />
-    </xsl:template>
-    <xsl:template
+      </fo:block>
+    </xsl:if>
+    <xsl:apply-templates />
+  </xsl:template>
+  <xsl:template
         match="section"
         mode="toc">
-        <!-- FIXME: see bug FOR-640 -->
-        <xsl:param
+<!-- FIXME: see bug FOR-640 -->
+    <xsl:param
             name="depth"
             select="'1'" />
-        <fo:block
+    <fo:block
             space-before="5pt"
             text-align-last="justify"
             start-indent=".5em"
             text-indent=".5em">
-            <fo:inline>
-                <xsl:variable
+      <fo:inline>
+        <xsl:variable
                     name="id">
-                    <xsl:choose>
-                        <xsl:when
+          <xsl:choose>
+            <xsl:when
                             test="normalize-space(@id)!=''">
-                            <xsl:value-of
+              <xsl:value-of
                                 select="@id" />
-                        </xsl:when>
-                        <xsl:otherwise>
-                            <xsl:value-of
+            </xsl:when>
+            <xsl:otherwise>
+              <xsl:value-of
                                 select="generate-id()" />
-                        </xsl:otherwise>
-                    </xsl:choose>
-                </xsl:variable>
-                <fo:basic-link
+            </xsl:otherwise>
+          </xsl:choose>
+        </xsl:variable>
+        <fo:basic-link
                     internal-destination="{$id}">
-                    <xsl:value-of
+          <xsl:value-of
                         select="substring('&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;', 0, 2 * $depth - 1)" />
-                    <fo:inline
+          <fo:inline
                         font-size="11pt">
-                        <xsl:number
+            <xsl:number
                             count="section"
                             format="1.1.1.1.1.1.1"
                             level="multiple" />
-                    </fo:inline>
-                    <xsl:text> </xsl:text>
-                    <xsl:value-of
+          </fo:inline>
+<xsl:text> </xsl:text>
+          <xsl:value-of
                         select="title" />
-                    <fo:leader
+          <fo:leader
                         leader-pattern="dots" />
-                    <fo:page-number-citation
+          <fo:page-number-citation
                         ref-id="{$id}" />
-                </fo:basic-link>
-            </fo:inline>
-            <xsl:if
+        </fo:basic-link>
+      </fo:inline>
+      <xsl:if
                 test="$toc-max-depth > $depth">
-                <xsl:apply-templates
+        <xsl:apply-templates
                     select="section"
                     mode="toc">
-                    <xsl:with-param
+          <xsl:with-param
                         name="depth"
                         select="$depth + 1" />
-                </xsl:apply-templates>
-            </xsl:if>
-        </fo:block>
-    </xsl:template>
-    <!-- ====================================================================== -->
-    <!-- Local Extensions section -->
-    <!-- ====================================================================== -->
-    <xsl:template
+        </xsl:apply-templates>
+      </xsl:if>
+    </fo:block>
+  </xsl:template>
+<!-- ====================================================================== -->
+<!-- Local Extensions section -->
+<!-- ====================================================================== -->
+  <xsl:template
         match="citation">
-        <fo:inline><xsl:copy-of select="@id"/> [<xsl:value-of
+    <fo:inline>
+      <xsl:copy-of select="@id"/> [<xsl:value-of
                 select="@def" />] </fo:inline>
-    </xsl:template>
-    <xsl:template
+  </xsl:template>
+  <xsl:template
         match="p[@class='quote']">
-        <fo:block
+    <fo:block
             padding="3pt"
             margin="0"
             space-before="4pt"
@@ -1409,89 +1406,84 @@
             background-color="#f0f0f0"
             font-family="serif"
             font-style="italic">
-            <xsl:copy-of select="@id"/>
-            <xsl:call-template
+      <xsl:copy-of select="@id"/>
+      <xsl:call-template
                 name="insertPageBreaks" />
-            <xsl:apply-templates />
-        </fo:block>
-    </xsl:template>
-    <xsl:template
+      <xsl:apply-templates />
+    </fo:block>
+  </xsl:template>
+  <xsl:template
         name="insertPageBreaks">
-        <!-- if marked as a 'pageBreakBefore', and we're breaking on pages, and were not the first node -->
-        <xsl:if
+<!-- if marked as a 'pageBreakBefore', and we're breaking on pages, and were not the first node -->
+    <xsl:if
             test="contains(@class, 'pageBreakBefore') and preceding-sibling::node()">
-            <xsl:attribute
+      <xsl:attribute
                 name="break-before">page</xsl:attribute>
-        </xsl:if>
-        <!-- if marked as a 'pageBreakAfter', and we're breaking on pages, and were not the last node -->
-        <xsl:if
+    </xsl:if>
+<!-- if marked as a 'pageBreakAfter', and we're breaking on pages, and were not the last node -->
+    <xsl:if
             test="contains(@class, 'pageBreakAfter') and following-sibling::node()">
-            <xsl:attribute
+      <xsl:attribute
                 name="break-after">page</xsl:attribute>
-        </xsl:if>
-    </xsl:template>
-    <!-- Display the document numerotation -->
-    <xsl:template
+    </xsl:if>
+  </xsl:template>
+<!-- Display the document numerotation -->
+  <xsl:template
         name="insertPageNumber">
-        <xsl:param
+    <xsl:param
             name="text-align"
             select="'start'" />
-        <xsl:variable
+    <xsl:variable
             name="prefixe"
             select="substring-before($page-numbering-format,'1')" />
-        <xsl:variable
+    <xsl:variable
             name="sep"
             select="substring-before(substring-after($page-numbering-format,'1'),'1')" />
-        <xsl:variable
+    <xsl:variable
             name="postfixe">
-            <xsl:choose>
-                <xsl:when
+      <xsl:choose>
+        <xsl:when
                     test="contains(substring-after($page-numbering-format,'1'),'1')">
-                    <xsl:value-of
+          <xsl:value-of
                         select="substring-after(substring-after($page-numbering-format,'1'),'1')" />
-                </xsl:when>
-                <xsl:otherwise>
-                    <xsl:value-of
+        </xsl:when>
+        <xsl:otherwise>
+          <xsl:value-of
                         select="substring-after($page-numbering-format,'1')" />
-                </xsl:otherwise>
-            </xsl:choose>
-        </xsl:variable>
-        <!-- if 'page-numbering-format' contains 1 digits, the page number is displayed in the footer -->
-        <xsl:if
+        </xsl:otherwise>
+      </xsl:choose>
+    </xsl:variable>
+<!-- if 'page-numbering-format' contains 1 digits, the page number is displayed in the footer -->
+    <xsl:if
             test="contains($page-numbering-format,'1')">
-            <fo:block
+      <fo:block
                 font-size="70%"
                 text-align="{$text-align}">
-                <!-- if the separator is not found, the total page number is skipped -->
-                <xsl:value-of
+<!-- if the separator is not found, the total page number is skipped -->
+        <xsl:value-of
                     select="$prefixe" />
-                <fo:page-number />
-                <xsl:if
+        <fo:page-number />
+        <xsl:if
                     test="$sep != ''">
-                    <xsl:value-of
+          <xsl:value-of
                         select="$sep" />
-                    <fo:page-number-citation
+          <fo:page-number-citation
                         ref-id="term" />
-                </xsl:if>
-                <xsl:value-of
-                    select="$postfixe" />
-            </fo:block>
         </xsl:if>
-    </xsl:template>
-    
-    
-    
-    <!-- ====================================================================== -->
-    <!-- Temporary section - subject to change on short notice  -->
-    <!-- ====================================================================== -->
-    <xsl:template
+        <xsl:value-of
+                    select="$postfixe" />
+      </fo:block>
+    </xsl:if>
+  </xsl:template>
+<!-- ====================================================================== -->
+<!-- Temporary section - subject to change on short notice  -->
+<!-- ====================================================================== -->
+  <xsl:template
         match="//style">
-        <!-- HACK: The OpenOffice.org input plugin currently produces
+<!-- HACK: The OpenOffice.org input plugin currently produces
    intermediate documents that contain a style element, invalid per
    the Forrest Document DTD. This style element must be ignored
    here. To find out why this is done this way, read the comments
    attached to issue FOR-433. -->
-    </xsl:template>
-    
-    
+  </xsl:template>
 </xsl:stylesheet>