summaryrefslogtreecommitdiffstats
path: root/xslt
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2017-01-01 10:47:03 +0200
committerGravatar Miika Turkia <miika.turkia@gmail.com>2017-01-01 10:47:03 +0200
commit5db7d4bcd7c85e8fe3ec29566fa6cfd822ced720 (patch)
tree8af42cf85dedad2b27f1eaaf08cea5cdac62349d /xslt
parent47d77bc89417490c683ee05dd7921e203e598d53 (diff)
downloadsubsurface-5db7d4bcd7c85e8fe3ec29566fa6cfd822ced720.tar.gz
AV1 import: fix indentation
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'xslt')
-rw-r--r--xslt/av1.xslt32
1 files changed, 16 insertions, 16 deletions
diff --git a/xslt/av1.xslt b/xslt/av1.xslt
index bf38ddd65..70bcecdbd 100644
--- a/xslt/av1.xslt
+++ b/xslt/av1.xslt
@@ -47,10 +47,10 @@
<xsl:choose>
<xsl:when test="string(number(substring($line, 1, 1))) != 'NaN'">
<sample>
- <xsl:call-template name="printFields">
- <xsl:with-param name="line" select="$line"/>
- <xsl:with-param name="lineno" select="'0'"/>
- </xsl:call-template>
+ <xsl:call-template name="printFields">
+ <xsl:with-param name="line" select="$line"/>
+ <xsl:with-param name="lineno" select="'0'"/>
+ </xsl:call-template>
</sample>
</xsl:when>
<xsl:otherwise>
@@ -93,19 +93,19 @@
<xsl:with-param name="line" select="$line"/>
</xsl:call-template>
</xsl:variable>
- <xsl:attribute name="time">
- <xsl:value-of select="substring-before($value, ':') * 60 + substring-after($value, ':')" />
- </xsl:attribute>
+ <xsl:attribute name="time">
+ <xsl:value-of select="substring-before($value, ':') * 60 + substring-after($value, ':')" />
+ </xsl:attribute>
- <xsl:variable name="depth">
- <xsl:call-template name="getFieldByIndex">
- <xsl:with-param name="index" select="$depthField"/>
- <xsl:with-param name="line" select="$line"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:attribute name="depth">
- <xsl:value-of select="translate($depth, ',', '.')"/>
- </xsl:attribute>
+ <xsl:variable name="depth">
+ <xsl:call-template name="getFieldByIndex">
+ <xsl:with-param name="index" select="$depthField"/>
+ <xsl:with-param name="line" select="$line"/>
+ </xsl:call-template>
+ </xsl:variable>
+ <xsl:attribute name="depth">
+ <xsl:value-of select="translate($depth, ',', '.')"/>
+ </xsl:attribute>
</xsl:template>
</xsl:stylesheet>