From cc1d661881207eece75def787dc2e9cc014eb6bb 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 d72ad73e2..f850e9d4a 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1915,6 +1915,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" },