This is an automated email from the ASF dual-hosted git repository.
damjan pushed a change to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
from 1f71f1d8c3 Add support for the new XLSX date type in cells, denoted
with attribute t="d", used by Excel 2010.
new 0285e67f3b Our XSLT-based MS Office 2003 SpreadsheetML format import
filter, when doing conversion from R1C1 style column references to our A1 style
references, had a bug where it was treating the column value as 0-based, and
dividing by 26 to find the 1st letter and taking the remainder when divided by
26 for the second letter. Those numbers are then each converted to a letter [0
= nothing, 1 = "A", 2 = "B", ..., 26 = "Z"].
new 4926b38203 Dates and times are loaded wrongly from SpreadsheetML
files, because the filter loads only the date or time portion of the
ss:DateTime based on the cell's style.
new ffb2f9cdf2 When importing SpreadsheetML ss:DateTime, import the entire
value, not only the first 19 characters.
new d1836b6227 In ODF (19.679.2 of ODF 1.3), the
<table:covered-table-cell> element's table:number-columns-repeated attribute
has a default value of 1, meaning the cell spans the cell to its right. However
when the XSLT import filter converts from SpreadsheetML's ss:MergeAcross to
ODF's table:number-columns-repeated, it always inserts a
<table:covered-table-cell> element, and then adds the
table:number-columns-repeated attribute only if it is greater than 1. This
breaks when ss:Merge [...]
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../import/spreadsheetml/spreadsheetml2ooo.xsl | 45 ++++----
.../Bug100989MergeAcross0AddsExtraEmptyCell.xml | 79 ++++++++++++++
.../sc/fvt/Bug128554FractionalSecondsIgnored.xml | 108 ++++++++++++++++++
.../data/uno/sc/fvt/Bug81233ColumnZReference.xml | 121 +++++++++++++++++++++
4 files changed, 334 insertions(+), 19 deletions(-)
create mode 100644
test/testuno/data/uno/sc/fvt/Bug100989MergeAcross0AddsExtraEmptyCell.xml
create mode 100644
test/testuno/data/uno/sc/fvt/Bug128554FractionalSecondsIgnored.xml
create mode 100644 test/testuno/data/uno/sc/fvt/Bug81233ColumnZReference.xml