From 7c6ff9f957a1e7bfebb968cdc4bb96e2832ea4d8 Mon Sep 17 00:00:00 2001
From: Miika Turkia <miika.turkia@gmail.com>
Date: Sun, 10 Mar 2013 09:52:20 +0200
Subject: Convert Subsurface XML to divelogs.de format

The resulting divelogs.de formatted XML is then to be zipped and
uploaded to divelogs.de website.

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
 xslt/divelogs-export.xslt | 110 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 110 insertions(+)
 create mode 100644 xslt/divelogs-export.xslt

(limited to 'xslt')

diff --git a/xslt/divelogs-export.xslt b/xslt/divelogs-export.xslt
new file mode 100644
index 000000000..4e9d92d2b
--- /dev/null
+++ b/xslt/divelogs-export.xslt
@@ -0,0 +1,110 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+  <xsl:import href="commonTemplates.xsl"/>
+  <xsl:strip-space elements="*"/>
+  <xsl:output method="xml" encoding="iso-8859-1" indent="yes"/>
+
+  <xsl:template match="/divelog/dives">
+      <xsl:apply-templates select="dive"/>
+  </xsl:template>
+
+  <xsl:template match="dive">
+    <DIVELOGSDATA>
+    <DIVELOGSNUMBER>
+      <xsl:value-of select="@number"/>
+    </DIVELOGSNUMBER>
+    <DATE>
+      <xsl:value-of select="concat(substring-after(substring-after(@date, '-'), '-'), '.', substring-before(substring-after(@date, '-'), '-'), '.', substring-before(@date, '-'))"/>
+    </DATE>
+    <TIME>
+      <xsl:value-of select="@time"/>
+    </TIME>
+    <DIVETIMESEC>
+      <xsl:call-template name="time2sec">
+        <xsl:with-param name="time">
+          <xsl:value-of select="@duration"/>
+        </xsl:with-param>
+      </xsl:call-template>
+    </DIVETIMESEC>
+    <LOCATION>
+      <xsl:value-of select="location"/>
+    </LOCATION>
+    <WATERVIZIBILITY>
+      <xsl:value-of select="@visibility"/>
+    </WATERVIZIBILITY>
+    <PARTNER>
+      <xsl:value-of select="buddy"/>
+    </PARTNER>
+    <CYLINDERDESCRIPTION>
+      <xsl:value-of select="cylinder/@description"/>
+    </CYLINDERDESCRIPTION>
+    <CYLINDERSIZE>
+      <xsl:value-of select="substring-before(cylinder/@size, ' ')"/>
+    </CYLINDERSIZE>
+    <CYLINDERSTARTPRESSURE>
+      <xsl:value-of select="substring-before(node()/sample/@pressure, ' ')"/>
+    </CYLINDERSTARTPRESSURE>
+    <CYLINDERENDPRESSURE>
+      <xsl:variable name="samples">
+        <xsl:value-of select="count(node()/sample)"/>
+      </xsl:variable>
+      <xsl:value-of select="node()/sample[position() = $samples]/@pressure"/>
+    </CYLINDERENDPRESSURE>
+    <WEIGHT>
+      <xsl:call-template name="sum">
+        <xsl:with-param name="values" select="weightsystem/@weight"/>
+      </xsl:call-template>
+    </WEIGHT>
+    <O2PCT>
+      <xsl:value-of select="substring-before(cylinder/@o2, '%')"/>
+    </O2PCT>
+    <LOGNOTES>
+      <xsl:value-of select="notes"/>
+    </LOGNOTES>
+    <LAT>
+      <xsl:value-of select="substring-before(location/@gps, ' ')"/>
+    </LAT>
+    <LNG>
+      <xsl:value-of select="substring-after(location/@gps, ' ')"/>
+    </LNG>
+    <MAXDEPTH>
+      <xsl:value-of select="substring-before(node()/depth/@max, ' ')"/>
+    </MAXDEPTH>
+    <MEANDEPTH>
+      <xsl:value-of select="substring-before(node()/depth/@mean, ' ')"/>
+    </MEANDEPTH>
+    <AIRTEMP>
+      <xsl:value-of select="substring-before(divetemperature/@air, ' ')"/>
+    </AIRTEMP>
+    <WATERTEMPMAXDEPTH>
+      <xsl:value-of select="substring-before(node()/temperature/@water, ' ')"/>
+    </WATERTEMPMAXDEPTH>
+    <SAMPLEINTERVAL>
+      <xsl:variable name="first">
+        <xsl:call-template name="time2sec">
+          <xsl:with-param name="time">
+            <xsl:value-of select="node()/sample[1]/@time"/>
+          </xsl:with-param>
+        </xsl:call-template>
+      </xsl:variable>
+      <xsl:variable name="second">
+        <xsl:call-template name="time2sec">
+          <xsl:with-param name="time">
+            <xsl:value-of select="node()/sample[2]/@time"/>
+          </xsl:with-param>
+        </xsl:call-template>
+      </xsl:variable>
+      <xsl:value-of select="$second - $first"/>
+    </SAMPLEINTERVAL>
+    <xsl:for-each select="divecomputer[1]/sample">
+      <SAMPLE>
+        <DEPTH>
+          <xsl:value-of select="substring-before(./@depth, ' ')"/>
+        </DEPTH>
+      </SAMPLE>
+    </xsl:for-each>
+    </DIVELOGSDATA>
+  </xsl:template>
+
+</xsl:stylesheet>
-- 
cgit v1.2.3-70-g09d2