github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-147-6.imp (about)

     1  <?xml version="1.0"?>
     2  <xsl:stylesheet version="1.0"
     3                  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     4  
     5  <xsl:template match="action[@name='ShowPage']
     6                             [@event='onClick']                                
     7                             [pass-param/@name='pagenum']">
     8    <xsl:text>template#1 in module#6;</xsl:text>
     9  </xsl:template>
    10  
    11  
    12  <xsl:template match="action[@name='ShowPage']
    13                             [@event='onClick']
    14                             [pass-param/@name='pageid']">
    15    <xsl:text>template#2 in module#6;</xsl:text>
    16  </xsl:template>
    17  
    18  
    19  <xsl:template match="action[@name='ShowInfoText']
    20                             [@event='onCreate']">
    21    <xsl:text>template#3 in module#6;</xsl:text>
    22  </xsl:template>
    23  
    24  
    25  <xsl:template match="pass-param"
    26                mode="invlink">
    27    <xsl:text>template#4 in module#6;</xsl:text>
    28  </xsl:template>
    29  
    30  </xsl:stylesheet>
    31