[
Lists Home |
Date Index |
Thread Index
]
I wrote -
> [Dave Simmonds]
>
...
> > I have an XML document (schema) that I want to transform using XSL. The
> > transform will be an "almost" identity transform. In other words there
> will
> > be minor changes. Some of the types of changes that I will need to make
> > include the following:
> >...
> You can intercept specified elements by using
>
> <xsl:if test='name()="theElement">
>
> and calling a different template. If you want to get namespace nodes, you
> have to ask some kind of node. This version will get all nodes,
namespace,
> PI, etc.
>
I should have showed an xsl:choose type test instead of an xsl:if, so that
you can do an either..or. But you saw that right away...
Tom P
|