From 17c4120143dc946133bf602efb1d26844b750aaf Mon Sep 17 00:00:00 2001 From: Miika Turkia Date: Mon, 22 Apr 2013 07:02:48 +0300 Subject: [PATCH] A hook for DM4 XML import This will take the DM4 XSLT into use. In the future it is quite likely that we will have to start using something more specific on top of the root element name to identify dive log formats. But as "Dive" is currently a unique root element name for us, this suffices for now. Signed-off-by: Miika Turkia Signed-off-by: Dirk Hohndel --- parse-xml.c | 1 + 1 file changed, 1 insertion(+) diff --git a/parse-xml.c b/parse-xml.c index 4701a173a..8cf2b0c2a 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1891,6 +1891,7 @@ static struct xslt_files { const char *file; } xslt_files[] = { { "SUUNTO", "SuuntoSDM.xslt" }, + { "Dive", "SuuntoDM4.xslt" }, { "JDiveLog", "jdivelog2subsurface.xslt" }, { "dives", "MacDive.xslt" }, { "DIVELOGSDATA", "divelogs.xslt" },