diff options
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/csv2xml.xslt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/xslt/csv2xml.xslt b/xslt/csv2xml.xslt index 29ebbce24..b3dbc7a8d 100644 --- a/xslt/csv2xml.xslt +++ b/xslt/csv2xml.xslt @@ -42,12 +42,13 @@ <xsl:attribute name="time"> <xsl:value-of select="concat(substring($time, 2, 2), ':', substring($time, 4, 2))"/> </xsl:attribute> - <divecomputerid deviceid="ffffffff" model="csv" /> - <xsl:call-template name="printLine"> - <xsl:with-param name="line" select="substring-before(//csv, $lf)"/> - <xsl:with-param name="lineno" select="'1'"/> - <xsl:with-param name="remaining" select="substring-after(//csv, $lf)"/> - </xsl:call-template> + <divecomputer model="Imported from CSV" deviceid="ffffffff"> + <xsl:call-template name="printLine"> + <xsl:with-param name="line" select="substring-before(//csv, $lf)"/> + <xsl:with-param name="lineno" select="'1'"/> + <xsl:with-param name="remaining" select="substring-after(//csv, $lf)"/> + </xsl:call-template> + </divecomputer> </dive> </dives> </divelog> |