Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Scott_Boag
Gary L Peskin <[EMAIL PROTECTED]> wrote: > I kind of like just > documenting: "Here's how you pass in a node-set, here's how you pass in > an RTF, here's how you pass in a Widget ..." with perhaps maybe some > small static methods somewhere to free up some of the tediousness of > creating the ap

cvs commit: xml-xalan/test build.bat

2001-07-31 Thread garyp
garyp 01/07/31 22:54:02 Modified:test build.bat Log: Fix errant label. Support class paths with spaces in them (like c:\Program Files). Revision ChangesPath 1.3 +3 -3 xml-xalan/test/build.bat Index: build.bat =

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > hmm... perhaps we could define a derivative of XNodeSet for this purpose > that overrides the object() call? i.e. XDOMNodeSet created in setParam. > That object() call could return a DOM API instead of just m_obj as XNodeSet > will do. I think this would solve the probl

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Scott_Boag
Gary L Peskin <[EMAIL PROTECTED]> wrote: > The first argument is treated as the > object on which the method is invoked Sorry, in my carelessness I was thinking of a user defined extension with static method call. I didn't realize in your example you were calling getNodeValue directly. > The f

cvs commit: xml-xalan/java/src/org/apache/xpath/patterns StepPattern.java

2001-07-31 Thread sboag
sboag 01/07/31 21:20:35 Modified:java/src/org/apache/xpath/patterns StepPattern.java Log: Fixed some major problems with position() and last() in secondary predicates for match patterns. Credit goes to Mukund Raghavachari/Watson/IBM@IBMUS for flagging these. Revision Ch

Re: Request for Comment, SQL Connection Management

2001-07-31 Thread Gary L Peskin
John -- This sounds fine to me. Gary John Gentilin wrote: > > Request for Comment, SQL Connection Management > > Inside the SQL Extension database connections are > opened when a query or pquery is performed and held > until a corresponding close statement is called. > > Now once you close a

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > > Here's how it's a problem. In my example stylesheet below, would the > > extension mechanism call Node.getNodeValue() which would be the correct > > thing to do or XNodeSet.getNodeValue() which doesn't exist. How would > > it know which to call? > > In either case,

Disregard, worng mailing list --- Re: How do I

2001-07-31 Thread John Gentilin
Opps sorry... John Gentilin wrote: > In a sequence diagram I want to represent the following steps. > > Object a -> Object b > > a call foo() on b > > a calls buildData() on a {message to self) > > an operation in buildData then calls operation goo() on b. > > in the message to self, I want to a

Re: DTM Document Management

2001-07-31 Thread Scott_Boag
> Is this the > correct > behavior ?? Sounds right to me. > There does not seem to be a corresponding method on the DTM interface > to release any resources. Hmm... I'm not adverse to adding a method for this. -scott

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Scott_Boag
Gary L Peskin <[EMAIL PROTECTED]> wrote: > Like I said, I think the original parameter is saved off Ah, right, I forgot about that. Sorry, I didn't catch this in your original message. > Here's how it's a problem. In my example stylesheet below, would the > extension mechanism call Node.getNo

How do I

2001-07-31 Thread John Gentilin
In a sequence diagram I want to represent the following steps. Object a -> Object b a call foo() on b a calls buildData() on a {message to self) an operation in buildData then calls operation goo() on b. in the message to self, I want to attach a call to B. I can do what I want with the recu

Re: Problems with extensions and BSF

2001-07-31 Thread Gary L Peskin
It looks like you're not finding bsf.jar. Can you make sure it's in your classpath along with any jars you may need for javascript? See http://xml.apache.org/xalan-j/extensions.html#supported-lang Gary Justus Neuser wrote: > > Hi, > > I tried to run the extensions samples with Xalan Java > 2

Problems with extensions and BSF

2001-07-31 Thread Justus Neuser
Hi, I tried to run the extensions samples with Xalan Java 2.2D6 (and Java 1.4 beta). The Bsf-Java samples run smoothly but the two Javascript-Bsf samples constantly give error messages like the one below although my classpath settings seem to be correct. Can anyone help me solving this problem? T

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > > > Then, how could you > > tell the difference between someone passing in a DOM Node and someone > > passing in an XNodeSet from the beginning? > > hmmm... > > (For simplicity's sake, let's assume a node right now...) > > In setParameter, check instance of Node. >

Request for Comment, SQL Connection Management

2001-07-31 Thread John Gentilin
Request for Comment, SQL Connection Management Inside the SQL Extension database connections are opened when a query or pquery is performed and held until a corresponding close statement is called. Now once you close a connection, assuming that streaming mode is off, the data is still available

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Scott_Boag
This should be fixed with my last checkin. -scott Scott_Boag@lo

cvs commit: xml-xalan/java/src/org/apache/xpath/axes ChildTestIterator.java OneStepIteratorForward.java

2001-07-31 Thread sboag
sboag 01/07/31 15:23:38 Modified:java/src/org/apache/xpath XPathContext.java java/src/org/apache/xpath/axes ChildTestIterator.java OneStepIteratorForward.java Log: In XPathContext#createDTMIterator(int node), call OneStepIteratorForward(Axis.

[Bug 2939] New: - xsltc fails conf test match16 not doing position numbering relative to the child axis

2001-07-31 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=2939

DTM Document Management

2001-07-31 Thread John Gentilin
In my extension function, I create a DTM Document and register it with the manager. After creating and registering the document but prior to returning it to the Transformer, if an error occurs I create a new DTM Document and register it with the Manager. This new document describes the error that

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Scott_Boag
> Then, how could you > tell the difference between someone passing in a DOM Node and someone > passing in an XNodeSet from the beginning? hmmm... (For simplicity's sake, let's assume a node right now...) In setParameter, check instance of Node. If so, call DTMManager#getDTMHandleFromNode, a

[Bug 1506] - xsltc ingores exclude-result-prefixes attribute of LRE

2001-07-31 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=1506

[Bug 2937] New: - xsltc fails conf test impincl15 not honoring mode in imported xsl

2001-07-31 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=2937

cvs commit: xml-xalan/java/src/org/apache/xalan/templates ElemExtensionDecl.java

2001-07-31 Thread mmidy
mmidy 01/07/31 14:33:18 Modified:java/src/org/apache/xalan/extensions ExtensionHandlerGeneral.java java/src/org/apache/xalan/res XSLTErrorResources.java java/src/org/apache/xalan/templates ElemExtensionDecl.java Log: Add suppor

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Scott_Boag
> DescendantIterator iter = new DescendantIterator(); Geez... what's that all about? > I was thinking of looking at a new "no argument" constructor for > OneStepIteratorForward but I'm not that familiar with it yet. Sounds right. > Scott, do you want to correct this or should > I? I'm going

[Bug 2624] - xsltc fails conf test idkey18, 31, and 32 with runtime errors

2001-07-31 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=2624

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > > > Suppose the parameter was > > passed in with the intent that the stylesheet will pass it unscathed > > through to an extension function. In that case, we've just hosed the > > extension function call since we've changed the incoming parameter. > > Actually, I don'

[Bug 2935] New: - xsltc fails conf test conditional14 on if with subelement

2001-07-31 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=2935

[Bug 2932] New: - xsltc fails conf test axes114 and 115 preceding-sibling::foo[1] vs. (preceding-sibling::foo)[1]

2001-07-31 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=2932

[Bug 2572] - xsltc is failing axes tests 70,73,75,80,81,84,86,96

2001-07-31 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=2572

Re: integration with other products

2001-07-31 Thread Scott_Boag
> We currently use the expat parser; at some stage it would be nice to use the > same parser for xalan. How easy would this be to do? You should make a JAXP 1.1 wrapper for expat, if one doesn't already exist. -scott

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Scott_Boag
> Suppose the parameter was > passed in with the intent that the stylesheet will pass it unscathed > through to an extension function. In that case, we've just hosed the > extension function call since we've changed the incoming parameter. Actually, I don't think so. The node should be looked

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > 2) with just the > default RTF is producing awfully strange results. This seems to be due to a recent change in XPathContext.createDTMIterator(int node). The comments correctly state that this should create a new DTMIterator that holds exactly one node. However, the

[Bug 1512] - xsltc doesn't url-encode spaces in href attribute in html

2001-07-31 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=1512

[Bug 2598] - xsltc fails conf tests copy01,02,03,04 on identity transform

2001-07-31 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=2598

[Bug 2922] - get error null compiling

2001-07-31 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=2922

[Bug 2922] - get error null compiling

2001-07-31 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=2922

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Gary L Peskin
[EMAIL PROTECTED] wrote: > > I think there are two bugs here: > > 1) I don't think we do any special treatment for a DOM node in setParameter > (i.e. produce a DTM adapter). We probably should. See my email on this (it should be arriving shortly -- there seems to be a big delay today). I don'

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

2001-07-31 Thread curcuru
curcuru 01/07/31 12:30:51 Modified:test/java/src/org/apache/qetest/xalanj2 TransformStateAPITest.java Log: Update to use TraxDatalet; ensure all stylesheets checkedin Note: still needs update to cover all API's in simple case Revision ChangesPath

cvs commit: xml-xalan/test/tests/api/xalanj2 TransformStateAPITest.xsl TransformStateAPITest.xml

2001-07-31 Thread curcuru
curcuru 01/07/31 12:30:14 Added: test/tests/api/xalanj2 TransformStateAPITest.xsl TransformStateAPITest.xml Log: Missing test stylesheet/data file for, you guessed it, TransformStateAPITest Revision ChangesPath 1.1 xml-xalan/tes

Re: [Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 Thread Gary L Peskin
Scott -- I fear that John has discovered a case here which highlights the troublesome aspect of restricted interoperability between the DOM and DTM models. He's trying to pass a DOM node into XalanJ as a parameter for use later in the select attribute of an xsl:copy-of element. Unfortunately, X

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Scott_Boag
I think there are two bugs here: 1) I don't think we do any special treatment for a DOM node in setParameter (i.e. produce a DTM adapter). We probably should. 2) with just the default RTF is producing awfully strange results. -scott

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/dom NodeCounter.java

2001-07-31 Thread morten
morten 01/07/31 11:55:58 Modified:java/src/org/apache/xalan/xsltc/dom NodeCounter.java Log: Added a small fix to prevent unwanted output when using the xsl:number element. PR: n/a Obtained from:n/a Submitted by: [EMAIL PROTECTED] Reviewed by: [EMAIL PRO

[Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 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=2925

[Bug 2931] New: - xsltc fails conf test numbering66

2001-07-31 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=2931

Re: SQL Extensions & Streaming Mode

2001-07-31 Thread Scott_Boag
Ah, a filter expression. Make sense. Give me a day to try and figure out what to do about this. -scott [EMAIL PROTECTED]

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

2001-07-31 Thread morten
morten 01/07/31 11:13:23 Modified:java/src/org/apache/xalan/xsltc/compiler VariableBase.java java/src/org/apache/xalan/xsltc/runtime DefaultSAXOutputHandler.java Log: Removed some of the linefeeds we output in the default SAX output handler

Re: bug

2001-07-31 Thread Scott_Boag
Please post bugs on http://nagoya.apache.org/bugzilla/, taking care to enter the relevent version information, and try to provide a full test case. -scott

RE: bug

2001-07-31 Thread Voytenko, Dimitry
Hi Sergey, It looks like this is a bug, but you will probably be able to put "and" expression into first predicate instead of second predicate. At least I never had problems with this. Thanks, Dmitry -Original Message- From: Sergey Vladyko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July

[Bug 2930] New: - Namespaces not supported in XSLTAttributeDef.processQNAMES

2001-07-31 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=2930

Re: bug

2001-07-31 Thread Morten Jorgensen
Please try to pull down the latest version of the XSLTC code. I saw this bug about a week ago and added a fix for it then. Morten Sergey Vladyko wrote: > > ava.lang.ArrayIndexOutOfBoundsException: 2 > 1 > at java.util.Vector.insertElementAt(Vector.java:551) > at org.apache.xala

RE: integration with other products

2001-07-31 Thread Gunnlaugur Thor Briem
Hi Roger, > I'm about to embark on integrating Xalan with one of our products (yes, I've > read the licence agreement and we will be adhering to it) and I was wondering if > there were any FAQs/advice on the topic anywhere. One approach might be to ... try the website! http://xml.apache.org/xal

Re: indent and tag

2001-07-31 Thread Paul_Dick
Noel, If you're using the XalanJ 2.x processor, refer to the following usage pattern note ( http://xml.apache.org/xalan-j/usagepatterns.html#outputprops ) on how to get indenting to be visible. The outputting of spaces for indenting purposes is set to zero for performance reasons, but through

bug

2001-07-31 Thread Sergey Vladyko
ava.lang.ArrayIndexOutOfBoundsException: 2 > 1 at java.util.Vector.insertElementAt(Vector.java:551) at org.apache.xalan.xsltc.runtime.AbstractTranslet.addVariable(Unknown Source) at RequestPageValidate.applyTemplates() at RequestPageValidate.applyTemplates()

Re: XSL Parameters and DOM Nodes

2001-07-31 Thread Gary L Peskin
I'll have a look and post my ideas to bugzilla. Gary John Gentilin wrote: > > Just entered a new bug > > http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2925 > > I am trying to set a parameter from a DOM node that I pulled > from a configuration file. The Stylesheet has a dummy variable > u

integration with other products

2001-07-31 Thread roger . day
I'm about to embark on integrating Xalan with one of our products (yes, I've read the licence agreement and we will be adhering to it) and I was wondering if there were any FAQs/advice on the topic anywhere. We currently use the expat parser; at some stage it would be nice to use the same parser

XSL Parameters and DOM Nodes

2001-07-31 Thread John Gentilin
Just entered a new bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2925 I am trying to set a parameter from a DOM node that I pulled from a configuration file. The Stylesheet has a dummy variable used for test outside of the project that will be replaced during runtime. The example code wa

[Bug 2926] New: - constructor StreamSource(File f) sets incorrect system id for windows platform

2001-07-31 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=2926

[Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 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=2925

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

2001-07-31 Thread Shane_Curcuru
I've created a new, much simpler way to build and run the xalan tests - a single Ant build.xml file in xml-xalan/test. This will eventually replace a number of the helper batch files and properties files in that directory, as well as replacing the xml-xalan/test/java/build.* files and the cruft t

[Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 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=2925

[Bug 2925] - Parameter set from DOM Node, broken

2001-07-31 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=2925

[Bug 2925] New: - Parameter set from DOM Node, broken

2001-07-31 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=2925

Re: Question about disabling namespace in the output of a Xalan transformation

2001-07-31 Thread Gary L Peskin
Have a look at the exclude-result-prefixes attribute of the stylesheet element. You want something like: http://www.w3.org/1999/XSL/Transform"; exclude-result-prefixes="BB"> HTH, Gary MAHE Vincent FTRD/DIH/REN wrote: > > Hello to all XSL gurus, > > I have the following XML tree : >

cvs commit: xml-xalan/java/src/org/apache/xpath/patterns StepPattern.java

2001-07-31 Thread sboag
sboag 01/07/31 09:29:51 Modified:java/src/org/apache/xpath/objects XNodeSet.java XObject.java java/src/org/apache/xpath/patterns StepPattern.java Log: Detach expressions in match patterns. Also, defined numWithSideEffects and boolWithSideEffects (for lack of be

Re: Passing a node-set as the value of a global XSLT parameter (was BUG: xalan:evaluate() does not account for namespace context)

2001-07-31 Thread Gary L Peskin
Evan -- The most likely cause of your functionality problem (as opposed to your performance problem) is that you haven't set up bFactory with bFactory.setNamespaceAware(true); This will allow the building of namespace-aware DOM trees. Please let me know if you're already doing this. On the

Re: SQL Extensions & Streaming Mode

2001-07-31 Thread John Gentilin
Scott, Its both the standard MKay.xsl file and any of the following copy-of select="$table" /> copy-of select="$table/row-set/row" /> copy-of select="$table/column-header" /> I am about to check in a new version that implements error handling today but yesterday's check in will produce the e

RE: XSL output method="text" and indent preservation

2001-07-31 Thread Voytenko, Dimitry
Hi All, I'm afraid "xalan:indent-amount" will not work for "text" output method and especially for Xalan 1.2.2 (I believe it's Xalan 2.X feature). Then your output corresponds to your XML/XSL according to XML and XSLT specifications. In the fragment ChildName childvalue GrandChildName grandch

[Bug 2922] - get error null compiling

2001-07-31 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=2922

Re: cvs commit: xml-xalan/test build.xml test.properties

2001-07-31 Thread Tom Amiro
Shane, This reminded me that I wanted to ask you about running the TrAX API tests on XSTLC -- now that Morten and Todd are just about done implementing the basic functionality. The testing docs were still down the lasted time I checked, so I hope you wouldn't mind giving me a little primer on ho

[Bug 2922] - get error null compiling

2001-07-31 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=2922

cvs commit: xml-xalan/test build.xml test.properties

2001-07-31 Thread curcuru
curcuru 01/07/31 08:34:21 Modified:test build.xml test.properties Log: Implement various xsltc targets; now works to compile xsltc testing classes and run at least -flavor trax.stream Revision ChangesPath 1.4 +32 -10xml-xalan/test/build.xml Index: bu

[Bug 2922] - get error null compiling

2001-07-31 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=2922

[Bug 2922] - get error null compiling

2001-07-31 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=2922

[Bug 2922] New: - get error null compiling

2001-07-31 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=2922

Re: SQL Extensions & Streaming Mode

2001-07-31 Thread Scott_Boag
Can you give me the exact XPaths that WalkingInteratorSorted is being created for? This may be a simple bug that can easily be fixed. -scott John Gentili

[Bug 2921] New: - attribute outside of element with "*|@*" vs "@*|*"

2001-07-31 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=2921

RE: Question about disabling namespace in the output of a Xalan t rans formation

2001-07-31 Thread Bjoern Martin
> I tried what you said and it doesn't change anything, it still put > the xmlns:BB in my output file. Please provide a stylesheet and an xml document that produces the problem on your machine, so we can check if we can reproduce the problem on our machines as well. Regards. -- Bjoern Martin

indent and tag

2001-07-31 Thread Noel L Yap
Is it possible to use to indent the tag? Thanks, Noel This communication is for informational purposes only. It is not intended as an offer or solicitation for the purchase or sale of any financial instrument or as an official confirmation of any transaction. All market prices, data and oth

[Bug 2699] - Register type-error has variable-declaration location dependency

2001-07-31 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=2699

[Bug 2699] - Register type-error has variable-declaration location dependency

2001-07-31 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=2699

RE: Question about disabling namespace in the output of a Xalan trans formation

2001-07-31 Thread MAHE Vincent FTRD/DIH/REN
I tried what you said and it doesn't change anything, it still put the xmlns:BB in my output file. Some more details may help you to understand what's going on : - I'm using a DOMSource for my XML file - I'm using a StreamSource for my XSL file - I'm using a StreamResult f

Re: Xalan-J 2.2.D8 Released

2001-07-31 Thread Shane Curcuru
Yes, individual developers build the D developer releases, which means that various things can affect distro size, including JDK used to compile and any extra files a developer happens to have in their local repository. This is why it's always a good idea to do a clean, then an update of the whol

Re: XSL output method="text" and indent preservation

2001-07-31 Thread Shane Curcuru
Actually, this is a perfect question for the new xalan-j-users list, instead of this xalan-dev list... Thanks Bjoern for providing the answer. Sorry about the frequent confusion on indenting output! Briefly: adding extra spaces to the output slows down the serialization, so as an optimization,

[Bug 2887] - D8 distribution has directory checksum error

2001-07-31 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=2887

cvs commit: xml-xalan/test/tests/api/xalanj2 TraceListenerTest2.xsl TraceListenerTest2.xml

2001-07-31 Thread curcuru
curcuru 01/07/31 03:37:33 Added: test/tests/api/xalanj2 TraceListenerTest2.xsl TraceListenerTest2.xml Log: Additional tests for TraceListenerTest (found missing files!) Revision ChangesPath 1.1 xml-xalan/test/tests/api/xalanj2/T

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler Predicate.java Step.java Stylesheet.java XSLTC.java

2001-07-31 Thread morten
morten 01/07/31 03:04:52 Modified:java/src/org/apache/xalan/xsltc/compiler Predicate.java Step.java Stylesheet.java XSLTC.java Log: Removed type-cast error in Stylesheet.java PR: n/a Obtained from:n/a Submitted by: [EMAIL PROTECTED]

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler VariableBase.java VariableRefBase.java

2001-07-31 Thread morten
morten 01/07/31 02:13:13 Added: java/src/org/apache/xalan/xsltc/compiler VariableBase.java VariableRefBase.java Log: Forgot to add these two in my last putback. PR: none Obtained from:n/a Submitted by: [EMAIL PROTECTED] Reviewed b

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler Expression.java Param.java ParameterRef.java Predicate.java Stylesheet.java SyntaxTreeNode.java Variable.java VariableRef.java WithParam.java

2001-07-31 Thread morten
morten 01/07/31 02:11:52 Modified:java/src/org/apache/xalan/xsltc/compiler Expression.java Param.java ParameterRef.java Predicate.java Stylesheet.java SyntaxTreeNode.java Variable.java VariableRef.java WithParam.ja

Re: Question about disabling namespace in the output of a Xalan trans formation

2001-07-31 Thread Bjoern Martin
> Hello to all XSL gurus, > > I have the following XML tree : > [...] > http://ftrd/BB"; res_link="../../"> > >Hello My Title > > [...] > In my XSL, I use the following output directives : > > > Add the attribute exclude-result-prefixes="BB" to your xsl:stylesheet r

[Bug 2887] - D8 distribution has directory checksum error

2001-07-31 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=2887

Question about disabling namespace in the output of a Xalan transformation

2001-07-31 Thread MAHE Vincent FTRD/DIH/REN
Hello to all XSL gurus, I have the following XML tree : http://ftrd/BB'> ]> http://ftrd/BB"; res_link="../../"> Hello My Title and the following XSL transformation in my stylesheet : It works correctly with Xalan J2.1.0 but how can I say Xalan not to put the name