cvs commit: xml-xalan/c/src/XMLSupport XMLParserLiaisonDefault.hpp XMLParserLiaisonDefault.cpp XMLParserLiaison.hpp

2001-07-07 Thread dbertoni
dbertoni01/07/08 00:23:29 Modified:c/src/XMLSupport XMLParserLiaisonDefault.hpp XMLParserLiaisonDefault.cpp XMLParserLiaison.hpp Log: Removed unused stuff. Revision ChangesPath 1.11 +2 -28 xml-xalan/c/src/XMLSupport/XMLParserLiaisonDefaul

cvs commit: xml-xalan/c/src/XercesParserLiaison XercesParserLiaison.hpp XercesParserLiaison.cpp

2001-07-07 Thread dbertoni
dbertoni01/07/08 00:21:57 Modified:c/src/XercesParserLiaison XercesParserLiaison.hpp XercesParserLiaison.cpp Log: Removed unused stuff. Revision ChangesPath 1.25 +0 -19 xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.hpp Inde

cvs commit: xml-xalan/c/src/XalanTransformer XalanCAPI.h

2001-07-07 Thread dbertoni
dbertoni01/07/08 00:20:38 Modified:c/src/XalanTransformer XalanCAPI.h Log: Improved comments. Revision ChangesPath 1.14 +6 -6 xml-xalan/c/src/XalanTransformer/XalanCAPI.h Index: XalanCAPI.h

cvs commit: xml-xalan/c/src/XalanSourceTree XalanSourceTreeParserLiaison.hpp XalanSourceTreeParserLiaison.cpp

2001-07-07 Thread dbertoni
dbertoni01/07/08 00:00:03 Modified:c/src/XalanSourceTree XalanSourceTreeParserLiaison.hpp XalanSourceTreeParserLiaison.cpp Log: Removed unused stuff. Revision ChangesPath 1.11 +0 -15 xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLi

cvs commit: xml-xalan/c/src/PlatformSupport DOMStringHelper.hpp

2001-07-07 Thread dbertoni
dbertoni01/07/07 23:49:50 Modified:c/src/PlatformSupport DOMStringHelper.hpp Log: A few minor changes... Revision ChangesPath 1.46 +2 -9 xml-xalan/c/src/PlatformSupport/DOMStringHelper.hpp Index: DOMStringHelper.hpp ==

cvs commit: xml-xalan/c/src/Include AIXDefinitions.hpp

2001-07-07 Thread dbertoni
dbertoni01/07/07 23:36:36 Modified:c/src/Include AIXDefinitions.hpp Log: New #ifdef for AIX. Revision ChangesPath 1.12 +1 -0 xml-xalan/c/src/Include/AIXDefinitions.hpp Index: AIXDefinitions.hpp

Re: Extension Function returns

2001-07-07 Thread Scott_Boag
> Scott, what do you think? I'm in ExpressionContext anyway with the > getVariable(..) support. Hmm... I think ExpressionContext was intended to eventually be replaced by a standard W3C defined interface. For now at least I think we want to discourage access of proprietary mechanisms such as t

Re: Extension Function returns

2001-07-07 Thread Gary L Peskin
John -- For now, you could cast the ExpressionContext to an XPathContext.XPathExpressionContext and use the getDTMManager() method, like this: public MyExtFunction(ExpressionContext xctxt, ...) { ... DTMManager manager = ((XPathContext.XPathExpressionContext) xctxt).getDTMManager(); ... } I'

Re: Extension Function returns

2001-07-07 Thread John Gentilin
You are probably right. I was under the assumption that the DTM Manager was not in use at all. What I do is in my derived class I have a constructor that takes a ResultSet as its only argument then in the constructor I call super() with all null's or 0's for manager and identity. I was thinking th

Re: Extension Function returns

2001-07-07 Thread Scott_Boag
John, it looks like the problem is that the DTM is not registered with the DTM manager (org.apache.xml.dtm.addDTM(dtm, getFirstFreeDTMID())). Either that, or the return from getDocument() is returning a node handle without the DTM identity set. LocPathIterator#setRoot is apparently getting null

RE: Xalan 2.2.0D6 has great performance gain!

2001-07-07 Thread Li Liang
Well said. Thanks a lot, Scott. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 3:21 PM To: [EMAIL PROTECTED] Subject: RE: Xalan 2.2.0D6 has great performance gain! What Joe said. I can also ramble on a bit on the theory, intent, and

[Bug 1419] - a serious bug in the included org.xml.sax.helpers.AttributesImpl

2001-07-07 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1419 *** shadow/1419 Sun May 20 17:25:40 2001 --- shadow/1419.tmp.4535Sat Jul 7 14:32:38 2001 *** *** 1,19 ! Bug#: 1419 ! Product: XalanJ2 ! Version: 2.0.1 ! Platform: PC ! OS/Version: Other ! Status: NEW ! Resolution:

Re: DocumentFragment arg type in java ext function

2001-07-07 Thread Scott_Boag
Which version are you using? -scott Erwin Bolwidt <[

DocumentFragment arg type in java ext function

2001-07-07 Thread Erwin Bolwidt
Hello, I wonder if there is a reason why an extension function written in Java cannot have a parameter of type DocumentFragment. What I'm doing is trying to pass an xsl:variable, which has a result tree fragment in it, to an extension function in java with the signature: public static NodeSet m

Re: [Bug 2468] - AbsoluteIterator.setStartNode(int) not sufficient to initialize a NodeIterator.

2001-07-07 Thread John Howard
Hi all, The bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2468 is regarding an improperly initialized iterator under special circumstances: when the iterator is for an xpath constructed in the select of a parameter for a template call, and the call is enclosed by a for-each (whew!). I ob

RE: Xalan 2.2.0D6 has great performance gain!

2001-07-07 Thread Scott_Boag
What Joe said. I can also ramble on a bit on the theory, intent, and experience so far... The intent of the DTM is: 1) Reduce garbage collection and heap churn for large trees. 2) Hide the details of implementation of both storage and iteration in the tree implementation. (While the DOM does

Re: matching simple XPaths with XPath expressions

2001-07-07 Thread Scott_Boag
I don't think there is currently anything in the Xalan API or internal methods that helps with this. -scott "Nikolaos

[Bug 1287] - 'd documents do not correctly identify absolute file paths (without using file:// uri)

2001-07-07 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1287 *** shadow/1287 Sun May 20 17:24:57 2001 --- shadow/1287.tmp.1220Sat Jul 7 09:32:58 2001 *** *** 1,19 ! Bug#: 1287 ! Product: XalanJ2 ! Version: 2.0.1 ! Platform: All ! OS/Version: Linux ! Status: NEW ! Resolution