diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2018-02-13 21:40:38 +0200 |
---|---|---|
committer | mturkia <miika.turkia@gmail.com> | 2018-02-15 17:54:05 +0200 |
commit | 405e5050a1585ee062f3f96771257af00bf65173 (patch) | |
tree | a6d5f5e1be4f65c46649eae7602e4f5a80cbda87 /xslt/MacDive.xslt | |
parent | e123fe912d8827980620c5bba4aca4269e01571d (diff) | |
download | subsurface-405e5050a1585ee062f3f96771257af00bf65173.tar.gz |
Move XSLT depth conversion to commonTemplates
Moving depth conversion template from MacDive specific XSLT to
commonTemplates.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'xslt/MacDive.xslt')
-rw-r--r-- | xslt/MacDive.xslt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/xslt/MacDive.xslt b/xslt/MacDive.xslt index 59b05c3fe..2f2c84c85 100644 --- a/xslt/MacDive.xslt +++ b/xslt/MacDive.xslt @@ -529,22 +529,6 @@ </xsl:template> <!-- end convert time --> - <!-- convert depth to meters --> - <xsl:template name="depthConvert"> - <xsl:param name="depth"/> - <xsl:param name="units"/> - - <xsl:choose> - <xsl:when test="$units = 'Imperial'"> - <xsl:value-of select="concat(format-number(($depth * 0.3048), '#.##'), ' m')"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="concat($depth, ' m')"/> - </xsl:otherwise> - </xsl:choose> - </xsl:template> - <!-- end convert depth --> - <!-- convert weight to kg --> <xsl:template name="weightConvert"> <xsl:param name="weight"/> |