Re: Passing #RTREEFRAG to an Extension...

2001-06-08 Thread jason heddings
Hi Gary- Doh... Thought I had something here. It's nice to use the built-in functions, though. Thanks for your help! Things are working great. --Jason Gary L Peskin wrote: > > Jason -- > > Just FYI, there is already such an extension function in Xalan called > nodeset (http://xml.apache

Re: Passing #RTREEFRAG to an Extension...

2001-06-07 Thread Gary L Peskin
Jason -- Just FYI, there is already such an extension function in Xalan called nodeset (http://xml.apache.org/xalan-j/extensionslib.html#nodeset) that does what you want, I think. Gary jason heddings wrote: > > Gary- > > Thanks for looking into this! I am able to use a Node in the argument >

Re: Passing #RTREEFRAG to an Extension...

2001-06-07 Thread jason heddings
Gary- Thanks for looking into this! I am able to use a Node in the argument list and the processor does find the function. Thank you very much! Here's what I was able to accomplish (in case you're curious): I was trying to mimic the XSL 1.1 spec behavior of creating a tree fragment in an XSL

Re: Passing #RTREEFRAG to an Extension...

2001-06-07 Thread Gary L Peskin
Jason -- Hi. The problem is that we don't currently support DocumentFragment as an argument in a java extension for receiving an RTF. I seem to recall that there was a good reason for this but I don't remember that reason at the moment. So, I'll do some more thinking and either come up with th

Re: Passing #RTREEFRAG to an Extension...

2001-06-07 Thread Gary L Peskin
Jason -- I'm looking into this and will let you know shortly. Gary jason heddings wrote: > > Hello! > > I am trying to create an extension that will accept a Result Tree > Fragment as it's argument. From the Xalan Extensions doc on the site, I > gathered this is of type org.w3c.dom.DocumentF

Passing #RTREEFRAG to an Extension...

2001-06-07 Thread jason heddings
Hello! I am trying to create an extension that will accept a Result Tree Fragment as it's argument. From the Xalan Extensions doc on the site, I gathered this is of type org.w3c.dom.DocumentFragment and I created a method that accepts this argument. The processor is unable to find this method,