This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: templates with priority, xsl code reuse


> first, I have a template with priority 1:
>
> <xsl:template match="root" priority="1">
> 		...xsl code
> </xsl:template>
>
> I want to define another template with priority 2, that use
> the same code of
> the first template( priority 1)with adding some new code:

Give the first template a name as well as a match attribute, and call it
using call-template.

Alternatively, put the two template rules in different modules, one of which
imports the other, and use xsl:apply-imports.

Mike Kay
Software AG
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]