1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:output method="text"/>
<xsl:param name="install.path"/>
<xsl:template match="book">
<section ref="<xsl:value-of select="concat($install.path,'index.html')"/>" title="<xsl:value-of select="title"/>">
<xsl:apply-templates select="chapter">
<xsl:with-param name="path"><xsl:value-of select="$install.path"/></xsl:with-param>
</xsl:apply-templates>
</section>
</xsl:template>
<xsl:template match="chapter">
<xsl:param name="path"/>
<xsl:variable name="ch-href">
<xsl:choose>
<xsl:when test="10 > position()">
<xsl:value-of select="concat('ch0',position())"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat('ch',position())"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<section ref="<xsl:value-of select="concat($path,$ch-href)"/>.html" title="<xsl:value-of select="title"/>">
<xsl:apply-templates select="sect1[1]">
<!-- le début du nom de fichier est passé en paramètres -->
<xsl:with-param name="ch-href"><xsl:value-of select="$ch-href"/></xsl:with-param>
<xsl:with-param name="path"><xsl:value-of select="$path"/></xsl:with-param>
</xsl:apply-templates>
<xsl:apply-templates select="sect1[position()>1]">
<xsl:with-param name="ch-href"><xsl:value-of select="$ch-href"/></xsl:with-param>
<xsl:with-param name="path"><xsl:value-of select="$path"/></xsl:with-param>
</xsl:apply-templates>
</section>
</xsl:template>
<!-- SECTION -->
<xsl:template match="sect1[1]">
<xsl:param name="path"/>
<xsl:param name="ch-href"/><!-- on va directement à la section -->
<section ref="<xsl:value-of select="concat($path,$ch-href)"/>.html#<xsl:value-of select="@id"/>" title="<xsl:value-of select="title"/>">
</section>
</xsl:template>
<!-- SECTION (BIS) -->
<xsl:template match="sect1[position()>1]">
<xsl:param name="path"/>
<xsl:param name="ch-href"/>
<xsl:variable name="href">
<xsl:choose>
<xsl:when test="10 > position()">
<xsl:value-of select="concat($ch-href,'s0',position()+1)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat($ch-href,'s',position()+1)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<section ref="<xsl:value-of select="concat($path,$href)"/>.html" title="<xsl:value-of select="title"/>">
</section>
</xsl:template>
<!--<xsl:template match="application">
<keyword ref="...html#..."><xsl:value-of select="./"/></keyword>
</xsl:template>
idem pour
-->
</xsl:stylesheet>
|