xlnt/tests/data/reader
Xpol Wan c18110e282 add support for one cell with different formatted text nodes.
Eg, In one cell the text is abcdef, where abc and def have different format (e.g., different colours or fonts).
The the sharedString.xml in xlsx have multiple r node in si node:

```xml
    <si>
        <r>
            <t>abc</t>
        </r>
        <r>
            <rPr><sz val="10"/><color rgb="FFFF0000"/><rFont val="微软雅黑"/><charset val="134"/></rPr>
            <t>def</t>
        </r>
    </si>
```

Currently `shared_strings_serializer::read_shared_strings()` only reads the first r node, and should consider as a bug.

This commit fixes this bug by read all `r.t.text` values in one `si` node and concat the text into one single string.
2016-05-14 16:24:21 +08:00
..
bigfoot.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
bug137.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
bug275.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
bug304.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
bug328_hyperlinks.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
bug393-worksheet.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
charset-excel.xlsx Add test for charset error when opening valid .xlsx 2016-04-22 16:30:32 +10:00
contains_chartsheets.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
date_1900.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
date_1904.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
empty_rows.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
formatting.xlsx add samples to be used in documentation and to be compiled 2015-11-10 19:16:50 -05:00
formulae.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
merged-ranges.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
null_archive.xlsx integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
shared_strings-max_range.xlsx Add test for duplicate shared string 2016-04-26 13:28:57 +10:00
shared_strings-multiple_r_nodes.xlsx add support for one cell with different formatted text nodes. 2016-05-14 16:24:21 +08:00
sharedStrings.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
sheet2_invalid_dimension.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
sheet2_no_dimension.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
sheet2_no_span.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
sheet2.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
vba-comments-saved.xlsm integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
vba-test.xlsm integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
vba+comments.xlsm integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00
worksheet_formula.xml integrate value into cell, continue synchronizing with openpyxl 2.4 2015-10-13 13:56:07 -04:00