Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
146 lines
5.3 KiB
XML
146 lines
5.3 KiB
XML
<?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'>
|
|
|
|
<!-- ********************************************************************
|
|
$Id$
|
|
********************************************************************
|
|
|
|
This file is part of the XSL DocBook Stylesheet distribution.
|
|
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
|
and other information.
|
|
|
|
******************************************************************** -->
|
|
|
|
<xsl:variable name="qanda.defaultlabel">number</xsl:variable>
|
|
<xsl:variable name="generate.qandaset.toc" select="true()"/>
|
|
<xsl:variable name="generate.qandadiv.toc" select="false()"/>
|
|
|
|
<!-- ==================================================================== -->
|
|
|
|
<xsl:template match="qandaset">
|
|
<xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
|
|
|
|
<fo:block id="{$id}">
|
|
<xsl:if test="title">
|
|
<xsl:apply-templates select="title"/>
|
|
</xsl:if>
|
|
|
|
<xsl:apply-templates select="*[name(.) != 'title'
|
|
and name(.) != 'qandadiv'
|
|
and name(.) != 'qandaentry']"/>
|
|
<xsl:apply-templates select="qandadiv"/>
|
|
|
|
<xsl:if test="qandaentry">
|
|
<fo:list-block xsl:use-attribute-sets="list.block.spacing"
|
|
provisional-distance-between-starts="2.5em"
|
|
provisional-label-separation="0.2em">
|
|
<xsl:apply-templates select="qandaentry"/>
|
|
</fo:list-block>
|
|
</xsl:if>
|
|
</fo:block>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="qandaset/title">
|
|
<xsl:variable name="enclsect" select="(ancestor::section
|
|
| ancestor::simplesect
|
|
| ancestor::sect5
|
|
| ancestor::sect4
|
|
| ancestor::sect3
|
|
| ancestor::sect2
|
|
| ancestor::sect1
|
|
| ancestor::refsect3
|
|
| ancestor::refsect2
|
|
| ancestor::refsect1)[last()]"/>
|
|
<xsl:variable name="sectlvl">
|
|
<xsl:call-template name="section.level">
|
|
<xsl:with-param name="node" select="$enclsect"/>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
|
|
<xsl:call-template name="section.heading">
|
|
<xsl:with-param name="level" select="$sectlvl"/>
|
|
<xsl:with-param name="title" select="."/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="qandadiv">
|
|
<xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
|
|
|
|
<fo:block id="{$id}">
|
|
<xsl:apply-templates select="title"/>
|
|
<xsl:apply-templates select="*[name(.) != 'title'
|
|
and name(.) != 'qandadiv'
|
|
and name(.) != 'qandaentry']"/>
|
|
<fo:block start-indent="{count(ancestor::qandadiv)*2}pc">
|
|
<xsl:apply-templates select="qandadiv"/>
|
|
|
|
<xsl:if test="qandaentry">
|
|
<fo:list-block xsl:use-attribute-sets="list.block.spacing"
|
|
provisional-distance-between-starts="2.5em"
|
|
provisional-label-separation="0.2em">
|
|
<xsl:apply-templates select="qandaentry"/>
|
|
</fo:list-block>
|
|
</xsl:if>
|
|
</fo:block>
|
|
</fo:block>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="qandadiv/title">
|
|
<xsl:variable name="enclsect" select="(ancestor::section
|
|
| ancestor::simplesect
|
|
| ancestor::sect5
|
|
| ancestor::sect4
|
|
| ancestor::sect3
|
|
| ancestor::sect2
|
|
| ancestor::sect1
|
|
| ancestor::refsect3
|
|
| ancestor::refsect2
|
|
| ancestor::refsect1)[last()]"/>
|
|
<xsl:variable name="sectlvl">
|
|
<xsl:call-template name="section.level">
|
|
<xsl:with-param name="node" select="$enclsect"/>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
|
|
<xsl:call-template name="section.heading">
|
|
<xsl:with-param name="level" select="$sectlvl + count(ancestor::qandadiv)"/>
|
|
<xsl:with-param name="title" select="."/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="qandaentry">
|
|
<xsl:apply-templates/>
|
|
<!--
|
|
<fo:block>
|
|
<xsl:if test="@id">
|
|
<xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
|
|
</xsl:if>
|
|
<xsl:apply-templates/>
|
|
</fo:block>
|
|
-->
|
|
</xsl:template>
|
|
|
|
<xsl:template match="question|answer">
|
|
<xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable>
|
|
<xsl:variable name="entry.id">
|
|
<xsl:call-template name="object.id">
|
|
<xsl:with-param name="object" select="parent::*"/>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
|
|
<fo:list-item id="{$entry.id}" xsl:use-attribute-sets="list.item.spacing">
|
|
<fo:list-item-label id="{$id}" end-indent="label-end()">
|
|
<fo:block>
|
|
<xsl:call-template name="question.answer.label"/>
|
|
</fo:block>
|
|
</fo:list-item-label>
|
|
<fo:list-item-body start-indent="body-start()">
|
|
<xsl:apply-templates/>
|
|
</fo:list-item-body>
|
|
</fo:list-item>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|