<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:fo="http://www.w3.org/1999/XSL/Format"
        xmlns:sverb="http://nwalsh.com/xslt/ext/com.nwalsh.saxon.Verbatim"
        xmlns:xverb="com.nwalsh.xalan.Verbatim"
        xmlns:lxslt="http://xml.apache.org/xslt">

  <xsl:import href="docbook.xsl"/>
  
  <xsl:param name="tablecolumns.extension" select="0"/>
  <xsl:param name="variablelist.as.blocks" select="1"/>
  
<!--=====================================================================-->
<!--define templates for undefined tags-->

  <xsl:template name="info">
    <xsl:apply-templates mode="reference.titlepage.recto.auto.mode" select="date"/>
  </xsl:template>

  <xsl:template match="refsynopsisdivinfo">
      <xsl:call-template name="info"/>
  </xsl:template>

  <xsl:template match="refsect1info">
      <xsl:call-template name="info"/>
  </xsl:template>

  <xsl:template match="refsect2info">
      <xsl:call-template name="info"/>
  </xsl:template>

  <xsl:template match="refsect3info">
      <xsl:call-template name="info"/>
  </xsl:template>  

  <xsl:template match="docinfo">
      <xsl:call-template name="info"/>
  </xsl:template>
    
<!--==================================================================--> 
<!--Graphic extensions-->
  
  <xsl:param name="graphic.default.extension">png</xsl:param>

<!--==================================================================-->
<!--Monospace attributes set-->
  
  <xsl:attribute-set name="monospace.properties">
    <xsl:attribute name="font-family">LuxiMono</xsl:attribute>
    <xsl:attribute name="font-size-adjust">0.44</xsl:attribute>
    <xsl:attribute name="hyphenate">true</xsl:attribute>
  </xsl:attribute-set>


</xsl:stylesheet>
