You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Tobias Wahlström <to...@pricerunner.se> on 2000/07/17 18:06:57 UTC

Building XSL extentions.

Hello!

I want to build some XSL extention tags. Some of them should process its
body after it has been executed. A dummy example:

<my:reverseBody> 
  This text should  be reversed, 
  also the execution result of this tag <xsl:value-of select="@foo"/>
</my:reverseBody>

In the example above I would like to execute all child tags of the extention
tag and put the result in some node. Then I want to process the result node
by e.g appending all character data recursiveley. 

Is this possible?
How do I do?

Greetings,
Tobias Wahlström