1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
|
SUBDIRS = src include
if WITH_BENCHMARK
SUBDIRS += benchmark
endif
if WITH_DOC_EXAMPLE
SUBDIRS += doc_example
endif
ACLOCAL_AMFLAGS = -I m4
pcfiles = liborcus-@ORCUS_API_VERSION@.pc
if BUILD_SPREADSHEET_MODEL
pcfiles += liborcus-spreadsheet-model-@ORCUS_API_VERSION@.pc
endif
pkgconfig_DATA = $(pcfiles)
pkgconfigdir = $(libdir)/pkgconfig
# use this command to help generate the file lists below:
# git ls-tree -r --name-only HEAD -- {path} | sed -e 's/^/\t/g' -e 's/$/\ \\/g' -e 's/#/\\#/g'
doc_data = \
doc/_static/cli/orcus-csv-help.txt \
doc/_static/cli/orcus-gnumeric-help.txt \
doc/_static/cli/orcus-json-help.txt \
doc/_static/cli/orcus-ods-help.txt \
doc/_static/cli/orcus-parquet-help.txt \
doc/_static/cli/orcus-xls-xml-help.txt \
doc/_static/cli/orcus-xlsx-help.txt \
doc/_static/cli/orcus-xml-help.txt \
doc/_static/cli/orcus-yaml-help.txt \
doc/_static/images/overview/doc-content.png \
doc/_static/images/overview/multi-sheets-sheet1.png \
doc/_static/images/overview/multi-sheets-sheet2.png \
doc/cli/index.rst \
doc/cli/orcus_csv.rst \
doc/cli/orcus_gnumeric.rst \
doc/cli/orcus_json.rst \
doc/cli/orcus_ods.rst \
doc/cli/orcus_parquet.rst \
doc/cli/orcus_xls_xml.rst \
doc/cli/orcus_xlsx.rst \
doc/cli/orcus_xml.rst \
doc/cli/orcus_yaml.rst \
doc/conf.py \
doc/cpp/index.rst \
doc/cpp/orcus/css/index.rst \
doc/cpp/orcus/csv/index.rst \
doc/cpp/orcus/detail/index.rst \
doc/cpp/orcus/detail/thread/index.rst \
doc/cpp/orcus/dom/index.rst \
doc/cpp/orcus/iface/index.rst \
doc/cpp/orcus/index.rst \
doc/cpp/orcus/json/detail/index.rst \
doc/cpp/orcus/json/detail/init/index.rst \
doc/cpp/orcus/json/index.rst \
doc/cpp/orcus/sax/detail/index.rst \
doc/cpp/orcus/sax/index.rst \
doc/cpp/orcus/spreadsheet/iface/index.rst \
doc/cpp/orcus/spreadsheet/index.rst \
doc/cpp/orcus/yaml/detail/index.rst \
doc/cpp/orcus/yaml/index.rst \
doc/doxygen.conf \
doc/environment.yml \
doc/index.rst \
doc/notes/index.rst \
doc/notes/json_map/example.json \
doc/notes/json_map/index.rst \
doc/notes/xml_map/example.xml \
doc/notes/xml_map/index.rst \
doc/overview/doc-orcus.rst \
doc/overview/doc-user.rst \
doc/overview/index.rst \
doc/overview/json/doctree-direct.rst \
doc/overview/json/doctree.rst \
doc/overview/json/index.rst \
doc/overview/json/parser.rst \
doc/overview/json/subtree.rst \
doc/overview/yaml/index.rst \
doc/python/index.rst \
doc/python/orcus/cell.rst \
doc/python/orcus/cell_type.rst \
doc/python/orcus/csv/index.rst \
doc/python/orcus/document.rst \
doc/python/orcus/format_type.rst \
doc/python/orcus/formula_token.rst \
doc/python/orcus/formula_token_op.rst \
doc/python/orcus/formula_token_type.rst \
doc/python/orcus/formula_tokens.rst \
doc/python/orcus/gnumeric/index.rst \
doc/python/orcus/index.rst \
doc/python/orcus/named_expressions.rst \
doc/python/orcus/ods/index.rst \
doc/python/orcus/sheet.rst \
doc/python/orcus/sheet_rows.rst \
doc/python/orcus/tools/bugzilla.rst \
doc/python/orcus/tools/file_processor.rst \
doc/python/orcus/tools/index.rst \
doc/python/orcus/xls_xml/index.rst \
doc/python/orcus/xlsx/index.rst \
doc/requirements.txt
doc_example_data = \
doc_example/Makefile.am \
doc_example/files/document.ods \
doc_example/files/multi-sheets.ods \
doc_example/json_doc_1.cpp \
doc_example/json_doc_2.cpp \
doc_example/json_parser_1.cpp \
doc_example/json_subtree_1.cpp \
doc_example/spreadsheet_doc_1.cpp \
doc_example/spreadsheet_doc_1_num_and_formula.cpp \
doc_example/spreadsheet_doc_2.cpp \
doc_example/spreadsheet_doc_2_sheets_no_string_pool.cpp \
doc_example/spreadsheet_doc_2_sheets_with_formula.cpp \
doc_example/spreadsheet_doc_2_sheets_with_string_pool.cpp \
doc_example/xml_mapping_1.cpp
bin_data = \
bin/build-extra-dist.sh \
bin/env-osx.sh \
bin/env.sh \
bin/gen-cli-help.sh \
bin/gen-files.py \
bin/gen-gfm-release-table.sh \
bin/gen-test-json-structure-outputs.sh \
bin/gen-test-xml-outputs.sh \
bin/parse-doxygen-xml.py \
bin/run-bulk-tests.py \
bin/run-python.sh \
bin/unpack-zipped-xml.sh
misc_data = \
misc/arrow-parquet/arrow-test.cpp \
misc/arrow-parquet/dump-parquet.py \
misc/arrow-parquet/gen-parquet-test-files.py \
misc/character-set/data.csv \
misc/character-set/gen-enum.py \
misc/file-processor-modules/preview.py \
misc/notes/column-width-and-row-height.txt \
misc/notes/zlib-in-memory-gzip.txt \
misc/xml-tokens/dump-xsd-keys.py \
misc/xml-tokens/gen-gnumeric-tokens.py \
misc/xml-tokens/gen-odf-tokens.py \
misc/xml-tokens/gen-ooxml-tokens.py \
misc/xml-tokens/gen-tokens.py \
misc/xml-tokens/gnumeric-extra-tokens.txt \
misc/xml-tokens/ooxml-extra-tokens.txt \
misc/xml-tokens/token_util.py \
misc/xml-tokens/xls-xml-tokens.txt
# run `git ls-tree -r --name-only HEAD -- test | sed -e 's/^/\t/g' -e '$!s/$/\ \\/g' -e 's/#/\\#/g'`
# to update this list.
test_data = \
test/css/basic1.css \
test/css/basic10.css \
test/css/basic11.css \
test/css/basic12.css \
test/css/basic13.css \
test/css/basic14.css \
test/css/basic2.css \
test/css/basic3.css \
test/css/basic4.css \
test/css/basic5.css \
test/css/basic6.css \
test/css/basic7.css \
test/css/basic8.css \
test/css/basic9.css \
test/css/chained1.css \
test/css/chained2.css \
test/css/complex/callout.css \
test/css/complex/excel-html.css \
test/css/empty.css \
test/css/invalids/1.css \
test/css/test.css \
test/css/utf8-1.css \
test/csv/double-quotes/check.txt \
test/csv/double-quotes/input.csv \
test/csv/normal-quotes/check.txt \
test/csv/normal-quotes/input.csv \
test/csv/quoted-with-delim/check.txt \
test/csv/quoted-with-delim/input.csv \
test/csv/simple-numbers/check.txt \
test/csv/simple-numbers/input.csv \
test/csv/split-sheet/check-1.txt \
test/csv/split-sheet/check-2.txt \
test/csv/split-sheet/check-3.txt \
test/csv/split-sheet/input.csv \
test/gnumeric/background-color/standard.gnumeric \
test/gnumeric/borders/colors.gnumeric \
test/gnumeric/borders/directions.gnumeric \
test/gnumeric/borders/grid-box.gnumeric \
test/gnumeric/borders/single-cells.gnumeric \
test/gnumeric/cell-properties/wrap-and-shrink.gnumeric \
test/gnumeric/cell-value-types/check.txt \
test/gnumeric/cell-value-types/input.gnumeric \
test/gnumeric/colored-text/input.gnumeric \
test/gnumeric/column-width-row-height/input.gnumeric \
test/gnumeric/detect/文件名是中文.gnumeric \
test/gnumeric/formula-cells/check.txt \
test/gnumeric/formula-cells/input.gnumeric \
test/gnumeric/hidden-rows-columns/input.gnumeric \
test/gnumeric/merged-cells/input.gnumeric \
test/gnumeric/named-expression-sheet-local/check.txt \
test/gnumeric/named-expression-sheet-local/input.gnumeric \
test/gnumeric/named-expression/check.txt \
test/gnumeric/named-expression/input.gnumeric \
test/gnumeric/number-formats/input.gnumeric \
test/gnumeric/raw-values-1/check.txt \
test/gnumeric/raw-values-1/input.gnumeric \
test/gnumeric/table/autofilter-multi-rules.gnumeric \
test/gnumeric/table/autofilter-number.gnumeric \
test/gnumeric/table/autofilter-text.gnumeric \
test/gnumeric/test.gnumeric \
test/gnumeric/text-alignment/input.gnumeric \
test/gnumeric/text-formats/basic.gnumeric \
test/gnumeric/text-formats/underline.gnumeric \
test/json-mapped/array-of-arrays-basic/check.txt \
test/json-mapped/array-of-arrays-basic/input.json \
test/json-mapped/array-of-arrays-basic/map.json \
test/json-mapped/array-of-arrays-header/check.txt \
test/json-mapped/array-of-arrays-header/input.json \
test/json-mapped/array-of-arrays-header/map.json \
test/json-mapped/array-of-objects-basic/check.txt \
test/json-mapped/array-of-objects-basic/input.json \
test/json-mapped/array-of-objects-basic/map.json \
test/json-mapped/array-of-objects-header/check.txt \
test/json-mapped/array-of-objects-header/input.json \
test/json-mapped/array-of-objects-header/map.json \
test/json-mapped/auto-mapping/list-of-objects-two-sheets/check.txt \
test/json-mapped/auto-mapping/list-of-objects-two-sheets/input.json \
test/json-mapped/auto-mapping/list-of-objects/check.txt \
test/json-mapped/auto-mapping/list-of-objects/input.json \
test/json-mapped/auto-mapping/nested-arrays-two-sheets/check.txt \
test/json-mapped/auto-mapping/nested-arrays-two-sheets/input.json \
test/json-mapped/auto-mapping/nested-arrays/check.txt \
test/json-mapped/auto-mapping/nested-arrays/input.json \
test/json-mapped/nested-repeats-2/check.txt \
test/json-mapped/nested-repeats-2/input.json \
test/json-mapped/nested-repeats-2/map.json \
test/json-mapped/nested-repeats/check.txt \
test/json-mapped/nested-repeats/input.json \
test/json-mapped/nested-repeats/map.json \
test/json-structure/arrays-in-object/check.txt \
test/json-structure/arrays-in-object/input.json \
test/json-structure/multiple-ranges/check.txt \
test/json-structure/multiple-ranges/input.json \
test/json-structure/nested-arrays-mixed-2/check.txt \
test/json-structure/nested-arrays-mixed-2/input.json \
test/json-structure/nested-arrays-mixed/check.txt \
test/json-structure/nested-arrays-mixed/input.json \
test/json-structure/nested-arrays/check.txt \
test/json-structure/nested-arrays/input.json \
test/json-structure/no-value-nodes/01.json \
test/json-structure/no-value-nodes/02.json \
test/json-structure/no-value-nodes/03.json \
test/json-structure/no-value-nodes/04.json \
test/json-structure/repeat-objects-2/check.txt \
test/json-structure/repeat-objects-2/input.json \
test/json-structure/repeat-objects/check.txt \
test/json-structure/repeat-objects/input.json \
test/json/basic1/check.txt \
test/json/basic1/input.json \
test/json/basic1/output.yaml \
test/json/basic2/check.txt \
test/json/basic2/input.json \
test/json/basic2/output.yaml \
test/json/basic3/check.txt \
test/json/basic3/input.json \
test/json/basic3/output.yaml \
test/json/basic4/check.txt \
test/json/basic4/input.json \
test/json/basic4/output.yaml \
test/json/empty-array-1/check.txt \
test/json/empty-array-1/input.json \
test/json/empty-array-2/check.txt \
test/json/empty-array-2/input.json \
test/json/empty-array-3/check.txt \
test/json/empty-array-3/input.json \
test/json/escape-control/not-printable/input.json \
test/json/escape-control/not-printable/output.json \
test/json/escape-control/printable/check.txt \
test/json/escape-control/printable/input.json \
test/json/escape-surrogate/mix/input.json \
test/json/escape-surrogate/mix/output.json \
test/json/escape-surrogate/one-char-nbsp/input.json \
test/json/escape-surrogate/one-char-nbsp/output.json \
test/json/escape-surrogate/one-char-with-ba/input.json \
test/json/escape-surrogate/one-char-with-ba/output.json \
test/json/escape-surrogate/one-char/check.txt \
test/json/escape-surrogate/one-char/input.json \
test/json/escape-surrogate/two-chars-with-bc/input.json \
test/json/escape-surrogate/two-chars-with-bc/output.json \
test/json/escape-surrogate/two-chars/check.txt \
test/json/escape-surrogate/two-chars/input.json \
test/json/nested1/check.txt \
test/json/nested1/input.json \
test/json/nested1/output.yaml \
test/json/nested2/check.txt \
test/json/nested2/input.json \
test/json/nested2/output.yaml \
test/json/refs1/check.txt \
test/json/refs1/input.json \
test/json/refs1/ref.json \
test/json/subtree/array-of-objects/input.json \
test/json/subtree/array-of-objects/output-0.json \
test/json/subtree/array-of-objects/output-1.json \
test/json/subtree/array-of-objects/output-3.json \
test/json/subtree/array-of-objects/output-spec-0.json \
test/json/subtree/array-of-objects/output-spec-1.json \
test/json/subtree/array-of-objects/output-spec-2.json \
test/json/subtree/medium1/input.json \
test/json/subtree/medium1/output-0.json \
test/json/subtree/medium1/output-1.json \
test/json/subtree/medium1/output-2.json \
test/json/subtree/medium1/output-3.json \
test/json/subtree/medium1/output-spec-0.json \
test/json/subtree/medium1/output-spec-1.json \
test/json/subtree/medium1/output-spec-2.json \
test/json/subtree/medium1/output-spec-3.json \
test/json/subtree/medium1/output-spec-4.json \
test/json/subtree/medium1/output-spec-5.json \
test/json/subtree/medium1/output-spec-6.json \
test/json/subtree/medium1/profile-phoneNumbers-0.i1.json \
test/json/subtree/medium1/profile-phoneNumbers.i3.json \
test/json/subtree/medium1/profile.i4.json \
test/json/subtree/medium2/input.json \
test/json/subtree/medium2/output-0.json \
test/json/subtree/medium2/output-1.json \
test/json/subtree/medium2/output-2.json \
test/json/subtree/medium2/output-3.json \
test/json/subtree/medium2/output-spec-0.json \
test/json/subtree/medium2/output-spec-1.json \
test/json/subtree/medium2/output-spec-2.json \
test/json/subtree/medium2/output-spec-3.json \
test/json/subtree/one-array/0.json \
test/json/subtree/one-array/1.json \
test/json/subtree/one-array/2.json \
test/json/subtree/one-array/all.json \
test/json/subtree/one-array/input.json \
test/json/subtree/one-array/output-spec-0.json \
test/json/subtree/one-array/output-spec-1.json \
test/json/subtree/one-array/output-spec-2.json \
test/json/subtree/one-array/output-spec-3.json \
test/json/swagger/check.txt \
test/json/swagger/input.json \
test/json/swagger/output.yaml \
test/json/to-yaml-1/check.txt \
test/json/to-yaml-1/input.json \
test/json/to-yaml-1/output.yaml \
test/json/validation/LICENSE \
test/json/validation/README \
test/json/validation/i_number_double_huge_neg_exp.json \
test/json/validation/i_number_huge_exp.json \
test/json/validation/i_number_neg_int_huge_exp.json \
test/json/validation/i_number_pos_double_huge_exp.json \
test/json/validation/i_number_real_neg_overflow.json \
test/json/validation/i_number_real_pos_overflow.json \
test/json/validation/i_number_real_underflow.json \
test/json/validation/i_number_too_big_neg_int.json \
test/json/validation/i_number_too_big_pos_int.json \
test/json/validation/i_number_very_big_negative_int.json \
test/json/validation/i_object_key_lone_2nd_surrogate.json \
test/json/validation/i_string_1st_surrogate_but_2nd_missing.json \
test/json/validation/i_string_1st_valid_surrogate_2nd_invalid.json \
test/json/validation/i_string_UTF-16LE_with_BOM.json \
test/json/validation/i_string_UTF-8_invalid_sequence.json \
test/json/validation/i_string_UTF8_surrogate_U+D800.json \
test/json/validation/i_string_incomplete_surrogate_and_escape_valid.json \
test/json/validation/i_string_incomplete_surrogate_pair.json \
test/json/validation/i_string_incomplete_surrogates_escape_valid.json \
test/json/validation/i_string_invalid_lonely_surrogate.json \
test/json/validation/i_string_invalid_surrogate.json \
test/json/validation/i_string_invalid_utf-8.json \
test/json/validation/i_string_inverted_surrogates_U+1D11E.json \
test/json/validation/i_string_iso_latin_1.json \
test/json/validation/i_string_lone_second_surrogate.json \
test/json/validation/i_string_lone_utf8_continuation_byte.json \
test/json/validation/i_string_not_in_unicode_range.json \
test/json/validation/i_string_overlong_sequence_2_bytes.json \
test/json/validation/i_string_overlong_sequence_6_bytes.json \
test/json/validation/i_string_overlong_sequence_6_bytes_null.json \
test/json/validation/i_string_truncated-utf-8.json \
test/json/validation/i_string_utf16BE_no_BOM.json \
test/json/validation/i_string_utf16LE_no_BOM.json \
test/json/validation/i_structure_500_nested_arrays.json \
test/json/validation/i_structure_UTF-8_BOM_empty_object.json \
test/json/validation/n_array_1_true_without_comma.json \
test/json/validation/n_array_a_invalid_utf8.json \
test/json/validation/n_array_colon_instead_of_comma.json \
test/json/validation/n_array_comma_after_close.json \
test/json/validation/n_array_comma_and_number.json \
test/json/validation/n_array_double_comma.json \
test/json/validation/n_array_double_extra_comma.json \
test/json/validation/n_array_extra_close.json \
test/json/validation/n_array_extra_comma.json \
test/json/validation/n_array_incomplete.json \
test/json/validation/n_array_incomplete_invalid_value.json \
test/json/validation/n_array_inner_array_no_comma.json \
test/json/validation/n_array_invalid_utf8.json \
test/json/validation/n_array_items_separated_by_semicolon.json \
test/json/validation/n_array_just_comma.json \
test/json/validation/n_array_just_minus.json \
test/json/validation/n_array_missing_value.json \
test/json/validation/n_array_newlines_unclosed.json \
test/json/validation/n_array_number_and_comma.json \
test/json/validation/n_array_number_and_several_commas.json \
test/json/validation/n_array_spaces_vertical_tab_formfeed.json \
test/json/validation/n_array_star_inside.json \
test/json/validation/n_array_unclosed.json \
test/json/validation/n_array_unclosed_trailing_comma.json \
test/json/validation/n_array_unclosed_with_new_lines.json \
test/json/validation/n_array_unclosed_with_object_inside.json \
test/json/validation/n_incomplete_false.json \
test/json/validation/n_incomplete_null.json \
test/json/validation/n_incomplete_true.json \
test/json/validation/n_multidigit_number_then_00.json \
test/json/validation/n_number_++.json \
test/json/validation/n_number_+1.json \
test/json/validation/n_number_+Inf.json \
test/json/validation/n_number_-01.json \
test/json/validation/n_number_-1.0..json \
test/json/validation/n_number_-2..json \
test/json/validation/n_number_-NaN.json \
test/json/validation/n_number_.-1.json \
test/json/validation/n_number_.2e-3.json \
test/json/validation/n_number_0.1.2.json \
test/json/validation/n_number_0.3e+.json \
test/json/validation/n_number_0.3e.json \
test/json/validation/n_number_0.e1.json \
test/json/validation/n_number_0_capital_E+.json \
test/json/validation/n_number_0_capital_E.json \
test/json/validation/n_number_0e+.json \
test/json/validation/n_number_0e.json \
test/json/validation/n_number_1.0e+.json \
test/json/validation/n_number_1.0e-.json \
test/json/validation/n_number_1.0e.json \
test/json/validation/n_number_1_000.json \
test/json/validation/n_number_1eE2.json \
test/json/validation/n_number_2.e+3.json \
test/json/validation/n_number_2.e-3.json \
test/json/validation/n_number_2.e3.json \
test/json/validation/n_number_9.e+.json \
test/json/validation/n_number_Inf.json \
test/json/validation/n_number_NaN.json \
test/json/validation/n_number_U+FF11_fullwidth_digit_one.json \
test/json/validation/n_number_expression.json \
test/json/validation/n_number_hex_1_digit.json \
test/json/validation/n_number_hex_2_digits.json \
test/json/validation/n_number_infinity.json \
test/json/validation/n_number_invalid+-.json \
test/json/validation/n_number_invalid-negative-real.json \
test/json/validation/n_number_invalid-utf-8-in-bigger-int.json \
test/json/validation/n_number_invalid-utf-8-in-exponent.json \
test/json/validation/n_number_invalid-utf-8-in-int.json \
test/json/validation/n_number_minus_infinity.json \
test/json/validation/n_number_minus_sign_with_trailing_garbage.json \
test/json/validation/n_number_minus_space_1.json \
test/json/validation/n_number_neg_int_starting_with_zero.json \
test/json/validation/n_number_neg_real_without_int_part.json \
test/json/validation/n_number_neg_with_garbage_at_end.json \
test/json/validation/n_number_real_garbage_after_e.json \
test/json/validation/n_number_real_with_invalid_utf8_after_e.json \
test/json/validation/n_number_real_without_fractional_part.json \
test/json/validation/n_number_starting_with_dot.json \
test/json/validation/n_number_with_alpha.json \
test/json/validation/n_number_with_alpha_char.json \
test/json/validation/n_number_with_leading_zero.json \
test/json/validation/n_object_bad_value.json \
test/json/validation/n_object_bracket_key.json \
test/json/validation/n_object_comma_instead_of_colon.json \
test/json/validation/n_object_double_colon.json \
test/json/validation/n_object_emoji.json \
test/json/validation/n_object_garbage_at_end.json \
test/json/validation/n_object_key_with_single_quotes.json \
test/json/validation/n_object_lone_continuation_byte_in_key_and_trailing_comma.json \
test/json/validation/n_object_missing_colon.json \
test/json/validation/n_object_missing_key.json \
test/json/validation/n_object_missing_semicolon.json \
test/json/validation/n_object_missing_value.json \
test/json/validation/n_object_no-colon.json \
test/json/validation/n_object_non_string_key.json \
test/json/validation/n_object_non_string_key_but_huge_number_instead.json \
test/json/validation/n_object_repeated_null_null.json \
test/json/validation/n_object_several_trailing_commas.json \
test/json/validation/n_object_single_quote.json \
test/json/validation/n_object_trailing_comma.json \
test/json/validation/n_object_trailing_comment.json \
test/json/validation/n_object_trailing_comment_open.json \
test/json/validation/n_object_trailing_comment_slash_open.json \
test/json/validation/n_object_trailing_comment_slash_open_incomplete.json \
test/json/validation/n_object_two_commas_in_a_row.json \
test/json/validation/n_object_unquoted_key.json \
test/json/validation/n_object_unterminated-value.json \
test/json/validation/n_object_with_single_string.json \
test/json/validation/n_object_with_trailing_garbage.json \
test/json/validation/n_single_space.json \
test/json/validation/n_string_1_surrogate_then_escape.json \
test/json/validation/n_string_1_surrogate_then_escape_u.json \
test/json/validation/n_string_1_surrogate_then_escape_u1.json \
test/json/validation/n_string_1_surrogate_then_escape_u1x.json \
test/json/validation/n_string_accentuated_char_no_quotes.json \
test/json/validation/n_string_backslash_00.json \
test/json/validation/n_string_escape_x.json \
test/json/validation/n_string_escaped_backslash_bad.json \
test/json/validation/n_string_escaped_ctrl_char_tab.json \
test/json/validation/n_string_escaped_emoji.json \
test/json/validation/n_string_incomplete_escape.json \
test/json/validation/n_string_incomplete_escaped_character.json \
test/json/validation/n_string_incomplete_surrogate.json \
test/json/validation/n_string_incomplete_surrogate_escape_invalid.json \
test/json/validation/n_string_invalid-utf-8-in-escape.json \
test/json/validation/n_string_invalid_backslash_esc.json \
test/json/validation/n_string_invalid_unicode_escape.json \
test/json/validation/n_string_invalid_utf8_after_escape.json \
test/json/validation/n_string_leading_uescaped_thinspace.json \
test/json/validation/n_string_no_quotes_with_bad_escape.json \
test/json/validation/n_string_single_doublequote.json \
test/json/validation/n_string_single_quote.json \
test/json/validation/n_string_single_string_no_double_quotes.json \
test/json/validation/n_string_start_escape_unclosed.json \
test/json/validation/n_string_unescaped_crtl_char.json \
test/json/validation/n_string_unescaped_newline.json \
test/json/validation/n_string_unescaped_tab.json \
test/json/validation/n_string_unicode_CapitalU.json \
test/json/validation/n_string_with_trailing_garbage.json \
test/json/validation/n_structure_100000_opening_arrays.json \
test/json/validation/n_structure_U+2060_word_joined.json \
test/json/validation/n_structure_UTF8_BOM_no_data.json \
test/json/validation/n_structure_angle_bracket_..json \
test/json/validation/n_structure_angle_bracket_null.json \
test/json/validation/n_structure_array_trailing_garbage.json \
test/json/validation/n_structure_array_with_extra_array_close.json \
test/json/validation/n_structure_array_with_unclosed_string.json \
test/json/validation/n_structure_ascii-unicode-identifier.json \
test/json/validation/n_structure_capitalized_True.json \
test/json/validation/n_structure_close_unopened_array.json \
test/json/validation/n_structure_comma_instead_of_closing_brace.json \
test/json/validation/n_structure_double_array.json \
test/json/validation/n_structure_end_array.json \
test/json/validation/n_structure_incomplete_UTF8_BOM.json \
test/json/validation/n_structure_lone-invalid-utf-8.json \
test/json/validation/n_structure_lone-open-bracket.json \
test/json/validation/n_structure_no_data.json \
test/json/validation/n_structure_null-byte-outside-string.json \
test/json/validation/n_structure_number_with_trailing_garbage.json \
test/json/validation/n_structure_object_followed_by_closing_object.json \
test/json/validation/n_structure_object_unclosed_no_value.json \
test/json/validation/n_structure_object_with_comment.json \
test/json/validation/n_structure_object_with_trailing_garbage.json \
test/json/validation/n_structure_open_array_apostrophe.json \
test/json/validation/n_structure_open_array_comma.json \
test/json/validation/n_structure_open_array_object.json \
test/json/validation/n_structure_open_array_open_object.json \
test/json/validation/n_structure_open_array_open_string.json \
test/json/validation/n_structure_open_array_string.json \
test/json/validation/n_structure_open_object.json \
test/json/validation/n_structure_open_object_close_array.json \
test/json/validation/n_structure_open_object_comma.json \
test/json/validation/n_structure_open_object_open_array.json \
test/json/validation/n_structure_open_object_open_string.json \
test/json/validation/n_structure_open_object_string_with_apostrophes.json \
test/json/validation/n_structure_open_open.json \
test/json/validation/n_structure_single_eacute.json \
test/json/validation/n_structure_single_star.json \
test/json/validation/n_structure_trailing_\#.json \
test/json/validation/n_structure_uescaped_LF_before_string.json \
test/json/validation/n_structure_unclosed_array.json \
test/json/validation/n_structure_unclosed_array_partial_null.json \
test/json/validation/n_structure_unclosed_array_unfinished_false.json \
test/json/validation/n_structure_unclosed_array_unfinished_true.json \
test/json/validation/n_structure_unclosed_object.json \
test/json/validation/n_structure_unicode-identifier.json \
test/json/validation/n_structure_whitespace_U+2060_word_joiner.json \
test/json/validation/n_structure_whitespace_formfeed.json \
test/json/validation/y_array_arraysWithSpaces.json \
test/json/validation/y_array_empty-string.json \
test/json/validation/y_array_empty.json \
test/json/validation/y_array_ending_with_newline.json \
test/json/validation/y_array_false.json \
test/json/validation/y_array_heterogeneous.json \
test/json/validation/y_array_null.json \
test/json/validation/y_array_with_1_and_newline.json \
test/json/validation/y_array_with_leading_space.json \
test/json/validation/y_array_with_several_null.json \
test/json/validation/y_array_with_trailing_space.json \
test/json/validation/y_number.json \
test/json/validation/y_number_0e+1.json \
test/json/validation/y_number_0e1.json \
test/json/validation/y_number_after_space.json \
test/json/validation/y_number_double_close_to_zero.json \
test/json/validation/y_number_int_with_exp.json \
test/json/validation/y_number_minus_zero.json \
test/json/validation/y_number_negative_int.json \
test/json/validation/y_number_negative_one.json \
test/json/validation/y_number_negative_zero.json \
test/json/validation/y_number_real_capital_e.json \
test/json/validation/y_number_real_capital_e_neg_exp.json \
test/json/validation/y_number_real_capital_e_pos_exp.json \
test/json/validation/y_number_real_exponent.json \
test/json/validation/y_number_real_fraction_exponent.json \
test/json/validation/y_number_real_neg_exp.json \
test/json/validation/y_number_real_pos_exponent.json \
test/json/validation/y_number_simple_int.json \
test/json/validation/y_number_simple_real.json \
test/json/validation/y_object.json \
test/json/validation/y_object_basic.json \
test/json/validation/y_object_duplicated_key.json \
test/json/validation/y_object_duplicated_key_and_value.json \
test/json/validation/y_object_empty.json \
test/json/validation/y_object_empty_key.json \
test/json/validation/y_object_escaped_null_in_key.json \
test/json/validation/y_object_extreme_numbers.json \
test/json/validation/y_object_long_strings.json \
test/json/validation/y_object_simple.json \
test/json/validation/y_object_string_unicode.json \
test/json/validation/y_object_with_newlines.json \
test/json/validation/y_string_1_2_3_bytes_UTF-8_sequences.json \
test/json/validation/y_string_accepted_surrogate_pair.json \
test/json/validation/y_string_accepted_surrogate_pairs.json \
test/json/validation/y_string_allowed_escapes.json \
test/json/validation/y_string_backslash_and_u_escaped_zero.json \
test/json/validation/y_string_backslash_doublequotes.json \
test/json/validation/y_string_comments.json \
test/json/validation/y_string_double_escape_a.json \
test/json/validation/y_string_double_escape_n.json \
test/json/validation/y_string_escaped_control_character.json \
test/json/validation/y_string_escaped_noncharacter.json \
test/json/validation/y_string_in_array.json \
test/json/validation/y_string_in_array_with_leading_space.json \
test/json/validation/y_string_last_surrogates_1_and_2.json \
test/json/validation/y_string_nbsp_uescaped.json \
test/json/validation/y_string_nonCharacterInUTF-8_U+10FFFF.json \
test/json/validation/y_string_nonCharacterInUTF-8_U+FFFF.json \
test/json/validation/y_string_null_escape.json \
test/json/validation/y_string_one-byte-utf-8.json \
test/json/validation/y_string_pi.json \
test/json/validation/y_string_reservedCharacterInUTF-8_U+1BFFF.json \
test/json/validation/y_string_simple_ascii.json \
test/json/validation/y_string_space.json \
test/json/validation/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json \
test/json/validation/y_string_three-byte-utf-8.json \
test/json/validation/y_string_two-byte-utf-8.json \
test/json/validation/y_string_u+2028_line_sep.json \
test/json/validation/y_string_u+2029_par_sep.json \
test/json/validation/y_string_uEscape.json \
test/json/validation/y_string_uescaped_newline.json \
test/json/validation/y_string_unescaped_char_delete.json \
test/json/validation/y_string_unicode.json \
test/json/validation/y_string_unicodeEscapedBackslash.json \
test/json/validation/y_string_unicode_2.json \
test/json/validation/y_string_unicode_U+10FFFE_nonchar.json \
test/json/validation/y_string_unicode_U+1FFFE_nonchar.json \
test/json/validation/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json \
test/json/validation/y_string_unicode_U+2064_invisible_plus.json \
test/json/validation/y_string_unicode_U+FDD0_nonchar.json \
test/json/validation/y_string_unicode_U+FFFE_nonchar.json \
test/json/validation/y_string_unicode_escaped_double_quote.json \
test/json/validation/y_string_utf8.json \
test/json/validation/y_string_with_del_character.json \
test/json/validation/y_structure_lonely_false.json \
test/json/validation/y_structure_lonely_int.json \
test/json/validation/y_structure_lonely_negative_real.json \
test/json/validation/y_structure_lonely_null.json \
test/json/validation/y_structure_lonely_string.json \
test/json/validation/y_structure_lonely_true.json \
test/json/validation/y_structure_string_empty.json \
test/json/validation/y_structure_trailing_newline.json \
test/json/validation/y_structure_true_in_array.json \
test/json/validation/y_structure_whitespace_array.json \
test/ods/autofilter/largest-smallest.ods \
test/ods/autofilter/multi-conditions.ods \
test/ods/autofilter/text-comparisons.ods \
test/ods/borders/grid-box.ods \
test/ods/borders/single-cells.ods \
test/ods/cell-properties/wrap-and-shrink.ods \
test/ods/column-width-row-height/input.ods \
test/ods/date-cell/input.ods \
test/ods/detect/日本語のファイル.ods \
test/ods/formatted-text/bold-and-italic.ods \
test/ods/formula-1/check.txt \
test/ods/formula-1/input.ods \
test/ods/formula-2/check.txt \
test/ods/formula-2/input.ods \
test/ods/import-styles/cell-protection.xml \
test/ods/import-styles/cell-styles.xml \
test/ods/import-styles/standard-styles.xml \
test/ods/japanese.ods \
test/ods/named-expression-sheet-local/check.txt \
test/ods/named-expression-sheet-local/input.ods \
test/ods/named-expression/check.txt \
test/ods/named-expression/input.ods \
test/ods/named-range/check.txt \
test/ods/named-range/input.ods \
test/ods/number-format/basic-set.ods \
test/ods/raw-values-1/check.txt \
test/ods/raw-values-1/input.ods \
test/ods/styles/asian-complex.ods \
test/ods/styles/column-styles.ods \
test/ods/styles/direct-format.ods \
test/ods/styles/text-underlines.ods \
test/ods/test.ods \
test/parquet/basic/basic-gzip.parquet \
test/parquet/basic/basic-gzip.parquet.check \
test/parquet/basic/basic-nocomp.parquet \
test/parquet/basic/basic-nocomp.parquet.check \
test/parquet/basic/basic-snappy.parquet \
test/parquet/basic/basic-snappy.parquet.check \
test/parquet/basic/basic-zstd.parquet \
test/parquet/basic/basic-zstd.parquet.check \
test/parquet/basic/float-with-nan.parquet \
test/parquet/basic/float-with-nan.parquet.check \
test/parquet/detect/圧縮なし.parquet \
test/python/env.json.in \
test/python/file_load_common.py \
test/python/perf/test_json.py \
test/python/test_csv.py \
test/python/test_csv_export.py \
test/python/test_gnumeric.py \
test/python/test_json.py \
test/python/test_module.py \
test/python/test_ods.py \
test/python/test_xls_xml.py \
test/python/test_xlsx.py \
test/xls-xml/background-color/standard.xml \
test/xls-xml/basic-utf-16-be/check.txt \
test/xls-xml/basic-utf-16-be/input.xml \
test/xls-xml/basic-utf-16-le/check.txt \
test/xls-xml/basic-utf-16-le/input.xml \
test/xls-xml/basic/check.txt \
test/xls-xml/basic/input.xml \
test/xls-xml/bold-and-italic/check.txt \
test/xls-xml/bold-and-italic/input.xml \
test/xls-xml/borders/colors.xml \
test/xls-xml/borders/directions.xml \
test/xls-xml/borders/grid-box.xml \
test/xls-xml/borders/single-cells.xml \
test/xls-xml/cell-properties/default-style.xml \
test/xls-xml/cell-properties/locked-and-hidden.xml \
test/xls-xml/cell-properties/wrap-and-shrink.xml \
test/xls-xml/character-set/input.xml \
test/xls-xml/colored-text/check.txt \
test/xls-xml/colored-text/input.xml \
test/xls-xml/column-width-row-height/input.xml \
test/xls-xml/date-time/input.xml \
test/xls-xml/detect/日本語のファイル.xml \
test/xls-xml/double-bom/input.xml \
test/xls-xml/empty-rows/check.txt \
test/xls-xml/empty-rows/input.xml \
test/xls-xml/formatted-text/basic.xml \
test/xls-xml/formatted-text/underline.xml \
test/xls-xml/formula-array-1/check.txt \
test/xls-xml/formula-array-1/input.xml \
test/xls-xml/formula-cells-1/check.txt \
test/xls-xml/formula-cells-1/input.xml \
test/xls-xml/formula-cells-2/check.txt \
test/xls-xml/formula-cells-2/config.yaml \
test/xls-xml/formula-cells-2/input.xml \
test/xls-xml/formula-cells-3/check.txt \
test/xls-xml/formula-cells-3/input.xml \
test/xls-xml/formula-cells-parse-error/input.xml \
test/xls-xml/hidden-rows-columns/input.xml \
test/xls-xml/invalid-sub-structure/check.txt \
test/xls-xml/invalid-sub-structure/input.xml \
test/xls-xml/leading-whitespace/check.txt \
test/xls-xml/leading-whitespace/input.xml \
test/xls-xml/matrix-results/input.xml \
test/xls-xml/merged-cells/check.txt \
test/xls-xml/merged-cells/input.xml \
test/xls-xml/named-colors/check.txt \
test/xls-xml/named-colors/input-upper.xml \
test/xls-xml/named-colors/input.xml \
test/xls-xml/named-colors/run.py \
test/xls-xml/named-colors/saved-by-excel.xml \
test/xls-xml/named-expression-sheet-local/check.txt \
test/xls-xml/named-expression-sheet-local/input.xml \
test/xls-xml/named-expression/check.txt \
test/xls-xml/named-expression/input.xml \
test/xls-xml/number-format/date-time.xml \
test/xls-xml/raw-values-1/check.txt \
test/xls-xml/raw-values-1/input.xml \
test/xls-xml/styles/column-styles.xml \
test/xls-xml/styles/data-offset.xml \
test/xls-xml/styles/direct-format.xml \
test/xls-xml/table-offset/check.txt \
test/xls-xml/table-offset/input.xml \
test/xls-xml/table/autofilter-asterisk.xml \
test/xls-xml/table/autofilter-nofilter.xml \
test/xls-xml/table/autofilter-number.xml \
test/xls-xml/table/autofilter-question.xml \
test/xls-xml/table/autofilter-text.xml \
test/xls-xml/table/autofilter-wildcard.xml \
test/xls-xml/text-alignment/input.xml \
test/xls-xml/unnamed-parent-styles/check.txt \
test/xls-xml/unnamed-parent-styles/input.xml \
test/xls-xml/view/cursor-per-sheet.xml \
test/xls-xml/view/cursor-split-pane.xml \
test/xls-xml/view/frozen-pane.xml \
test/xlsx/background-color/standard.xlsx \
test/xlsx/boolean-values/check.txt \
test/xlsx/boolean-values/input.xlsx \
test/xlsx/borders/colors.xlsx \
test/xlsx/borders/directions.xlsx \
test/xlsx/borders/grid-box.xlsx \
test/xlsx/borders/single-cells.xlsx \
test/xlsx/cell-properties/wrap-and-shrink.xlsx \
test/xlsx/column-width-row-height/input.xlsx \
test/xlsx/conditional-format/basic.xlsx \
test/xlsx/conditional-format/data-bars.xlsx \
test/xlsx/data-table/multi-table.xlsx \
test/xlsx/data-table/one-variable.xlsx \
test/xlsx/date-cell/input.xlsx \
test/xlsx/date-time/input.xlsx \
test/xlsx/detect/日本語のファイル.xlsx \
test/xlsx/doc-structure/unordered-sheet-positions.xlsx \
test/xlsx/empty-shared-strings/check.txt \
test/xlsx/empty-shared-strings/input.xlsx \
test/xlsx/formatted-text/basic.xlsx \
test/xlsx/formatted-text/bold-and-italic.xlsx \
test/xlsx/formatted-text/colored-text.xlsx \
test/xlsx/formatted-text/underline.xlsx \
test/xlsx/formula-array-1/check.txt \
test/xlsx/formula-array-1/input.xlsx \
test/xlsx/formula-cells/check.txt \
test/xlsx/formula-cells/input.xlsx \
test/xlsx/formula-shared/check.txt \
test/xlsx/formula-shared/input.xlsx \
test/xlsx/formula-simple.xlsx \
test/xlsx/formula-with-string-results/check.txt \
test/xlsx/formula-with-string-results/input.xlsx \
test/xlsx/hidden-rows-columns/input.xlsx \
test/xlsx/matrix-results/input.xlsx \
test/xlsx/merged-cells/simple.xlsx \
test/xlsx/named-expression-relative/input.xlsx \
test/xlsx/named-expression-sheet-local/check.txt \
test/xlsx/named-expression-sheet-local/input.xlsx \
test/xlsx/named-expression/check.txt \
test/xlsx/named-expression/input.xlsx \
test/xlsx/number-format/date-time.xlsx \
test/xlsx/pivot-table/chart-simple.xlsx \
test/xlsx/pivot-table/error-values.xlsx \
test/xlsx/pivot-table/group-by-dates.xlsx \
test/xlsx/pivot-table/group-by-numbers.xlsx \
test/xlsx/pivot-table/group-field.xlsx \
test/xlsx/pivot-table/many-fields.xlsx \
test/xlsx/pivot-table/mixed-type-field.xlsx \
test/xlsx/pivot-table/three-pivot-tables-on-one-sheet.xlsx \
test/xlsx/pivot-table/two-pivot-caches.xlsx \
test/xlsx/pivot-table/two-tables-one-source.xlsx \
test/xlsx/raw-values-1/check.txt \
test/xlsx/raw-values-1/input.xlsx \
test/xlsx/revision/cell-change-basic.xlsx \
test/xlsx/styles/column-styles.xlsx \
test/xlsx/styles/direct-format.xlsx \
test/xlsx/table/autofilter-basic-number.xlsx \
test/xlsx/table/autofilter-basic-text.xlsx \
test/xlsx/table/autofilter.xlsx \
test/xlsx/table/table-1.xlsx \
test/xlsx/table/table-2.xlsx \
test/xlsx/test.xlsx \
test/xlsx/text-alignment/input.xlsx \
test/xlsx/view/cursor-per-sheet.xlsx \
test/xlsx/view/cursor-split-pane.xlsx \
test/xlsx/view/frozen-pane.xlsx \
test/xml-mapped/attribute-basic/check-nomap.txt \
test/xml-mapped/attribute-basic/check.txt \
test/xml-mapped/attribute-basic/input.xml \
test/xml-mapped/attribute-basic/map.xml \
test/xml-mapped/attribute-namespace-2/check-nomap.txt \
test/xml-mapped/attribute-namespace-2/check.txt \
test/xml-mapped/attribute-namespace-2/input.xml \
test/xml-mapped/attribute-namespace-2/map.xml \
test/xml-mapped/attribute-namespace/check-nomap.txt \
test/xml-mapped/attribute-namespace/check.txt \
test/xml-mapped/attribute-namespace/input.xml \
test/xml-mapped/attribute-namespace/map.xml \
test/xml-mapped/attribute-range-self-close/check-nomap.txt \
test/xml-mapped/attribute-range-self-close/check.txt \
test/xml-mapped/attribute-range-self-close/input.xml \
test/xml-mapped/attribute-range-self-close/map.xml \
test/xml-mapped/attribute-single-element-2/check.txt \
test/xml-mapped/attribute-single-element-2/input.xml \
test/xml-mapped/attribute-single-element-2/map.xml \
test/xml-mapped/attribute-single-element/check.txt \
test/xml-mapped/attribute-single-element/input.xml \
test/xml-mapped/attribute-single-element/map.xml \
test/xml-mapped/auto-mapping/list-of-records-two-sheets/check.txt \
test/xml-mapped/auto-mapping/list-of-records-two-sheets/input.xml \
test/xml-mapped/auto-mapping/list-of-records/check.txt \
test/xml-mapped/auto-mapping/list-of-records/input.xml \
test/xml-mapped/content-basic/check-nomap.txt \
test/xml-mapped/content-basic/check.txt \
test/xml-mapped/content-basic/input.xml \
test/xml-mapped/content-basic/map.xml \
test/xml-mapped/content-namespace-2/check-nomap.txt \
test/xml-mapped/content-namespace-2/check.txt \
test/xml-mapped/content-namespace-2/input.xml \
test/xml-mapped/content-namespace-2/map.xml \
test/xml-mapped/content-namespace-3/check-nomap.txt \
test/xml-mapped/content-namespace-3/check.txt \
test/xml-mapped/content-namespace-3/input.xml \
test/xml-mapped/content-namespace-3/map.xml \
test/xml-mapped/content-namespace/check-nomap.txt \
test/xml-mapped/content-namespace/check.txt \
test/xml-mapped/content-namespace/input.xml \
test/xml-mapped/content-namespace/map.xml \
test/xml-mapped/content-one-column/check-nomap.txt \
test/xml-mapped/content-one-column/input.xml \
test/xml-mapped/custom-labels-2/check.txt \
test/xml-mapped/custom-labels-2/input.xml \
test/xml-mapped/custom-labels-2/map.xml \
test/xml-mapped/custom-labels/check.txt \
test/xml-mapped/custom-labels/input.xml \
test/xml-mapped/custom-labels/map.xml \
test/xml-mapped/encoding/euc-jp.xml \
test/xml-mapped/encoding/gbk.xml \
test/xml-mapped/encoding/utf-8.xml \
test/xml-mapped/fuel-economy/check-nomap.txt \
test/xml-mapped/fuel-economy/check.txt \
test/xml-mapped/fuel-economy/input.xml \
test/xml-mapped/fuel-economy/map.xml \
test/xml-mapped/invalids/map-defs/non-leaf-element-linked.xml \
test/xml-mapped/invalids/map-defs/not-xml.xml \
test/xml-mapped/map-gen/two-sheets/check.txt \
test/xml-mapped/map-gen/two-sheets/input.xml \
test/xml-mapped/nested-repeats-2/check-nomap.txt \
test/xml-mapped/nested-repeats-2/check.txt \
test/xml-mapped/nested-repeats-2/input.xml \
test/xml-mapped/nested-repeats-2/map.xml \
test/xml-mapped/nested-repeats-3/check-nomap.txt \
test/xml-mapped/nested-repeats-3/check.txt \
test/xml-mapped/nested-repeats-3/input.xml \
test/xml-mapped/nested-repeats-3/map.xml \
test/xml-mapped/nested-repeats-4/check-nomap.txt \
test/xml-mapped/nested-repeats-4/check.txt \
test/xml-mapped/nested-repeats-4/input.xml \
test/xml-mapped/nested-repeats-4/map.xml \
test/xml-mapped/nested-repeats/check-nomap.txt \
test/xml-mapped/nested-repeats/check.txt \
test/xml-mapped/nested-repeats/input.xml \
test/xml-mapped/nested-repeats/map.xml \
test/xml-structure/attribute-1/check.txt \
test/xml-structure/attribute-1/input.xml \
test/xml-structure/basic-1/check.txt \
test/xml-structure/basic-1/input.xml \
test/xml-structure/basic-2/check.txt \
test/xml-structure/basic-2/input.xml \
test/xml-structure/basic-3/check.txt \
test/xml-structure/basic-3/input.xml \
test/xml-structure/namespace-default/check.txt \
test/xml-structure/namespace-default/input.xml \
test/xml-structure/nested-repeat-1/check.txt \
test/xml-structure/nested-repeat-1/input.xml \
test/xml/bom/check.txt \
test/xml/bom/input.xml \
test/xml/cdata-1/check.txt \
test/xml/cdata-1/input.xml \
test/xml/custom-decl-1/check.txt \
test/xml/custom-decl-1/input.xml \
test/xml/default-ns/check.txt \
test/xml/default-ns/input.xml \
test/xml/doctype/html.xml \
test/xml/encoded-attrs/test1.xml \
test/xml/encoded-char/check.txt \
test/xml/encoded-char/input.xml \
test/xml/invalids/double-boms-and-invalid-byte.xml \
test/xml/invalids/only-bom.xml \
test/xml/invalids/only-double-boms.xml \
test/xml/invalids/partial-attr-value-with-encoding-char.xml \
test/xml/invalids/partial-open-element.xml \
test/xml/no-decl-1/check.txt \
test/xml/no-decl-1/input.xml \
test/xml/ns-alias-1/check.txt \
test/xml/ns-alias-1/input.xml \
test/xml/osm/street-in-aizu.osm \
test/xml/parse-only/rss/input.xml \
test/xml/self-closing-root/check.txt \
test/xml/self-closing-root/input.xml \
test/xml/simple/check.txt \
test/xml/simple/input.xml \
test/xml/single-quote/check.txt \
test/xml/single-quote/input.xml \
test/xml/underscore-identifier/check.txt \
test/xml/underscore-identifier/input.xml \
test/xml/utf8-1/check.txt \
test/xml/utf8-1/input.xml \
test/xml/utf8-2/check.txt \
test/xml/utf8-2/input.xml \
test/xml/valids/double-boms.xml \
test/yaml/basic1/input.yaml \
test/yaml/basic2/input.yaml \
test/yaml/basic3/input.yaml \
test/yaml/boolean/input.yaml \
test/yaml/empty-value-map-1/input.yaml \
test/yaml/empty-value-map-2/input.yaml \
test/yaml/empty-value-sequence-1/input.yaml \
test/yaml/empty-value-sequence-2/input.yaml \
test/yaml/invalids/1.yaml \
test/yaml/invalids/2.yaml \
test/yaml/invalids/3.yaml \
test/yaml/literal-block-1/input.yaml \
test/yaml/literal-block-2/input.yaml \
test/yaml/map-key-1/input.yaml \
test/yaml/multi-line-1/input.yaml \
test/yaml/multi-line-2/input.yaml \
test/yaml/null/input.yaml \
test/yaml/quoted-string/input.yaml \
test/yaml/swagger/input.yaml \
test/yaml/url/input.yaml
EXTRA_DIST = \
CHANGELOG \
LICENSE \
README.md \
liborcus.pc.in \
autogen.sh \
$(bin_data) \
$(doc_data) \
$(doc_example_data) \
$(misc_data) \
$(test_data)
.PHONY: distclean-local dist-hook doc-doxygen doc-sphinx doc
distclean-local:
rm -rf *.pc
dist-hook:
doc-doxygen:
@echo "Building documentation by doxygen..."
@cd doc && doxygen doxygen.conf
doc-sphinx:
@echo "Building documentation by sphinx..."
@sphinx-build -b html ./doc/ ./doc/_build
doc: doc-doxygen doc-sphinx
doc-open:
@xdg-open ./doc/_build/index.html
doc-clean:
@rm -rf ./doc/_build ./doc/_doxygen
|