diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-01-31 19:09:21 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-31 10:14:31 -0800 |
commit | 7a6b91a67ef64f7b29c511c87489b9932a13ae40 (patch) | |
tree | 7218be92ca43ba72e2dc720ecd6a5021f48bee67 /xslt/sensuscsv.xslt | |
parent | 8eb25f67003d9f513094edf2b2f8e0224854e905 (diff) | |
download | subsurface-7a6b91a67ef64f7b29c511c87489b9932a13ae40.tar.gz |
Should use the common GetFieldByIndex on import
Should have removed the getFieldByIndex template from these files when
it was moved to commonTemplates. Otherwise these imports wont work.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'xslt/sensuscsv.xslt')
-rw-r--r-- | xslt/sensuscsv.xslt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/xslt/sensuscsv.xslt b/xslt/sensuscsv.xslt index f873e98a1..9d2b0e32e 100644 --- a/xslt/sensuscsv.xslt +++ b/xslt/sensuscsv.xslt @@ -176,26 +176,4 @@ </sample> </xsl:template> - <xsl:template name="getFieldByIndex"> - <xsl:param name="index"/> - <xsl:param name="line"/> - <xsl:choose> - <xsl:when test="$index > 0"> - <xsl:call-template name="getFieldByIndex"> - <xsl:with-param name="index" select="$index -1"/> - <xsl:with-param name="line" select="substring-after($line, $fs)"/> - </xsl:call-template> - </xsl:when> - <xsl:otherwise> - <xsl:choose> - <xsl:when test="substring-before($line,$fs) != ''"> - <xsl:value-of select="substring-before($line,$fs)"/> - </xsl:when> - <xsl:otherwise> - <xsl:value-of select="$line"/> - </xsl:otherwise> - </xsl:choose> - </xsl:otherwise> - </xsl:choose> - </xsl:template> </xsl:stylesheet> |