diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-06-27 23:38:13 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-27 14:43:28 -0700 |
commit | feb15a5498c640651bf48781d828d8fed79a2412 (patch) | |
tree | 1b405502e994d41fb946e5a2fb545c7f25419d2d /xslt | |
parent | d3d5f88384e35ac2865df32c04c682a2b64e7e8b (diff) | |
download | subsurface-feb15a5498c640651bf48781d828d8fed79a2412.tar.gz |
Set the number of o2 sensors on a CSV import
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/csv2xml.xslt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xslt/csv2xml.xslt b/xslt/csv2xml.xslt index e13d0a984..92542c246 100644 --- a/xslt/csv2xml.xslt +++ b/xslt/csv2xml.xslt @@ -45,6 +45,9 @@ <divecomputer model="Imported from CSV" deviceid="ffffffff"> <xsl:if test="$po2Field >= 0 or $o2sensor1Field >= 0 or $o2sensor2Field >= 0 or $o2sensor3Field >= 0"> <xsl:attribute name="dctype">CCR</xsl:attribute> + <xsl:attribute name="no_o2sensors"> + <xsl:copy-of select="number($o2sensor1Field >= 0) + number($o2sensor2Field >= 0) + number($o2sensor3Field >= 0)" /> + </xsl:attribute> </xsl:if> <xsl:call-template name="printLine"> <xsl:with-param name="line" select="substring-before(//csv, $lf)"/> |