Re: Addition of a new function

2001-07-10 Thread Gary L Peskin
Gary L Peskin <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, July 11, 2001 12:49 AM > Subject: Re: Addition of a new function > > > Yes, you can do this. Declare the xalan namespace on the root node of > > your document, like this: > > &g

Re: Addition of a new function

2001-07-10 Thread shruti
can u suggest why ? - Original Message - From: Gary L Peskin <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 12:49 AM Subject: Re: Addition of a new function > Yes, you can do this. Declare the xalan namespace on the root node of > your document

Re: Addition of a new function

2001-07-10 Thread Gary L Peskin
al Message - > From: Gary L Peskin <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, July 04, 2001 11:23 PM > Subject: Re: Addition of a new function > > > Shruti -- > > > > I think you'd be better off by implementing an

Re: Addition of a new function

2001-07-06 Thread shruti
error - Prefix must resolve to a namespace : xalan - Original Message - From: Gary L Peskin <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 04, 2001 11:23 PM Subject: Re: Addition of a new function > Shruti -- > > I think you'd be better o

Re: Addition of a new function

2001-07-04 Thread David_N_Bertoni
uot;shruti" <[EMAIL PROTECTED]To: <[EMAIL PROTECTED]> ltech.com> cc: (bcc: David N Bertoni/CAM/Lotus) Sub

Re: Addition of a new function

2001-07-04 Thread Gary L Peskin
Shruti -- I think you'd be better off by implementing an XSLT extension function rather than changing the core of XalanJ. Have a look at http://xml.apache.org/xalan-j/extensions.html and at the XSLT Recommendation itself. You'd also find some good examples in org.apache.xalan.lib.Extensions. I

Addition of a new function

2001-07-03 Thread shruti
Hello,   i have to add a new function to the xalan's xpath list of functions. i am adding a function for searching a list of words . It would be an extension to the xalan's contains function ...   //book[contains(./,"hello")] //book[contains-words(./,"hello hi","any")] - this would search f