diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-02-26 11:15:06 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-26 11:16:41 -0800 |
commit | 5cea16ec509bdca4d9410aea193277fa42fba1a4 (patch) | |
tree | 9501138d23ebe250b6e6b61acad2c61ab3f74600 /xslt | |
parent | 42fa5a6368a3cc25b804b7dff769b806e86113ac (diff) | |
download | subsurface-5cea16ec509bdca4d9410aea193277fa42fba1a4.tar.gz |
Another update to DivingLog import
This fixes two bugs:
- we overwrote the max depth that we read from an XML file with 0 if there
are no samples
- we didn't parse the DepthAvg tag in the DivingLog XML
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/DivingLog.xslt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xslt/DivingLog.xslt b/xslt/DivingLog.xslt index 4a6b4d387..ced6a4e80 100644 --- a/xslt/DivingLog.xslt +++ b/xslt/DivingLog.xslt @@ -47,6 +47,11 @@ <xsl:value-of select="concat(Depth, ' m')"/> </xsl:attribute> </xsl:if> + <xsl:if test="DepthAvg != ''"> + <xsl:attribute name="mean"> + <xsl:value-of select="concat(DepthAvg, ' m')"/> + </xsl:attribute> + </xsl:if> </depth> <location> |