Errors parsing included/imported func:functions and checking for

2002-10-15 Thread Adam van den Hoven
Hi Guys, I'm running into a problem where my imported func:function elements are generating "javax.xml.transform.TransformerException: func:function element must be top level" which doesn't make sense. My understanding is that the whole point is to use imports with func:function since you want t

DO NOT REPLY [Bug 13675] New: - NullPointerException in format-number/BasisLibrary

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java

2002-10-15 Thread santiagopg
santiagopg2002/10/15 16:15:11 Modified:java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java Log: A RuntimeException cannot be constructed from a Throwable with JDKs prior to 1.4. Revision ChangesPath 1.54 +2 -3 xml-xalan/java/src/org/apache/xalan/xsltc/

Re: SQL Extension enhancement/replacement

2002-10-15 Thread John Gentilin
Art, Sounds great. My main concern is that you change to the return data will break most implementations in use today, the same goes with query and pquery although adding a cquery would work just fine. One advantage of query is that it uses a Statement instead of a Prepared Statement. In MSSQL an

Some clarification on EXSLT support.

2002-10-15 Thread Adam van den Hoven
Title: Message Hi all,   I need some clarification on the Xalan documentation. http://xml.apache.org/xalan-j/extensionslib.html#exslt suggests both that func:function and func:result are implemented (in the bullet points) and that they are not (in the following paragraph). Which is right?

DO NOT REPLY [Bug 12317] - TemplatesImp.java serialization fails

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java TransformerFactoryImpl.java

2002-10-15 Thread tmiller
tmiller 2002/10/15 12:54:36 Modified:java/src/org/apache/xalan/xsltc/trax TemplatesImpl.java TransformerFactoryImpl.java Log: bug fix 12317, serialization of Templates is fixed Revision ChangesPath 1.23 +18 -15 xml-xalan/java/src/org/apac

DO NOT REPLY [Bug 13579] - Performance problem with Xalan 2.0 -> 2.4

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java

2002-10-15 Thread santiagopg
santiagopg2002/10/15 10:55:07 Modified:java/src/org/apache/xalan/xsltc/compiler XslElement.java java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java Log: New implementation of xsl:element that properly handles the case where the namespace URI computed at runtim

DO NOT REPLY [Bug 13636] - href problem when transform iso-8859-1 characters

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 13651] New: - Problem with -XSL command-line option - java.net.MalformedURLException: no protocol

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 12317] - TemplatesImp.java serialization fails

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

DO NOT REPLY [Bug 13305] - Crash if TransformerFactory.newInstance called by multiple threads.

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: xml-xalan/java/src/org/apache/xalan/processor TransformerFactoryImpl.java

2002-10-15 Thread ilene
ilene 2002/10/15 07:15:44 Modified:java/src/org/apache/xalan/processor TransformerFactoryImpl.java Log: Patch for bugzilla #13305. Moved initalization code into a static initializer. TransformerFactory.newInstance() can now be called safely from mul

Re: Thread-safety of CachedXPathAPI

2002-10-15 Thread Joseph Kesselman
This isn't a matter of thread-safety but of data integrety; if the cache is out of synch with the document, you will get incorrect results at best. If you are changing the source document, you can *NOT* currently use CachedXPathAPI safely -- or, more accurately, you must discard and reload th

DO NOT REPLY [Bug 13550] - Elements not output using CDATA, but CDATA was requested

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler Output.java Parser.java

2002-10-15 Thread tmiller
tmiller 2002/10/15 06:22:50 Modified:java/src/org/apache/xalan/xsltc/compiler Output.java Parser.java Log: bug fix 13550, for multiple elements, cdata-section-elements attrs are now merged Revision ChangesPath 1.17 +17 -5 xml-xalan/java

Thread-safety of CachedXPathAPI

2002-10-15 Thread camsmith
We currently use XPathAPI.selectSingleNode() for an application which extracts data from XML message text nodes based on a set of XPath query strings. As part of an investigation to improve performance, we are investigating using CachedXPathAPI instead. This certainly is a lot faster (as would b

DO NOT REPLY [Bug 13636] New: - href problem when transform iso-8859-1 characters

2002-10-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_b