Re: Generating namespaces dynamically

2001-08-09 Thread Gary L Peskin
Tammam -- Would you please add this to bugzilla at http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=XalanJ2 and attach your input XML, input XSLT, actual output, and expected output. I have a fix for this that I am just testing and I expect to commit it soon. BTW, I don't know if you're

Re: [EXPERIMENTAL] Xalan tests updated; check out new build file

2001-08-09 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > If any of you who regularly use the Xalan tests could 'test' this new stuff > out, that would be great. In particular, feedback from Tom Amiro and Gary > Peskin would be great, since I know you two have used this stuff before. > 8-) Shane -- Three things so far: 1.

Follow-up with early starts-with problem ... this time in Xalan J 2.2.D6

2001-08-09 Thread Tom Bradford
I've attached the 3 documents that I'm using to test. Note, that there isn't anything special about them. The processor fails consistently, and not just with the starts-with - 'Lay' thing, it happens in many other starts-with queries as well. Here are the ApplyXPath command lines I'm using to t

Re: [xsl] Xalan, errors and ErrorListener

2001-08-09 Thread Scott_Boag
> Think this might work in Xalan? I'm too tired tonight to know in detail, but: if (cause instanceof SAXParseException) { // details already reported, don't repeat them throw new TransformerConfigurationException("Failed to parse stylesheet"); Is somewhat

Re: Namespace processing

2001-08-09 Thread Scott_Boag
Gary L Peskin <[EMAIL PROTECTED]> wrote: > Is it ResultTreeHandler or is it SerializerToXML and its > offspring? It seems like this is currently being done in > ResultTreeHandler but I think it belongs in SerializerToXML. That way, > SerializerToXML could be used as a proper serializer for any

[Bug 3047] - Xalan failing to escape non UTF-8 characters

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3047

Namespace processing

2001-08-09 Thread Gary L Peskin
Scott, Joe, David -- Is it just me (highly possible in this case) or are there some real issues with namespace processing in XalanJ2. I have been very confused over this, partly due to my own lack of in-depth understanding but I think I grok the issues now. Here are the questions/observations t

Xalan strangeness (Xalan J 2.0.1)

2001-08-09 Thread Tom Bradford
I just noticed something very strange. I have a dbXML collection with about 16000 documents (freedb info). If I do a query like: /disc[starts-with(track, 'Lay')] Our query engine returns 3 documents for Xalan to process. The documents match the XPath. Two of them have a track called 'Layla'

[Bug 2398] - Extension element cannot get NodeList from context Node

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2398

cvs commit: xml-xalan/test/tests/contrib/garypeskin SAX2DTMDesign.html

2001-08-09 Thread garyp
garyp 01/08/09 15:53:19 Modified:test/tests/contrib/garypeskin SAX2DTMDesign.html Log: Correct errors, add namespace nodes, clarify some issues. Revision ChangesPath 1.2 +34 -22xml-xalan/test/tests/contrib/garypeskin/SAX2DTMDesign.html Index: SAX2DTMDesi

Re: [xsl] Xalan, errors and ErrorListener

2001-08-09 Thread Mike Brown
[EMAIL PROTECTED] wrote: > The one problem I see in the above scenario is that the exception gets > passed to the ErrorListener twice... once as an error and once as a fatal > error. I'm not sure how realistically clean this up without a > hasBeenReported flag on Transformer exception, or just as

[Bug 2593] - XSLTC sample code not updated following to to trax sub-dir

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2593

cvs commit: xml-xalan/java/samples/translets JAXPTransletMultipleTransformations.java JAXPTransletOneTransformation.java

2001-08-09 Thread amiro
amiro 01/08/09 15:00:41 Modified:java/samples/translets JAXPTransletMultipleTransformations.java JAXPTransletOneTransformation.java Log: PR: 2593 Changed "runtime" to "trax" in org.apache.xalan.xsltc.runtime Revision Changes

[Bug 2399] - ClassLoaders for WAS Often Fail on compiled classes.

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2399

[Bug 2249] - failed to do identity transformation

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2249

[Bug 3065] - xsltc fails XSLTMark test prettyprint xsl:value-of select="concat('<',name(.),'>')"

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3065

[Bug 3066] - xsltc fails XSLTMark test depth with IndexOutofBounds exception

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3066

Re: [xsl] Xalan, errors and ErrorListener

2001-08-09 Thread Scott_Boag
> Apparently this isn't a very good way to go about it because Xalan's > StylesheetHandler > class catches this new TransformerException, wraps it in a SAXException, > which gets > thrown and makes its way up to the TransformerFactoryImpl which blindly > takes it as a > random parsing error. It t

[Bug 2661] - template parameters missing illegal character remapping

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2661

cvs commit: xml-xalan/java/xdocs/sources/xalan readme.xml resources.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 14:10:48 Modified:java/xdocs/sources/xalan readme.xml resources.xml Log: Updates for 2.2.D9 Revision ChangesPath 1.49 +0 -5 xml-xalan/java/xdocs/sources/xalan/readme.xml Index: readme.xml =

[Bug 2661] - template parameters missing illegal character remapping

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2661

[Bug 3066] - xsltc fails XSLTMark test depth with IndexOutofBounds exception

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3066

[Bug 3066] New: - xsltc fails XSLTMark test depth with IndexOutofBounds exception

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3066

cvs commit: xml-xalan/c/src/XSLT TraceListenerDefault.cpp

2001-08-09 Thread dbertoni
dbertoni01/08/09 13:32:23 Modified:c/src/XSLT TraceListenerDefault.cpp Log: Changed call to get text for ElemLiteralResult. Revision ChangesPath 1.9 +1 -1 xml-xalan/c/src/XSLT/TraceListenerDefault.cpp Index: TraceListenerDefault.cpp

Re: [xsl] Xalan, errors and ErrorListener

2001-08-09 Thread Myriam_Midy
I am forwarding this question to the xalan list where it really belongs and one of us will take a look at it. Hopefully you are subscribed to the xalan list ([EMAIL PROTECTED]). Myriam

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

2001-08-09 Thread dbertoni
dbertoni01/08/09 13:30:27 Modified:c/src/PlatformSupport XalanOutputStream.cpp XalanOutputStream.hpp Log: Added option to disable throwing exceptions during transcoding. Revision ChangesPath 1.12 +17 -3 xml-xalan/c/src/PlatformSupport/Xal

cvs commit: xml-xalan/c/src/PlatformSupport XalanOutputStreamPrintWriter.cpp

2001-08-09 Thread dbertoni
dbertoni01/08/09 13:30:06 Modified:c/src/PlatformSupport XalanOutputStreamPrintWriter.cpp Log: Pass length to write(). Revision ChangesPath 1.5 +1 -1 xml-xalan/c/src/PlatformSupport/XalanOutputStreamPrintWriter.cpp Index: XalanOutputStreamPrintWriter.cpp

cvs commit: xml-xalan/c/xdocs DoxyfileXalan

2001-08-09 Thread dleslie
dleslie 01/08/09 13:18:30 Modified:c/xdocs DoxyfileXalan Log: Added XalanExtensions to Doxygen build. Revision ChangesPath 1.10 +1 -1 xml-xalan/c/xdocs/DoxyfileXalan Index: DoxyfileXalan ==

cvs commit: xml-xalan/c/xdocs/sources/xalan readme.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 13:16:11 Modified:c/xdocs/sources/xalan readme.xml Log: Added link to extensions library. Revision ChangesPath 1.27 +1 -1 xml-xalan/c/xdocs/sources/xalan/readme.xml Index: readme.xml ==

cvs commit: xml-xalan/c/xdocs/sources/xalan extensionslib.xml history.xml index.xml readme.xml resources.xml samples.xml usagepatterns.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 13:10:36 Modified:c/xdocs/sources entities.ent xalan.xml xalanLocal.xml c/xdocs/sources/xalan history.xml index.xml readme.xml resources.xml samples.xml usagepatterns.xml Added: c/xdocs/sources/xalan extensionslib.xml Log

cvs commit: xml-xalan/c/samples/XalanTransformerCallback XalanTransformerCallback.cpp

2001-08-09 Thread dleslie
dleslie 01/08/09 13:09:26 Modified:c/samples/XalanTransformerCallback XalanTransformerCallback.cpp Log: Corrected typo in comment. Revision ChangesPath 1.3 +1 -1 xml-xalan/c/samples/XalanTransformerCallback/XalanTransformerCallback.cpp

[Bug 3065] New: - xsltc fails XSLTMark test prettyprint xsl:value-of select="concat('<',name(.),'>')"

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3065

[Bug 3047] - Xalan failing to escape non UTF-8 characters

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3047

[Bug 3047] - Xalan failing to escape non UTF-8 characters

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3047

cvs commit: xml-xalan/java/src/org/apache/xml/utils SystemIDResolver.java

2001-08-09 Thread mmidy
mmidy 01/08/09 11:32:55 Modified:java/src/org/apache/xalan/processor TransformerFactoryImpl.java java/src/org/apache/xalan/transformer TransformerIdentityImpl.java java/src/org/apache/xml/utils SystemIDResol

cvs commit: xml-xalan/java/src/org/apache/xalan/transformer ResultTreeHandler.java TransformerImpl.java

2001-08-09 Thread mmidy
mmidy 01/08/09 11:29:05 Modified:java/src/org/apache/xalan/transformer ResultTreeHandler.java TransformerImpl.java Log: Implement ErrorHandler in ResultTreeHandler so that fatal errors can get passed in to the SAXHandler. Also change the code in Transforme

Re: Generating namespaces dynamically

2001-08-09 Thread Gary L Peskin
Tammam -- Just to let you know that I'm still working on this. This example has revealed a number of problems with the current XalanJ and I am isolating those and correcting them. Some are pretty fundamental so I'm trying to rejuvenate my comprehensive testing environment using Shane's new Ant-

RE: Xalan 1 -> Xalan 2

2001-08-09 Thread Voytenko, Dimitry
It's actually all in TRAX API. And there're examples on the Xalan 2 site. Can be something like: TransformerFactory t_factory = TransformerFactory.newInstance (); javax.xml.transform.Templates templates = t_factory.newTemplates (new javax.xml.transform.stream.StreamSour

cvs commit: xml-xalan/test/tests/bugzilla Bugzilla3060.xsl Bugzilla3060.xml Bugzilla3060.out

2001-08-09 Thread garyp
garyp 01/08/09 10:16:33 Added: test/tests/bugzilla Bugzilla3060.xsl Bugzilla3060.xml Bugzilla3060.out Log: Test for xmlns:foo="foo" where prefix is the same as the URI. Revision ChangesPath 1.1 xml-xalan/test/tests/bugzilla/Bu

cvs commit: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM.java

2001-08-09 Thread garyp
garyp 01/08/09 10:13:15 Modified:java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM.java Log: Fix for bugzilla 3060 (http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3060). Prefixes and namespaceURIs are kept in the same Vector, m_prefixMappings. The entries are stored as pair

[Bug 3060] - xmlns:foo="foo" causes ArrayIndexOutOfBounds

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3060

Xalan 1 -> Xalan 2

2001-08-09 Thread Pete Clark
Here's some code from Xalan 1. How do I do this in Xalan 2? ... out = new ByteArrayOutputStream(); ByteArrayInputStream bin = new ByteArrayInputStream(out.toByteArray()); XSLTProcessor processor = XSLTProcessorFactory.getProcessor(); Document response = builder.newDocument(); processor.process(n

[Bug 3060] New: - xmlns:foo="foo" causes ArrayIndexOutOfBounds

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3060

[Bug 3047] - Xalan failing to escape non UTF-8 characters

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3047

Re: Xalan/ICU integration bugs?

2001-08-09 Thread David_N_Bertoni
Hi Daniel, If you're having problems building Xerces, then you should post something on the Xerces list -- we can't help you with that. As far as the problems you're seeing with tracing -- it's not surprising, but we should be handling it a bit better. The issue is that transcoding to the loca

cvs commit: xml-xalan/java/xdocs/sources/xalan history.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 07:15:29 Modified:java/xdocs/sources/xalan history.xml Log: Fixed 2 typos. Revision ChangesPath 1.15 +2 -2 xml-xalan/java/xdocs/sources/xalan/history.xml Index: history.xml

cvs commit: xml-xalan/java/xdocs/sources/xalan history.xml index.xml readme.xml xsltc_constraints.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 07:11:41 Modified:java/xdocs/sources/xalan history.xml index.xml readme.xml xsltc_constraints.xml Log: Move changes to history to prepare for next release. Revision ChangesPath 1.14 +104 -0xml-xalan/java/xdocs/sources/xal

cvs commit: xml-xalan/java/xdocs/sources entities.ent xalan-jsite.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 07:10:55 Modified:java/xdocs/sources entities.ent xalan-jsite.xml Log: Update release number. Revision ChangesPath 1.33 +2 -2 xml-xalan/java/xdocs/sources/entities.ent Index: entities.ent =

cvs commit: xml-xalan/java/xdocs/sources/xalan extensionslib.xml readme.xml samples.xml

2001-08-09 Thread dleslie
dleslie 01/08/09 06:51:33 Modified:java/xdocs/sources/xalan extensionslib.xml readme.xml samples.xml Log: SQL Extension libary working again! Revision ChangesPath 1.17 +0 -1 xml-xalan/java/xdocs/sources/xalan/extensionslib.xml Index

cvs commit: xml-xalan/java/samples/extensions/sql/show-error invalidConn.xsl

2001-08-09 Thread dleslie
dleslie 01/08/09 06:50:45 Modified:java/samples/extensions/sql/show-error invalidConn.xsl Log: Specified that attempts to connect to a non-existant database. Revision ChangesPath 1.2 +1 -69 xml-xalan/java/samples/extensions/sql/show-error/invalidConn.xsl I

RE: Systemid syntax for files.

2001-08-09 Thread Myriam_Midy
I am currently working on fixing some of these bugs. Stay tuned... Myriam Stephane Bailliez

[Bug 3047] - Xalan failing to escape non UTF-8 characters

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3047

[Bug 3056] New: - error processing DOCTYPE line

2001-08-09 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3056

RE: Systemid syntax for files.

2001-08-09 Thread Stephane Bailliez
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > you "Stephane Bailliez" <[EMAIL PROTECTED]> wrote > > Now the final question: what is the systemid syntax for files ? :-) > > Ah-ha! I was just looking into that yesterday. I think I've come to a > 'go

cvs commit: xml-xalan/test/java/src/org/apache/qetest QetestUtils.java

2001-08-09 Thread curcuru
curcuru 01/08/09 04:57:33 Modified:test/java/src/org/apache/qetest QetestUtils.java Log: Fix possible bug: when checking for leading slash, check the current tmp name, not the original filename, so we always end up with 3 slashes; this should result in better names on UNIX syste

Re: Systemid syntax for files.

2001-08-09 Thread Shane_Curcuru
you "Stephane Bailliez" <[EMAIL PROTECTED]> wrote > Now the final question: what is the systemid syntax for files ? :-) Ah-ha! I was just looking into that yesterday. I think I've come to a 'good enough' conclusion although I'm still not quite happy with it. (Of course the difference

RE: Xalan-J: list of referenced DOM nodes for an XPath expression?

2001-08-09 Thread Mikko Honkala
Scott, I would have been surprised if you wouldn't have raised the performance issue. I was thinkin about that myself. To explain my case a little further: In XForms there can be calculations between XML nodes. These calculcations are arbitrary XPath expressions. So, if one node value changes,