aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2015-01-23 06:35:45 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-23 17:43:08 +1200
commit54aa6dd91fad7c8ac4ac94f19e09f7a234096904 (patch)
treea69e4abee161810751e40321f01541b3af6b796e
parentc5075b93a212645a71f5ebeaba997b4b0aae978d (diff)
downloadsubsurface-54aa6dd91fad7c8ac4ac94f19e09f7a234096904.tar.gz
Fix quoted CSV import
I am a bit baffled as to how this used to work before and does not work anymore. Anyway, it should be sufficient that we take the quoted text without verifying that the next character is the field separator. (Of course it would be better to make sure field separator follows, as then quotation marks could be used in the free-form texts.) Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--xslt/manualcsv2xml.xslt8
1 files changed, 3 insertions, 5 deletions
diff --git a/xslt/manualcsv2xml.xslt b/xslt/manualcsv2xml.xslt
index 877410ba7..ef6397580 100644
--- a/xslt/manualcsv2xml.xslt
+++ b/xslt/manualcsv2xml.xslt
@@ -392,13 +392,11 @@
<xsl:choose>
<xsl:when test="substring($line, 1, 1) = '&quot;'">
<xsl:choose>
- <xsl:when test="substring-before($line,'&quot;$fs') != ''">
- <xsl:value-of select="substring-before($line,'&quot;$fs')"/>
+ <xsl:when test="substring-before(substring-after($line, '&quot;'), '&quot;') != ''">
+ <xsl:value-of select="substring-before(substring-after($line, '&quot;'), '&quot;')"/>
</xsl:when>
<xsl:otherwise>
- <xsl:if test="substring-after(substring-after($line, '&quot;'), '&quot;') = ''">
- <xsl:value-of select="concat(substring-after($line, '&quot;'), substring-before($remaining, '&quot;'))"/>
- </xsl:if>
+ <xsl:value-of select="concat(substring-after($line, '&quot;'), substring-before($remaining, '&quot;'))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>