mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
Print at most as many cylinders as the header has
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
8f7c9bc7d1
commit
108b30e8b5
1 changed files with 13 additions and 1 deletions
|
@ -11,6 +11,9 @@
|
|||
</xsl:text></xsl:variable>
|
||||
|
||||
<xsl:template match="/divelog/dives">
|
||||
<xsl:variable name="cylinders">
|
||||
<xsl:value-of select="count(dive[position()=last()]/cylinder|trip[position()=last()]/dive[position()=last()]/cylinder)"/>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$units = 1">
|
||||
|
||||
|
@ -139,12 +142,16 @@
|
|||
</xsl:choose>
|
||||
<xsl:text>
|
||||
</xsl:text>
|
||||
<xsl:apply-templates select="dive|trip/dive"/>
|
||||
<xsl:apply-templates select="dive|trip/dive">
|
||||
<xsl:with-param name="cylinders" select="$cylinders"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="divesites/site/notes"/>
|
||||
|
||||
<xsl:template match="dive">
|
||||
<xsl:param name="cylinders"/>
|
||||
|
||||
<xsl:text>"</xsl:text>
|
||||
<xsl:value-of select="@number"/>
|
||||
<xsl:text>"</xsl:text>
|
||||
|
@ -230,6 +237,9 @@
|
|||
</xsl:choose>
|
||||
|
||||
<xsl:for-each select="cylinder">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$cylinders < position()"/>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="@start|@end != ''">
|
||||
<xsl:apply-templates select="."/>
|
||||
|
@ -292,6 +302,8 @@
|
|||
<xsl:text>"</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:for-each>
|
||||
|
||||
<xsl:choose>
|
||||
|
|
Loading…
Reference in a new issue