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
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) ||
[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
[ 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
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
[ 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
>
[ 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
[
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
[
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
[ 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
> --
[ 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
[
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
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
13 matches
Mail list logo