summaryrefslogtreecommitdiff
path: root/tests/general/bug-147-6.imp
blob: b6b52d0a63869251624fee4c70e2b0a707881dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="action[@name='ShowPage']
                           [@event='onClick']                                
                           [pass-param/@name='pagenum']">
  <xsl:text>template#1 in module#6;</xsl:text>
</xsl:template>


<xsl:template match="action[@name='ShowPage']
                           [@event='onClick']
                           [pass-param/@name='pageid']">
  <xsl:text>template#2 in module#6;</xsl:text>
</xsl:template>


<xsl:template match="action[@name='ShowInfoText']
                           [@event='onCreate']">
  <xsl:text>template#3 in module#6;</xsl:text>
</xsl:template>


<xsl:template match="pass-param"
              mode="invlink">
  <xsl:text>template#4 in module#6;</xsl:text>
</xsl:template>

</xsl:stylesheet>