level 1
<xsl:template match="/">
<xsl:choose>
<xsl:when test="xml/@action='1'"><xsl:call-template name="match_1"/></xsl:when>
<xsl:when test="xml/@action='2'"><xsl:call-template name="match_2"/></xsl:when>
<xsl:when test="xml/@action='3'"><xsl:call-template name="match_3"/></xsl:when>
<xsl:when test="xml/@action='4'"><xsl:call-template name="match_4"/></xsl:when>
<xsl:when test="xml/@action='5'"><xsl:call-template name="match_5"/></xsl:when>
<xsl:when test="xml/@action='6'"><xsl:call-template name="match_6"/></xsl:when>
<xsl:otherwise><xsl:call-template name="other"/></xsl:otherwise>
</xsl:choose>
I
2012年05月04日 03点05分