| b045a72b | 16-Nov-2025 |
Damjan Jovanovic <damjan@apache.org> |
Use the correct namespace when converting ODF formulas to MS Excel 2003 XML, so that R1C1 formula is used instead of leaving broken "of:=[.A1]" style references.
Patch by: me Fixes: https://bz.apach
Use the correct namespace when converting ODF formulas to MS Excel 2003 XML, so that R1C1 formula is used instead of leaving broken "of:=[.A1]" style references.
Patch by: me Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=96018
show more ...
|
| da5c8a22 | 09-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Test for October properly. Month 10 will fail both of these tests else if (month > 6 && month < 10) { quarter = "Q3"; longQuarter = "3rd quarter"; } else if (month > 10 && month < 13)
Test for October properly. Month 10 will fail both of these tests else if (month > 6 && month < 10) { quarter = "Q3"; longQuarter = "3rd quarter"; } else if (month > 10 && month < 13) {quarter = "Q4"; longQuarter = "4th quarter"; } as 10 is neither greater nor lesser than 10. Rewrite the comparison to include 10 properly, and clean it up.
Patch by: me Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=94658
show more ...
|
| 10a136b9 | 09-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Fix the test failures in XBreakIteratorTest._isBeginWord() and _isEndWord(). It was failing because the word type differed: it used WordType.ANY_WORD when calling XBreakIterator.isBeginWord() and XBr
Fix the test failures in XBreakIteratorTest._isBeginWord() and _isEndWord(). It was failing because the word type differed: it used WordType.ANY_WORD when calling XBreakIterator.isBeginWord() and XBreakIterator.isEndWord(), but used WordType.ANYWORD_IGNOREWHITESPACES instead when determining word boundaries to test in nextWord().
Patch by: me
show more ...
|
| 07b05676 | 08-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Fix the error and failure in the XCharacterClassificationTest._getScript() unit test. Don't check the surrogate pairs, which getScript() doesn't seem to identify correctly. Also verify the script is
Fix the error and failure in the XCharacterClassificationTest._getScript() unit test. Don't check the surrogate pairs, which getScript() doesn't seem to identify correctly. Also verify the script is in range of our known script value range to avoid ArrayIndexOutOfBoundsException.
Patch by: me
show more ...
|
| 24ef62ed | 08-May-2025 |
Damjan Jovanovic <damjan@apache.org> |
Fix the test failures in XCharacterClassificationTest._getType(). Some of the hardcoded characters no longer had the type they were originally expected to have, probably due to changes in new Unicode
Fix the test failures in XCharacterClassificationTest._getType(). Some of the hardcoded characters no longer had the type they were originally expected to have, probably due to changes in new Unicode versions. Replace them with other characters that have the expected types now.
Patch by: me
show more ...
|