All,

I just checked in a few bug fixes you might be interested in:
1. Index problem with ceiling. ceiling() function didn't work correctly due
to an incorrect index. (ArrayIndexOutOfBoundsException)

2. count() now returns 0 when the selected object is null. Previously,
count() would return 1, even if the expression didn't return any results.

3. The bug with substring-after() mentioned earlier today on this list:
---------------------------

The current code returns "999/04/01" instead of "99/04/01", it seems
that is due to an error in SubstringAfterFunction.java. The code (line
49) should be :
     return str.substring(loc+match.length());
Instead of
     return str.substring(loc+1);

---------------------------

4. Problem with != and = when the selected value is an attribute, element,or
text node. If compared to a boolean value, the comparisons were not working
correctly.

5. Problem with != or = when the selected list is null or empty.

Let me know if you have any questions or problems.
-Mark



_______________________________________________
Jaxen-interest mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jaxen-interest

Reply via email to