[liborcus] branch experimental updated (7fced2c -> 4b8f0a9)

Rene Engelhard rene at moszumanska.debian.org
Sat Nov 18 19:52:14 UTC 2017


This is an automated email from the git hooks/post-receive script.

rene pushed a change to branch experimental
in repository liborcus.

      from  7fced2c   update changelog
      adds  cab6334   upload to unstable
       new  ba7f734   New upstream version 0.13.0
       new  c7dc3e9   Merge tag 'upstream/0.13.0' into experimental
       new  8899494   New upstream version 0.13.1
       new  4b8f0a9   Merge tag 'upstream/0.13.1' into experimental

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS                                            |     5 +-
 CHANGELOG                                          |    54 +-
 ChangeLog                                          |  1985 ++
 Makefile.am                                        |    60 +-
 Makefile.in                                        |    65 +-
 README.md                                          |     8 +-
 benchmark/Makefile.in                              |     3 +
 config.guess                                       |   233 +-
 config.h.in                                        |     3 +
 config.sub                                         |    60 +-
 configure                                          |   332 +-
 configure.ac                                       |    10 +-
 debian/changelog                                   |     6 +
 doc/cli/orcus_csv.rst                              |    22 +-
 doc/cli/orcus_gnumeric.rst                         |    15 +-
 doc/cli/orcus_ods.rst                              |    15 +-
 doc/cli/orcus_xls_xml.rst                          |    15 +-
 doc/cli/orcus_xlsx.rst                             |    15 +-
 doc/conf.py                                        |     6 +-
 doc/cpp/model/json.rst                             |    27 +-
 doc/overview/json.rst                              |   367 +-
 doc_example/Makefile.am                            |    37 +
 {src/python => doc_example}/Makefile.in            |   444 +-
 doc_example/json_doc_1.cpp                         |    56 +
 doc_example/json_doc_2.cpp                         |   195 +
 doc_example/json_parser_1.cpp                      |    88 +
 include/Makefile.in                                |     3 +
 include/orcus/Makefile.in                          |     3 +
 include/orcus/config.hpp                           |    30 +-
 include/orcus/css_parser.hpp                       |    10 +-
 include/orcus/csv_parser.hpp                       |    23 +-
 include/orcus/csv_parser_base.hpp                  |     3 +
 include/orcus/detail/Makefile.in                   |     3 +
 include/orcus/exception.hpp                        |    13 +-
 include/orcus/format_detection.hpp                 |    13 +-
 include/orcus/interface.hpp                        |    10 +-
 include/orcus/json_document_tree.hpp               |   279 +-
 include/orcus/json_parser.hpp                      |    31 +-
 include/orcus/mso/Makefile.in                      |     3 +
 include/orcus/orcus_ods.hpp                        |     9 +-
 include/orcus/orcus_xlsx.hpp                       |    12 +-
 include/orcus/orcus_xml.hpp                        |     3 +
 include/orcus/parser_base.hpp                      |     7 +-
 include/orcus/pstring.hpp                          |     3 +
 include/orcus/sax_parser.hpp                       |    17 +-
 include/orcus/sax_parser_base.hpp                  |     4 +-
 include/orcus/spreadsheet/Makefile.am              |     9 +-
 include/orcus/spreadsheet/Makefile.in              |    22 +-
 include/orcus/spreadsheet/document.hpp             |    15 +-
 include/orcus/spreadsheet/factory.hpp              |    38 +-
 include/orcus/spreadsheet/import_interface.hpp     |   139 +-
 .../orcus/spreadsheet/import_interface_pivot.hpp   |   315 +
 .../orcus/spreadsheet/import_interface_view.hpp    |    97 +
 include/orcus/spreadsheet/pivot.hpp                |   304 +
 include/orcus/spreadsheet/shared_strings.hpp       |     2 +-
 include/orcus/spreadsheet/sheet.hpp                |    62 +-
 include/orcus/spreadsheet/sheet_properties.hpp     |     2 +-
 include/orcus/spreadsheet/styles.hpp               |     1 -
 include/orcus/spreadsheet/types.hpp                |   113 +
 include/orcus/spreadsheet/view.hpp                 |    65 +
 include/orcus/spreadsheet/view_types.hpp           |    78 +
 include/orcus/stream.hpp                           |    18 +-
 include/orcus/types.hpp                            |    34 +-
 include/orcus/yaml_document_tree.hpp               |     3 +
 include/orcus/yaml_parser.hpp                      |   297 +-
 include/orcus/yaml_parser_base.hpp                 |    61 +-
 install-sh                                         |   373 +-
 m4/boost.m4                                        |     6 +
 misc/OpenDocument-v1.2-os-schema.rng               | 18127 +++++++++++++++++++
 misc/ooxml-ecma-376/OfficeOpenXML-XMLSchema.zip    |   Bin 0 -> 222730 bytes
 .../OpenPackagingConventions-XMLSchema.zip         |   Bin 0 -> 3349 bytes
 misc/xls-xml-tokens.txt                            |     3 +
 parser_handlers/Makefile.in                        |     3 +
 parser_handlers/csv.hpp                            |     8 +-
 py-compile                                         |   170 -
 slickedit/orcus.vpj                                |  1043 +-
 src/Makefile.am                                    |    33 +-
 src/Makefile.in                                    |   141 +-
 src/liborcus/Makefile.am                           |     5 +-
 src/liborcus/Makefile.in                           |    23 +-
 src/liborcus/common_test.cpp                       |    28 +
 src/liborcus/config.cpp                            |    23 +-
 src/liborcus/gnumeric_context.cpp                  |     5 +-
 src/liborcus/gnumeric_context.hpp                  |     4 +-
 src/liborcus/gnumeric_sheet_context.cpp            |     5 +-
 src/liborcus/gnumeric_sheet_context.hpp            |     3 +-
 src/liborcus/gnumeric_sheet_context_test.cpp       |    10 +-
 src/liborcus/interface.cpp                         |     4 +-
 src/liborcus/json_document_tree.cpp                |   871 +-
 src/liborcus/json_document_tree_test.cpp           |   470 +-
 src/liborcus/mock_spreadsheet.cpp                  |    31 +-
 src/liborcus/mock_spreadsheet.hpp                  |    19 +-
 src/liborcus/odf_styles_context.cpp                |    20 +-
 src/liborcus/ods_content_xml_context.cpp           |    53 +-
 src/liborcus/ooxml_content_types.cpp               |     2 +
 src/liborcus/ooxml_content_types.hpp               |     5 +-
 src/liborcus/ooxml_namespace_types.cpp             |     4 +
 src/liborcus/ooxml_namespace_types.hpp             |     6 +-
 src/liborcus/ooxml_schemas.cpp                     |     2 +
 src/liborcus/ooxml_schemas.hpp                     |     5 +-
 src/liborcus/ooxml_types.cpp                       |    10 +-
 src/liborcus/ooxml_types.hpp                       |     8 +-
 src/liborcus/opc_context.cpp                       |    12 +-
 src/liborcus/opc_reader.cpp                        |    51 +-
 src/liborcus/opc_reader.hpp                        |     9 +-
 src/liborcus/orcus_csv.cpp                         |    97 +-
 src/liborcus/orcus_gnumeric.cpp                    |     3 +-
 src/liborcus/orcus_import_ods.cpp                  |     2 +-
 src/liborcus/orcus_import_xlsx.cpp                 |     2 +-
 src/liborcus/orcus_ods.cpp                         |    15 +-
 src/liborcus/orcus_xls_xml.cpp                     |    35 +-
 src/liborcus/orcus_xlsx.cpp                        |   229 +-
 src/liborcus/orcus_xml.cpp                         |   116 +-
 src/liborcus/spreadsheet_interface.cpp             |    46 +
 src/liborcus/spreadsheet_types.cpp                 |   210 +
 src/liborcus/xls_xml_context.cpp                   |  1089 +-
 src/liborcus/xls_xml_context.hpp                   |   181 +-
 src/liborcus/xls_xml_token_constants.inl           |  1927 +-
 src/liborcus/xls_xml_tokens.inl                    |  1929 +-
 src/liborcus/xlsx_context.cpp                      |    18 +-
 src/liborcus/xlsx_drawing_context.cpp              |   165 +
 ..._table_context.hpp => xlsx_drawing_context.hpp} |    35 +-
 src/liborcus/xlsx_handler.cpp                      |    30 +-
 src/liborcus/xlsx_handler.hpp                      |    28 +-
 src/liborcus/xlsx_pivot_context.cpp                |  1128 +-
 src/liborcus/xlsx_pivot_context.hpp                |    53 +-
 src/liborcus/xlsx_session_data.cpp                 |     6 +
 src/liborcus/xlsx_session_data.hpp                 |    14 +-
 src/liborcus/xlsx_sheet_context.cpp                |   247 +-
 src/liborcus/xlsx_sheet_context.hpp                |    15 +-
 src/liborcus/xlsx_sheet_context_test.cpp           |    30 +-
 src/liborcus/xlsx_types.hpp                        |    26 +-
 src/liborcus/xlsx_workbook_context.cpp             |   219 +-
 src/liborcus/xlsx_workbook_context.hpp             |    25 +-
 src/liborcus/xml_context_base.cpp                  |    18 +-
 src/liborcus/xml_context_base.hpp                  |     3 +
 src/liborcus/xml_context_global.cpp                |    12 +-
 src/liborcus/xml_context_global.hpp                |     3 +
 src/liborcus/xml_stream_handler.cpp                |     1 +
 src/liborcus/yaml_document_tree.cpp                |     9 +-
 src/liborcus/yaml_document_tree_test.cpp           |   223 +-
 src/mso/Makefile.in                                |     3 +
 src/orcus_csv_main.cpp                             |    47 +-
 src/orcus_filter_global.cpp                        |   256 +-
 src/orcus_filter_global.hpp                        |    31 +-
 src/orcus_gnumeric_main.cpp                        |     2 +-
 src/orcus_json_main.cpp                            |   146 +-
 src/orcus_ods_main.cpp                             |     2 +-
 src/{orcus_csv_main.cpp => orcus_ods_styles.cpp}   |    24 +-
 src/orcus_test_csv.cpp                             |   157 +-
 src/orcus_test_global.cpp                          |    77 +
 src/orcus_test_global.hpp                          |    53 +
 src/orcus_test_xls_xml.cpp                         |   559 +-
 src/orcus_test_xlsx.cpp                            |   955 +-
 src/orcus_test_xml.cpp                             |     5 +-
 src/orcus_test_xml_mapped.cpp                      |    12 +-
 src/orcus_xls_xml_main.cpp                         |     6 +-
 src/orcus_xlsx_main.cpp                            |     6 +-
 src/orcus_yaml_main.cpp                            |    24 +-
 src/parser/Makefile.in                             |     3 +
 src/parser/csv_parser_base.cpp                     |    17 +-
 src/parser/exception.cpp                           |     7 +-
 src/parser/json_parser_thread.cpp                  |     2 +-
 src/parser/parser_global.cpp                       |    82 +-
 src/parser/sax_parser_base.cpp                     |     8 +-
 src/parser/stream.cpp                              |    35 +-
 src/parser/stream_test.cpp                         |    29 +
 src/parser/types.cpp                               |    51 +-
 src/parser/yaml_parser_base.cpp                    |   192 +-
 src/python/Makefile.in                             |     3 +
 src/python/json.cpp                                |    16 +-
 src/spreadsheet/Makefile.am                        |    12 +-
 src/spreadsheet/Makefile.in                        |    81 +-
 src/spreadsheet/csv_dumper.cpp                     |    96 +
 .../{json_dumper.hpp => csv_dumper.hpp}            |    15 +-
 src/spreadsheet/document.cpp                       |   203 +-
 src/spreadsheet/dumper_global.cpp                  |    79 +
 src/spreadsheet/dumper_global.hpp                  |    34 +
 src/spreadsheet/factory.cpp                        |   213 +-
 src/spreadsheet/factory_pivot.cpp                  |   298 +
 src/spreadsheet/factory_pivot.hpp                  |   118 +
 src/spreadsheet/factory_sheet.cpp                  |   212 +
 src/spreadsheet/factory_sheet.hpp                  |    97 +
 src/spreadsheet/json_dumper.cpp                    |   110 +-
 src/spreadsheet/json_dumper.hpp                    |     3 +-
 src/spreadsheet/pivot.cpp                          |   503 +
 src/spreadsheet/shared_strings.cpp                 |     3 +
 src/spreadsheet/sheet.cpp                          |   283 +-
 src/spreadsheet/sheet_properties.cpp               |     4 +-
 src/spreadsheet/styles.cpp                         |     5 -
 src/spreadsheet/view.cpp                           |   191 +
 test-driver                                        |    15 +-
 test/css/basic8.css                                |     2 +-
 test/csv/split-sheet/check-1.txt                   |    42 +
 test/csv/split-sheet/check-2.txt                   |    44 +
 test/csv/split-sheet/check-3.txt                   |    22 +
 test/csv/split-sheet/input.csv                     |    21 +
 .../input.json => python/perf/test_json.py}        |    47 +
 test/xls-xml/bold-and-italic/check.txt             |     5 +
 test/xls-xml/bold-and-italic/input.xml             |   120 +
 test/xls-xml/colored-text/check.txt                |    13 +
 test/xls-xml/colored-text/input.xml                |   136 +
 test/xls-xml/date-time/input.xml                   |    86 +
 test/xls-xml/empty-rows/check.txt                  |     7 +
 test/xls-xml/empty-rows/input.xml                  |    79 +
 test/xls-xml/merged-cells/check.txt                |     7 +
 test/xls-xml/merged-cells/input.xml                |   101 +
 .../xls-xml/named-expression-sheet-local/check.txt |    22 +
 .../xls-xml/named-expression-sheet-local/input.xml |   131 +
 test/xls-xml/named-expression/check.txt            |    12 +
 test/xls-xml/named-expression/input.xml            |    92 +
 test/xls-xml/table/autofilter.xml                  |   180 +
 test/xls-xml/view/cursor-per-sheet.xml             |   164 +
 test/xls-xml/view/cursor-split-pane.xml            |   270 +
 test/xls-xml/view/frozen-pane.xml                  |   155 +
 test/xlsx/boolean-values/check.txt                 |     3 +
 test/xlsx/boolean-values/input.xlsx                |   Bin 0 -> 8272 bytes
 test/xlsx/date-time/input.xlsx                     |   Bin 0 -> 8358 bytes
 test/xlsx/merged-cells/simple.xlsx                 |   Bin 0 -> 9456 bytes
 test/xlsx/named-expression-sheet-local/check.txt   |    22 +
 test/xlsx/named-expression-sheet-local/input.xlsx  |   Bin 0 -> 8921 bytes
 test/xlsx/named-expression/check.txt               |    12 +
 test/xlsx/named-expression/input.xlsx              |   Bin 0 -> 8209 bytes
 test/xlsx/pivot-table/chart-simple.xlsx            |   Bin 0 -> 17470 bytes
 test/xlsx/pivot-table/error-values.xlsx            |   Bin 0 -> 11808 bytes
 test/xlsx/pivot-table/group-by-dates.xlsx          |   Bin 0 -> 14268 bytes
 test/xlsx/pivot-table/group-by-numbers.xlsx        |   Bin 0 -> 12059 bytes
 test/xlsx/pivot-table/group-field.xlsx             |   Bin 0 -> 13165 bytes
 test/xlsx/pivot-table/mixed-type-field.xlsx        |   Bin 0 -> 15206 bytes
 .../three-pivot-tables-on-one-sheet.xlsx           |   Bin 0 -> 17103 bytes
 test/xlsx/table/autofilter-text-filter-1.xlsx      |   Bin 0 -> 9115 bytes
 test/xlsx/view/cursor-per-sheet.xlsx               |   Bin 0 -> 11521 bytes
 test/xlsx/view/cursor-split-pane.xlsx              |   Bin 0 -> 12033 bytes
 test/xlsx/view/frozen-pane.xlsx                    |   Bin 0 -> 9742 bytes
 test/xml-mapped/fuel-economy/check.txt             |     4 +
 test/xml-mapped/fuel-economy/input.xml             |    11 +
 test/xml-mapped/fuel-economy/map.xml               |     8 +
 test/xml/{simple => no-decl-1}/check.txt           |     4 -
 test/xml/no-decl-1/input.xml                       |     8 +
 test/xml/single-quote/check.txt                    |    11 +
 test/xml/single-quote/input.xml                    |     9 +
 test/xml/underscore-identifier/check.txt           |     5 +
 test/xml/underscore-identifier/input.xml           |     4 +
 test/yaml/empty-value-map-1/input.yaml             |     3 +
 test/yaml/empty-value-map-2/input.yaml             |     3 +
 test/yaml/empty-value-sequence-1/input.yaml        |     2 +
 test/yaml/empty-value-sequence-2/input.yaml        |     3 +
 test/yaml/invalids/1.yaml                          |     4 +
 test/yaml/invalids/2.yaml                          |     4 +
 test/yaml/invalids/3.yaml                          |     4 +
 test/yaml/map-key-1/input.yaml                     |     5 +
 251 files changed, 38176 insertions(+), 5160 deletions(-)
 create mode 100644 doc_example/Makefile.am
 copy {src/python => doc_example}/Makefile.in (65%)
 create mode 100644 doc_example/json_doc_1.cpp
 create mode 100644 doc_example/json_doc_2.cpp
 create mode 100644 doc_example/json_parser_1.cpp
 create mode 100644 include/orcus/spreadsheet/import_interface_pivot.hpp
 create mode 100644 include/orcus/spreadsheet/import_interface_view.hpp
 create mode 100644 include/orcus/spreadsheet/pivot.hpp
 create mode 100644 include/orcus/spreadsheet/view.hpp
 create mode 100644 include/orcus/spreadsheet/view_types.hpp
 create mode 100644 misc/OpenDocument-v1.2-os-schema.rng
 create mode 100644 misc/ooxml-ecma-376/OfficeOpenXML-XMLSchema.zip
 create mode 100644 misc/ooxml-ecma-376/OpenPackagingConventions-XMLSchema.zip
 delete mode 100755 py-compile
 create mode 100644 src/liborcus/xlsx_drawing_context.cpp
 copy src/liborcus/{xlsx_table_context.hpp => xlsx_drawing_context.hpp} (64%)
 copy src/{orcus_csv_main.cpp => orcus_ods_styles.cpp} (53%)
 create mode 100644 src/orcus_test_global.cpp
 create mode 100644 src/orcus_test_global.hpp
 create mode 100644 src/spreadsheet/csv_dumper.cpp
 copy src/spreadsheet/{json_dumper.hpp => csv_dumper.hpp} (65%)
 create mode 100644 src/spreadsheet/dumper_global.cpp
 create mode 100644 src/spreadsheet/dumper_global.hpp
 create mode 100644 src/spreadsheet/factory_pivot.cpp
 create mode 100644 src/spreadsheet/factory_pivot.hpp
 create mode 100644 src/spreadsheet/factory_sheet.cpp
 create mode 100644 src/spreadsheet/factory_sheet.hpp
 create mode 100644 src/spreadsheet/pivot.cpp
 create mode 100644 src/spreadsheet/view.cpp
 create mode 100644 test/csv/split-sheet/check-1.txt
 create mode 100644 test/csv/split-sheet/check-2.txt
 create mode 100644 test/csv/split-sheet/check-3.txt
 create mode 100644 test/csv/split-sheet/input.csv
 copy test/{json/swagger/input.json => python/perf/test_json.py} (88%)
 mode change 100644 => 100755
 create mode 100644 test/xls-xml/bold-and-italic/check.txt
 create mode 100644 test/xls-xml/bold-and-italic/input.xml
 create mode 100644 test/xls-xml/colored-text/check.txt
 create mode 100644 test/xls-xml/colored-text/input.xml
 create mode 100644 test/xls-xml/date-time/input.xml
 create mode 100644 test/xls-xml/empty-rows/check.txt
 create mode 100644 test/xls-xml/empty-rows/input.xml
 create mode 100644 test/xls-xml/merged-cells/check.txt
 create mode 100644 test/xls-xml/merged-cells/input.xml
 create mode 100644 test/xls-xml/named-expression-sheet-local/check.txt
 create mode 100644 test/xls-xml/named-expression-sheet-local/input.xml
 create mode 100644 test/xls-xml/named-expression/check.txt
 create mode 100644 test/xls-xml/named-expression/input.xml
 create mode 100644 test/xls-xml/table/autofilter.xml
 create mode 100644 test/xls-xml/view/cursor-per-sheet.xml
 create mode 100644 test/xls-xml/view/cursor-split-pane.xml
 create mode 100644 test/xls-xml/view/frozen-pane.xml
 create mode 100644 test/xlsx/boolean-values/check.txt
 create mode 100644 test/xlsx/boolean-values/input.xlsx
 create mode 100644 test/xlsx/date-time/input.xlsx
 create mode 100644 test/xlsx/merged-cells/simple.xlsx
 create mode 100644 test/xlsx/named-expression-sheet-local/check.txt
 create mode 100644 test/xlsx/named-expression-sheet-local/input.xlsx
 create mode 100644 test/xlsx/named-expression/check.txt
 create mode 100644 test/xlsx/named-expression/input.xlsx
 create mode 100644 test/xlsx/pivot-table/chart-simple.xlsx
 create mode 100644 test/xlsx/pivot-table/error-values.xlsx
 create mode 100644 test/xlsx/pivot-table/group-by-dates.xlsx
 create mode 100644 test/xlsx/pivot-table/group-by-numbers.xlsx
 create mode 100644 test/xlsx/pivot-table/group-field.xlsx
 create mode 100644 test/xlsx/pivot-table/mixed-type-field.xlsx
 create mode 100644 test/xlsx/pivot-table/three-pivot-tables-on-one-sheet.xlsx
 create mode 100644 test/xlsx/table/autofilter-text-filter-1.xlsx
 create mode 100644 test/xlsx/view/cursor-per-sheet.xlsx
 create mode 100644 test/xlsx/view/cursor-split-pane.xlsx
 create mode 100644 test/xlsx/view/frozen-pane.xlsx
 create mode 100644 test/xml-mapped/fuel-economy/check.txt
 create mode 100644 test/xml-mapped/fuel-economy/input.xml
 create mode 100644 test/xml-mapped/fuel-economy/map.xml
 copy test/xml/{simple => no-decl-1}/check.txt (62%)
 create mode 100644 test/xml/no-decl-1/input.xml
 create mode 100644 test/xml/single-quote/check.txt
 create mode 100644 test/xml/single-quote/input.xml
 create mode 100644 test/xml/underscore-identifier/check.txt
 create mode 100644 test/xml/underscore-identifier/input.xml
 create mode 100644 test/yaml/empty-value-map-1/input.yaml
 create mode 100644 test/yaml/empty-value-map-2/input.yaml
 create mode 100644 test/yaml/empty-value-sequence-1/input.yaml
 create mode 100644 test/yaml/empty-value-sequence-2/input.yaml
 create mode 100644 test/yaml/invalids/1.yaml
 create mode 100644 test/yaml/invalids/2.yaml
 create mode 100644 test/yaml/invalids/3.yaml
 create mode 100644 test/yaml/map-key-1/input.yaml

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-openoffice/liborcus.git



More information about the Pkg-openoffice-commits mailing list