diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-01-25 09:49:24 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-25 06:52:50 -0800 |
commit | b6ef5198f2b31a80652b9308c06ec2596a12bc51 (patch) | |
tree | b80b9e76f2795cf024424ad7a1815bc7ac7da837 | |
parent | 19200932fd599ee4c6248c38d11bd2158b0d6391 (diff) | |
download | subsurface-b6ef5198f2b31a80652b9308c06ec2596a12bc51.tar.gz |
Hook up XSLT and include it in resources
XSLT to import manually kept CSV logs is hooked up and included in
resources.
Fixes #427
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | parse-xml.c | 1 | ||||
-rw-r--r-- | subsurface.qrc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/parse-xml.c b/parse-xml.c index 56bfc0996..7ee3323c5 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -1914,6 +1914,7 @@ static struct xslt_files { { "Divinglog", "DivingLog.xslt" }, { "csv", "csv2xml.xslt" }, { "sensuscsv", "sensuscsv.xslt" }, + { "manualcsv", "manualcsv2xml.xslt" }, { NULL, } }; diff --git a/subsurface.qrc b/subsurface.qrc index 91703afb1..20cd4ddb3 100644 --- a/subsurface.qrc +++ b/subsurface.qrc @@ -42,5 +42,6 @@ <file>xslt/uddf-export.xslt</file> <file>xslt/uddf.xslt</file> <file>xslt/sensuscsv.xslt</file> + <file>xslt/manualcsv2xml.xslt</file> </qresource> </RCC> |