org.apache.xalan.serialize.SerializerUtils

2005-02-16 Thread Dave Brosius
org.apache.xalan.serialize.SerializerUtils public static boolean isDefinedNSDecl( SerializationHandler serializer, int attr, DTM dtm) does this: if ((null != uri) && uri.equals(dtm.getStringValue(attr))) return true; this part: uri.equals(dtm.getStr

AttributeSet.parseContents

2005-02-16 Thread Dave Brosius
org.apache.xalan.xsltc.compilerAttributeSet parseContents does this: if ((_name == null) || (_name.equals(EMPTYSTRING))) { as _name is a QName, and QName equals uses == this if statement is the same as if (_name == null) which is probably not what is wanted. Probably want if ((_name == null) ||

[jira] Created: (XALANJ-2061) [Patch] Cleanup some dead code

2005-02-16 Thread Dave Brosius (JIRA)
[Patch] Cleanup some dead code -- Key: XALANJ-2061 URL: http://issues.apache.org/jira/browse/XALANJ-2061 Project: XalanJ2 Type: Improvement Versions: CurrentCVS Reporter: Dave Brosius Priority: Trivial This patch cleans u

[jira] Updated: (XALANJ-2061) [Patch] Cleanup some dead code

2005-02-16 Thread Dave Brosius (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-2061?page=history ] Dave Brosius updated XALANJ-2061: - Attachment: simple_dls.patch > [Patch] Cleanup some dead code > -- > > Key: XALANJ-2061 > URL: http://issue

Please check this DocumentCache method

2005-02-16 Thread Dave Brosius
In org/apache/xalan/xsltc/dom/DocumentCache is this method private synchronized void replaceDocument(String uri, CachedDocument doc) { CachedDocument old = (CachedDocument)_references.get(uri); if (doc == null) insertDocument(uri, doc); else _references.put(uri, doc); } This looks suspect t

[jira] Closed: (XALANC-443) Update makefiles to support ICU 3.2

2005-02-16 Thread June Ng (JIRA)
[ http://issues.apache.org/jira/browse/XALANC-443?page=history ] June Ng closed XALANC-443: -- Resolution: Fixed This should be in the latest CVS. > Update makefiles to support ICU 3.2 > --- > > Key: XALANC-443 >

[jira] Updated: (XALANJ-2033) SerializationHandler interface should inlude DTDHandler

2005-02-16 Thread Brian Minchau (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-2033?page=history ] Brian Minchau updated XALANJ-2033: -- Attachment: org.apache.xml.serialzer.2033.2051.patch.txt Attaching patch org.apache.xml.serializer.2033.2051.patch.txt which has fixes for both this is

[jira] Commented: (XALANJ-2051) XML Serializer serializes some DTD information, but not all

2005-02-16 Thread Brian Minchau (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-2051?page=comments#action_59277 ] Brian Minchau commented on XALANJ-2051: --- The fix in this patch is now included in a new patch that I added into XALANJ-2033. There were some technical difficulties wi

[jira] Commented: (XALANJ-1886) Multiple problems with collecting xsl:attributes with over-ridden values and prefix/URI maps

2005-02-16 Thread Henry Zongaro (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-1886?page=comments#action_59274 ] Henry Zongaro commented on XALANJ-1886: --- I have reviewed Brian's "serializer.patch5" patch, and think it is correct. > Multiple problems with collecting xsl:attribute

[jira] Resolved: (XALANJ-2060) put this issue resolution on the roadmap

2005-02-16 Thread Henry Zongaro (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-2060?page=history ] Henry Zongaro resolved XALANJ-2060: --- Resolution: Fixed Sorry about that. I corrected the fix version for the issue. > put this issue resolution on the roadmap > --

[jira] Updated: (XALANJ-1914) Transformation failure in Multithread environment. javax.xml.transform.TransformerException: 5 >= 1

2005-02-16 Thread Henry Zongaro (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-1914?page=history ] Henry Zongaro updated XALANJ-1914: -- Description: Using the currentCVS version of XalanJ2. When I run transformation using single thread, it works fine. When multi threads are using for t

[jira] Commented: (XALANJ-2058) Illegal local variable number in Xalan 2.6 and incorrect output with latest from CVS

2005-02-16 Thread Henry Zongaro (JIRA)
[ http://issues.apache.org/jira/browse/XALANJ-2058?page=comments#action_59259 ] Henry Zongaro commented on XALANJ-2058: --- I have reviewed Yash's patch, and I believe that it correctly resolves the problem. > Illegal local variable number in Xalan

[jira] Created: (XALANJ-2060) put this issue resolution on the roadmap

2005-02-16 Thread Philippe Vijghen (JIRA)
put this issue resolution on the roadmap Key: XALANJ-2060 URL: http://issues.apache.org/jira/browse/XALANJ-2060 Project: XalanJ2 Type: Sub-task Components: Documentation Versions: 2.6 Environment: JIRA Reporte