Re: Trun-Off Validation for input XML file(Xalan C++).

2001-12-21 Thread david_n_bertoni
I believe validation is off by default. If you have the latest code, you can call XalanTransformer::setUseValidation() and XalanTransformer::getUseValidation() to query and control validation. However, this will not stop Xerces from trying to open the DTD specified by the DOCTYPE. There are ma

DO NOT REPLY [Bug 5528] - DOMBuilder mixes DOM Level 1 and 2

2001-12-21 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_bu

cvs commit: xml-xalan/test/java/src/org/apache/qetest/xslwrapper TraxDOMWrapper.java TraxFileWrapper.java TraxLocalPathWrapper.java TraxSAXWrapper.java TraxStreamWrapper.java TraxSystemIdWrapper.java

2001-12-21 Thread curcuru
curcuru 01/12/21 14:53:27 Modified:test/java/src/org/apache/qetest/xslwrapper TraxDOMWrapper.java TraxFileWrapper.java TraxLocalPathWrapper.java TraxSAXWrapper.java TraxStreamWrapper.java TraxSystemIdWrapper.java

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

2001-12-21 Thread curcuru
curcuru 01/12/21 14:37:21 Modified:test/java/src/org/apache/qetest/xslwrapper TraxWrapperUtils.java Log: Add setAttribute override for both Transformer and TransformerFactory classes Revision ChangesPath 1.4 +60 -8 xml-xalan/test/java/s

Trun-Off Validation for input XML file(Xalan C++).

2001-12-21 Thread Avula, Raj
Hi, I have XML String with DOCTYPE decleration. I want to turn of the validation of input xml with the dtd while transformation. I am using XalanTransformer class. If there any way I can do that. Thanks, Raj.. "MMS " made the following annotations on 12/21/01 13:25:28 --

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

2001-12-21 Thread dbertoni
dbertoni01/12/21 12:06:20 Modified:c/src/XalanSourceTree XalanSourceTreeParserLiaison.cpp Log: Chain up to XercesParserLiaison member. Revision ChangesPath 1.24 +5 -1 xml-xalan/c/src/XalanSourceTree/XalanSourceTreeParserLiaison.cpp Index: XalanSourceTreePa

RE: XalanDOM/Nodesets and exceptions

2001-12-21 Thread Brian Quinlan
Thanks David. I'm working on my Xalan bindings for Python and am trying to figure out a good way to proxy nodesets to and from Python. BTW, here is the coolest thing that I've done with my bindings so far: def intersect(nodeset1, nodeset2): return Pyana.NodeSet([node for node in nodeset

cvs commit: xml-xalan/test test.properties

2001-12-21 Thread dmarston
dmarston01/12/21 11:35:19 Modified:test test.properties Log: Two HREF-encoding tests may have stabilized, at least until we look more deeply at the issue. Revision ChangesPath 1.34 +1 -2 xml-xalan/test/test.properties Index: test.properties ===

cvs commit: xml-xalan/test/tests/conf-gold/output output31.out

2001-12-21 Thread dmarston
dmarston01/12/21 11:32:36 Modified:test/tests/conf-gold/output output31.out Log: Tweak a couple encodings that Xalan-J knows how to do. Revision ChangesPath 1.5 +2 -2 xml-xalan/test/tests/conf-gold/output/output31.out Index: output31.out ===

cvs commit: xml-xalan/test/tests/conf-gold/copy copy51.out

2001-12-21 Thread dmarston
dmarston01/12/21 11:14:12 Added: test/tests/conf-gold/copy copy51.out Log: Add a new test (copy51) to cover a situation that copy31 doesn't exactly cover. Revision ChangesPath 1.1 xml-xalan/test/tests/conf-gold/copy/copy51.out Index: copy51.out

cvs commit: xml-xalan/test/tests/conf/copy copy51.xsl copy51.xml copy31.xsl

2001-12-21 Thread dmarston
dmarston01/12/21 11:13:37 Modified:test/tests/conf/copy copy31.xsl Added: test/tests/conf/copy copy51.xsl copy51.xml Log: Add a new test (copy51) to cover a situation that copy31 doesn't exactly cover. Revision ChangesPath 1.2 +1 -1 xml-xalan/test/te

cvs commit: xml-xalan/test/tests/conf-gold/attribvaltemplate attribvaltemplate07.out

2001-12-21 Thread pauldick
pauldick01/12/21 10:13:52 Modified:test/tests/conf-gold/attribvaltemplate attribvaltemplate07.out Log: No longer encode spaces in uri references Revision ChangesPath 1.2 +1 -1 xml-xalan/test/tests/conf-gold/attribvaltemplate/attribvalt

cvs commit: xml-xalan/c/xdocs/sources/xalan extensions.xml faq.xml getstarted.xml overview.xml readme.xml resources.xml usagepatterns.xml xalan-c-unixdist.gif xalan-c-windist.gif

2001-12-21 Thread dleslie
dleslie 01/12/21 10:13:32 Modified:c/xdocs/sources entities.ent c/xdocs/sources/xalan extensions.xml faq.xml getstarted.xml overview.xml readme.xml resources.xml usagepatterns.xml xalan-c-unixdist.gif

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

2001-12-21 Thread dleslie
dleslie 01/12/21 07:59:26 Modified:c/xdocs/sources/xalan usagepatterns.xml Log: More updates for release 1.3. Revision ChangesPath 1.33 +1 -1 xml-xalan/c/xdocs/sources/xalan/usagepatterns.xml Index: usagepatterns.xml =

Re: serializing with jaxp

2001-12-21 Thread scott_boag
Hello Adrian. I don't see any real easy answers here. I think you're closest with method 1. 1) Create a ContentHandler filter that sits between _transformerHandler and transformer, and screen out the StartDocument events. 2) Set OMIT_XML_DECLARATION on the _transformerHandler, and then add the

cvs commit: xml-xalan/test/tests/conf-gold/output output31.out

2001-12-21 Thread pauldick
pauldick01/12/21 07:25:02 Modified:test/tests/conf-gold/output output31.out Log: No longer encode spaces and percent signs in uri references Revision ChangesPath 1.4 +2 -2 xml-xalan/test/tests/conf-gold/output/output31.out Index: output31.out ==

cvs commit: xml-xalan/c/src/XMLSupport FormatterToHTML.cpp

2001-12-21 Thread dbertoni
dbertoni01/12/21 06:37:13 Modified:c/src/XMLSupport FormatterToHTML.cpp Log: Don't encode spaces in URI attributes. Revision ChangesPath 1.64 +5 -5 xml-xalan/c/src/XMLSupport/FormatterToHTML.cpp Index: FormatterToHTML.cpp

DO NOT REPLY [Bug 5496] - Attlist.getValue and getIndex do not work

2001-12-21 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_bu

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

2001-12-21 Thread jkesselm
jkesselm01/12/21 06:08:00 Modified:java/src/org/apache/xml/utils AttList.java Log: Bugzilla 5496; previously unimplemented functions. Revision ChangesPath 1.7 +20 -4 xml-xalan/java/src/org/apache/xml/utils/AttList.java Index: AttList.java ===

DO NOT REPLY [Bug 5336] - javax.xml.transform.TransformerFactoryConfigurationError

2001-12-21 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_bu

serializing with jaxp

2001-12-21 Thread Stadelmann Adi
hi, here are my trys for serializing sax-events and dom-trees together to one xml using jaxp interfaces: who can explain me, wich way should work? correct xml: aber neisi naeme sie first try:

DO NOT REPLY [Bug 5336] - javax.xml.transform.TransformerFactoryConfigurationError

2001-12-21 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_bu