|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: apply one template to another
> What XSLT Processor do you use? I didn't use any processor because you (still) haven't posted any input that could be processed!!! However now you point it out you don't apply templates to any children of xforms:instance, so the template matchiong /root/xform/xforms:model/xforms:instance/page/contact" won't be used. It's a general feature of xslt that templates just say what to do _if_ template matching is applied to a matching node, just defining a template doesn't on its own cause anything to happen, you need to apply templates to the node (or at least allow the default template for teh parent node to implictly apply templates to this node). If you want to apply templates to the children of xforms:instance replace <xsl:copy-of select="child::node()"/> by <xsl:apply-templates mode="copy"/. You can also almost certainly just write the match attribute as match="xforms:instance" unless you have other instances of that element elsewhere in the document that you need to handle differently. David
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






