diff options
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/av1.xslt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xslt/av1.xslt b/xslt/av1.xslt index 1569a46f6..015832fa9 100644 --- a/xslt/av1.xslt +++ b/xslt/av1.xslt @@ -58,6 +58,16 @@ <xsl:value-of select="substring-before(substring-after($line, '= '), ' ')"/> </xsl:attribute> </xsl:when> + <xsl:when test="substring-before($line, '=') = 'Alert'"> + <event> + <xsl:attribute name="time"> + <xsl:value-of select="substring-before($remaining, ' ')"/> + </xsl:attribute> + <xsl:attribute name="name"> + <xsl:value-of select="substring-after($line, '= ')"/> + </xsl:attribute> + </event> + </xsl:when> </xsl:choose> </xsl:otherwise> </xsl:choose> |