<?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">

<!-- When it works, we can include it:
<xsl:import href="printheader-content.xsl" /> 
-->

    <xsl:import href="/home/ezust/local/docbook-xsl/fo/docbook.xsl"/>
    <xsl:param name="fop.extensions" select="'1'"></xsl:param>
    <xsl:param name="linenumbering.everyNth" select="'1'"></xsl:param>
    <xsl:param name="linenumbering.extension" select="'1'"></xsl:param>
    <xsl:param name="body.font.master" select="11"></xsl:param>
    <xsl:param name="profile.condition">book</xsl:param>
<!--
<xsl:template name="footer.content"> Generated: <xsl:value-of select="/set/book/bookinfo/date/text()" />  (c) 2004 P. Ezust and S.A. Ezust.  </xsl:template>
-->
    <xsl:template name="header.content">
        <xsl:param name="pageclass" select="'all'"/>
<!--    <xsl:apply-templates select="." mode="titleabbrev.markup"/> 
        <xsl:choose>
            <xsl:when test="$position = 'left'">
                <xsl:text> Name:  </xsl:text>
            </xsl:when>
            <xsl:when test="$position = 'right'">
                <xsl:text> Date:  </xsl:text>
            </xsl:when>
        </xsl:choose>
-->
    </xsl:template>

<!-- Page Break at each level1 section -->
<xsl:attribute-set name="section.level1.properties">
  <xsl:attribute name="break-before">page</xsl:attribute>
</xsl:attribute-set>



    <xsl:param name="admon.graphics" select="1" />
    <xsl:param name="admon.graphics.path">../icons/</xsl:param>
    <xsl:param name="admon.graphics.extension">.png</xsl:param>

</xsl:stylesheet>

