Launchpad does not know where Xalan hosts its code.

Bazaar branches

Name Status Last Modified Last Commit
lp:~gagern/xalan/test-bugfixes 1 Development 2009-07-28 17:56:14 UTC
1448. XALANJ-2458: implement erratum 23 of ...

Author: Martin von Gagern
Revision Date: 2009-07-28 14:12:13 UTC

XALANJ-2458: implement erratum 23 of the XSLT recommendation

Fixes https://issues.apache.org/jira/browse/XALANJ-2458 :
Xalan-J does not implement erratum 23 of the XSLT recommendation

For xsl:number, with level="any", if there are no matching nodes, Xalan-J
generates a text node with "0". The erratum states that, if there are no
matching nodes, there will be no text node in the result tree.

See the erratum for more details:
http://www.w3.org/1999/11/REC-xslt-19991116-errata/

The test cases have to be updated accordingly.

lp:~gagern/xalan/bugfixes 1 Development 2009-07-28 17:38:57 UTC
4482. XALANJ-2346: fixes for faulty NaN han...

Author: Martin von Gagern
Revision Date: 2009-07-28 17:38:57 UTC

XALANJ-2346: fixes for faulty NaN handling
Fixes https://issues.apache.org/jira/browse/XALANJ-2346
Patch by Dave Brosius

lp:~gagern/xalan/test-trunk 1 Development 2009-07-13 19:58:00 UTC
1447. Added test case for Jira issue XALANC...

Author: dbertoni
Revision Date: 2008-08-15 23:57:23 UTC

Added test case for Jira issue XALANC-680.

lp:~gagern/xalan/trunk 1 Development 2009-07-13 16:45:32 UTC
4471. Part of fix for Jira issue XALANJ-244...

Author: zongaro
Revision Date: 2008-06-19 02:40:41 UTC

Part of fix for Jira issue XALANJ-2446:

The implementation of Parser.getQName(String,String,String) method was ensuring
that any particular pair of namespace URI and local part of the name would
result in a unique QName object. It did not take into account the prefix,
despite the fact that the original prefix might be associated with a different
namespace URI in this new context or no namespace at all.

Fixed this by making getQName take into account all three of the namespace URI,
local part of the name and prefix in order to create unique QName objects.

Some other parts of XSLTC depended on the assumption that a QName object
uniquely identified a pair consisting of the namespace URI and local part of
the name and used object reference comparisons (== or !=) on QName objects.
These comparisons all had to change to use equals(Object) for comparison
instead. The implementation of QName.equals(Object) itself had to change to
consider the namespace URI and local part of the name rather than relying on
object identity.

Part of fix for Jira issue XALANJ-2447:

The handling of exclude-result-prefixes for an xsl:stylesheet had the complete
set of excluded prefixes accumulated on the xsl:stylesheet for the main
stylesheet module. However, the scope of the attribute is supposed to consist
only of elements that are direct descendants of an element that has the
attribute, and does not extend to imported or included stylesheets. The same
is true of namespaces excluded because they have been declared as extension
element prefixes.

Fixed this by maintaining a stack of excluded prefixes that's pushed on entry
to the Stylesheet.parseOwnChildren method and popped on exit from the same.
The push operation clears the current set of excluded prefixes and the pop
operation restores the set of excluded prefixes that were in effect for the
importing or including stylesheet.

Reviewed by Christine Li (jycli () ca ! ibm ! com)

14 of 4 results