mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add cylinder support to manual2xml XSLT
This adds support for importing cylinder information from manually kept dive logs. However, this cannot be used before GUI counterpart is added. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3343634fc9
commit
cdb3c87b5d
1 changed files with 50 additions and 0 deletions
|
@ -21,6 +21,11 @@
|
|||
<xsl:param name="dateformat" select="dateformat"/>
|
||||
<xsl:param name="airtempField" select="airtempField"/>
|
||||
<xsl:param name="watertempField" select="watertempField"/>
|
||||
<xsl:param name="cylindersizeField" select="cylindersizeField"/>
|
||||
<xsl:param name="startpressureField" select="startpressureField"/>
|
||||
<xsl:param name="endpressureField" select="endpressureField"/>
|
||||
<xsl:param name="o2Field" select="o2Field"/>
|
||||
<xsl:param name="heField" select="heField"/>
|
||||
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
|
||||
|
||||
<xsl:variable name="lf"><xsl:text>
|
||||
|
@ -208,6 +213,51 @@
|
|||
</temperature>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$cylindersizeField > 0 or $startpressureField > 0 or $endpressureField > 0 or o2Field >0 or heField > 0">
|
||||
<cylinder>
|
||||
<xsl:if test="$cylindersizeField > 0">
|
||||
<xsl:attribute name="size">
|
||||
<xsl:call-template name="getFieldByIndex">
|
||||
<xsl:with-param name="index" select="$cylindersizeField"/>
|
||||
<xsl:with-param name="line" select="$line"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="$startpressureField > 0">
|
||||
<xsl:attribute name="start">
|
||||
<xsl:call-template name="getFieldByIndex">
|
||||
<xsl:with-param name="index" select="$startpressureField"/>
|
||||
<xsl:with-param name="line" select="$line"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="$endpressureField > 0">
|
||||
<xsl:attribute name="end">
|
||||
<xsl:call-template name="getFieldByIndex">
|
||||
<xsl:with-param name="index" select="$endpressureField"/>
|
||||
<xsl:with-param name="line" select="$line"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="$o2Field > 0">
|
||||
<xsl:attribute name="o2">
|
||||
<xsl:call-template name="getFieldByIndex">
|
||||
<xsl:with-param name="index" select="$o2Field"/>
|
||||
<xsl:with-param name="line" select="$line"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="$heField > 0">
|
||||
<xsl:attribute name="he">
|
||||
<xsl:call-template name="getFieldByIndex">
|
||||
<xsl:with-param name="index" select="$heField"/>
|
||||
<xsl:with-param name="line" select="$line"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
</cylinder>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$maxDepthField >= 0 or $meanDepthField >= 0">
|
||||
<depth>
|
||||
<xsl:if test="$maxDepthField >= 0">
|
||||
|
|
Loading…
Add table
Reference in a new issue