selectolax 0.3.16__tar.gz → 0.3.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of selectolax might be problematic. Click here for more details.
- {selectolax-0.3.16 → selectolax-0.3.18}/CHANGES.rst +17 -0
- {selectolax-0.3.16/selectolax.egg-info → selectolax-0.3.18}/PKG-INFO +3 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/CHANGELOG.md +26 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/CMakeLists.txt +26 -6
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/README.md +4 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/feature.cmake +39 -28
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/array_obj.h +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/base.h +5 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/bst.c +9 -6
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/conv.c +108 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/conv.h +5 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/str.c +25 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/str.h +5 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule/state.c +2 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/base.h +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/declaration.c +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/parser.c +10 -6
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property/res.h +26 -26
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property/state.c +128 -38
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property.c +48 -19
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property.h +14 -4
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/rule.c +11 -8
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/base.h +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo_state.c +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/state.c +65 -39
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/state.c +2 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/stylesheet.c +15 -3
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/stylesheet.h +5 -16
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/anb.c +1 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/parser.c +21 -4
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/state.c +15 -36
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/syntax.c +10 -9
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/syntax.h +0 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/token.c +51 -14
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/token.h +5 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/tokenizer.c +159 -129
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/tokenizer.h +10 -11
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/base.h +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/base.h +1 -1
- selectolax-0.3.18/lexbor/source/lexbor/encoding/big5.c +42839 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/decode.c +90 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/decode.h +7 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/encode.c +19 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/encode.h +3 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/euc_kr.c +53883 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/gb18030.c +47905 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +159 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/jis0208.c +22477 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/jis0212.c +15787 -0
- selectolax-0.3.18/lexbor/source/lexbor/encoding/single.c +13748 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/base.h +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/encoding.c +2 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/element.c +16 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/element.h +3 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/error.c +2 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/error.h +2 -0
- selectolax-0.3.18/lexbor/source/lexbor/punycode/base.h +30 -0
- selectolax-0.3.18/lexbor/source/lexbor/punycode/punycode.c +630 -0
- selectolax-0.3.18/lexbor/source/lexbor/punycode/punycode.h +109 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/selectors/selectors.c +4 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/base.h +167 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/idna.c +696 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/idna.h +248 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_0.h +11164 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_1.h +14010 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_10.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_11.h +5026 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_12.h +14890 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_13.h +10071 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_14.h +5319 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_15.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_16.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_17.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_18.h +5129 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_19.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_2.h +13436 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_20.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_21.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_22.h +5026 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_23.h +6868 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_24.h +13081 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_25.h +7625 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_26.h +5113 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_27.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_28.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_29.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_3.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_30.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_31.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_32.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_33.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_34.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_35.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_36.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_37.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_38.h +8979 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_39.h +1042 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_4.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_5.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_6.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_7.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_8.h +5708 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_9.h +5023 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_compose.h +5072 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/table_idna_types.h +22 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/unicode.c +1013 -0
- selectolax-0.3.18/lexbor/source/lexbor/unicode/unicode.h +373 -0
- selectolax-0.3.18/lexbor/source/lexbor/url/base.h +32 -0
- selectolax-0.3.18/lexbor/source/lexbor/url/url.c +3656 -0
- selectolax-0.3.18/lexbor/source/lexbor/url/url.h +457 -0
- selectolax-0.3.18/lexbor/version +1 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/__init__.py +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor/selection.pxi +1 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor.c +373 -360
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor.pyx +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/parser.c +109 -109
- {selectolax-0.3.16 → selectolax-0.3.18/selectolax.egg-info}/PKG-INFO +3 -2
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax.egg-info/SOURCES.txt +53 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/setup.cfg +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/setup.py +1 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/tests/test_nodes.py +1 -2
- selectolax-0.3.16/lexbor/source/lexbor/encoding/big5.c +0 -42839
- selectolax-0.3.16/lexbor/source/lexbor/encoding/euc_kr.c +0 -53883
- selectolax-0.3.16/lexbor/source/lexbor/encoding/gb18030.c +0 -47905
- selectolax-0.3.16/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +0 -159
- selectolax-0.3.16/lexbor/source/lexbor/encoding/jis0208.c +0 -22477
- selectolax-0.3.16/lexbor/source/lexbor/encoding/jis0212.c +0 -15787
- selectolax-0.3.16/lexbor/source/lexbor/encoding/single.c +0 -13748
- selectolax-0.3.16/lexbor/version +0 -1
- {selectolax-0.3.16 → selectolax-0.3.18}/LICENSE +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/MANIFEST.in +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/README.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/Makefile +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/conf.py +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/index.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/lexbor.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/logo.png +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/make.bat +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/modules.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/parser.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/docs/selectolax.rst +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/.git +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/.travis.yml +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/INSTALL.md +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/LICENSE +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/NOTICE +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/config.cmake +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/pvs_studio.sh +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/array.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/array.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/array_obj.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/avl.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/avl.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/bst.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/bst_map.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/bst_map.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/core.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/def.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/diyfp.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/diyfp.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/dobject.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/dobject.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/dtoa.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/dtoa.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/fs.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/hash.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/hash.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/in.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/in.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/lexbor.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/mem.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/mem.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/mraw.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/mraw.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/perf.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/plog.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/plog.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/print.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/print.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/sbst.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/serialize.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/serialize.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/shs.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/shs.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/str_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/strtod.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/strtod.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/types.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/utils.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/core/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/at_rule.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/css.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/css.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/declaration.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/log.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/log.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/property/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/rule.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/pseudo_state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/selector.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/selector.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/selectors.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/selectors.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/selectors/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/anb.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/base.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/state_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/token_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/tokenizer/error.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/syntax/tokenizer/error.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/unit/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/unit/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/unit.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/unit.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/value/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/value/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/value.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/css/value.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/collection.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/collection.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/dom.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/exception.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/exception.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interface.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interface.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/attr.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/attr.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/attr_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/attr_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/cdata_section.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/cdata_section.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/character_data.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/character_data.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/comment.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/comment.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document_fragment.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document_fragment.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document_type.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/document_type.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/event_target.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/event_target.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/node.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/shadow_root.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/shadow_root.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/text.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/dom/interfaces/text.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/encoding.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/encoding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/multi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/range.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/range.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/res.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/encoding/single.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/encoding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/html.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interface.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interface.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interface_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/anchor_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/anchor_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/area_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/area_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/audio_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/audio_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/base_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/base_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/body_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/body_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/br_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/br_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/button_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/button_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/canvas_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/canvas_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/d_list_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/d_list_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/data_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/data_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/data_list_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/data_list_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/details_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/details_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/dialog_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/dialog_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/directory_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/directory_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/div_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/div_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/document.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/document.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/embed_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/embed_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/field_set_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/field_set_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/font_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/font_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/form_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/form_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/frame_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/frame_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/frame_set_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/frame_set_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/head_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/head_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/heading_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/heading_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/hr_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/hr_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/html_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/html_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/iframe_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/iframe_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/image_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/image_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/input_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/input_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/label_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/label_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/legend_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/legend_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/li_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/li_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/link_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/link_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/map_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/map_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/marquee_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/marquee_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/media_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/media_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/menu_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/menu_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/meta_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/meta_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/meter_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/meter_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/mod_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/mod_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/o_list_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/o_list_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/object_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/object_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/opt_group_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/opt_group_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/option_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/option_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/output_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/output_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/paragraph_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/paragraph_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/param_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/param_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/picture_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/picture_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/pre_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/pre_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/progress_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/progress_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/quote_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/quote_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/script_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/script_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/select_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/select_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/slot_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/slot_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/source_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/source_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/span_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/span_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/style_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/style_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_caption_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_caption_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_cell_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_cell_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_col_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_col_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_row_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_row_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_section_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/table_section_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/template_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/template_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/text_area_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/text_area_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/time_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/time_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/title_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/title_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/track_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/track_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/u_list_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/u_list_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/unknown_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/unknown_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/video_element.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/video_element.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/window.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/interfaces/window.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/node.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/serialize.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/serialize.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/style.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/style.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tag.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tag_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/token.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/token.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/token_attr.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/token_attr.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/error.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/error.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_comment.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_comment.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_doctype.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_doctype.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_script.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer/state_script.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tokenizer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/active_formatting.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/active_formatting.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode/text.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/insertion_mode.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/open_elements.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/open_elements.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/template_insertion.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree/template_insertion.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/html/tree_res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ns/base.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ns/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ns/ns.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ns/ns.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ns/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/selectors/base.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/selectors/selectors.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/tag/base.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/tag/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/tag/res.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/tag/tag.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/tag/tag.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/base.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/http.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/http.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/warc.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/lexbor/source/lexbor/utils/warc.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/.git +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/.gitignore +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/.travis.yml +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/CHANGELOG.md +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/CMakeLists.txt +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/INSTALL.md +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/LICENSE +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/Makefile +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/Makefile.bin.cfg +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/Makefile.cfg +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/README.md +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/api_breaking_changes.md +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/declaration.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/finder.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/match.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/thread.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/finder/type.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/glue.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/layer/layer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/modest.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/node/node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/node/property.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/node/raw_property.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/node/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/render/begin.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/render/binding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/render/tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/render/tree_node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/default.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/default_entries.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/default_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/map.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/map_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/raw.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/sheet.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/modest/style/type.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/incoming.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/mythread.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/perf.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/thread_queue.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycore/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/api.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/check.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/convert.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/default.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/declaration/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/entry.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/media/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/media/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/media/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/mycss.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/namespace/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/namespace/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/property/shared.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/function.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/list.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/value.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/stack.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/stylesheet.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/tokenizer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/color.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/color_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/consume.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/destroy.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/image.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/units.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/mycss/values/values.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myencoding/encoding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myencoding/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myencoding/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myencoding/resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/cmap.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/glyf.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/head.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/hhea.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/hmtx.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/loca.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/maxp.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/myfont.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/name.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/os_2.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/pclt.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/vhea.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myfont/vmtx.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/api.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/callback.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/charef.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/data_process.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/def.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/myhtml.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/rules.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/stream.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tag.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tag_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/token.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myhtml/tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myunicode/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/host.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/path.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/punycode.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/scheme.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/scheme_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/url.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/include/myurl/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/modest.pc.in +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/modestConfig.cmake.in +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/declaration.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/declaration.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/finder.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/finder.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/match.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/match.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/pseudo_class.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/thread.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/thread.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/type.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/finder/type.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/glue.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/glue.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/layer/layer.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/layer/layer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/modest.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/modest.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/node.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/property.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/property.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/raw_property.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/raw_property.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/node/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/begin.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/begin.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/binding.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/binding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/tree.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/tree_node.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/render/tree_node.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/default.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/default.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/default_entries.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/default_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/map.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/map.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/map_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/raw.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/raw.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/sheet.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/sheet.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/type.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/modest/style/type.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/incoming.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/incoming.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/myosi.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/mystring.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/mythread.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/mythread.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/perf.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/thread_queue.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/thread_queue.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/avl_tree.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mchar_async.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcobject.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcobject_async.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcsimple.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mctree.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mhash.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycore/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/an_plus_b.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/api.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/check.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/check.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/convert.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/convert.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/default.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/default.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/entry.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/entry_destroy.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/state.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/declaration/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/entry.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/entry.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/media/init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/media/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/media/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/media/state.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/media/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/mycss.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/mycss.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/mystring.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/state.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/namespace/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser_background.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser_image.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser_text_decoration.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/parser_url.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/shared.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/property/shared.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/function.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/function.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/function_parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/init.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/list.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/list.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/pseudo.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/state.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/state.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/value.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/value.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/stack.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/stack.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/stylesheet.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/stylesheet.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/syntax/ending.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/syntax/syntax.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer_end.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer_global.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color_parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/consume.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/consume.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/destroy.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/destroy.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/image.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/image.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/units.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/units.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/values.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/mycss/values/values.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/detect.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/encoding.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/encoding.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/mystring.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myencoding/resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/cmap.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/cmap.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/glyf.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/glyf.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/head.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/head.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/hhea.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/hhea.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/hmtx.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/hmtx.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/loca.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/loca.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/maxp.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/maxp.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/myfont.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/myfont.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/myosi.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/name.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/name.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/os_2.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/os_2.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/pclt.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/pclt.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/vhea.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/vhea.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/vmtx.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myfont/vmtx.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/api.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/callback.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/callback.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/charef.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/charef.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/data_process.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/data_process.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/def.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/myhtml.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/myhtml.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/mynamespace.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/mystring.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/mystring.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/rules.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/rules.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/stream.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/stream.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tag.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tag.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tag_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tag_init.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/token.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/token.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_doctype.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_end.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_script.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tree.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myhtml/tree.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/posix/mycore/io.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/posix/mycore/memory.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/posix/mycore/perf.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/posix/mycore/thread.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/posix/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/windows_nt/mycore/io.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/windows_nt/mycore/memory.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/windows_nt/mycore/perf.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/windows_nt/mycore/thread.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myport/windows_nt/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myunicode/myosi.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myunicode/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/host.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/host.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/myosi.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/myosi.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/parser.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/parser.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/parser_end.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/path.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/path.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/punycode.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/punycode.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/scheme.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/scheme.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/scheme_const.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/serialization.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/serialization.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/url.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/url.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/utils.c +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/modest/source/myurl/utils.h +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/base.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor/attrs.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor/node.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor.pxd +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/lexbor.pyi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/modest/node.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/modest/selection.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/parser.pxd +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/parser.pyi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/parser.pyx +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/py.typed +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax/utils.pxi +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax.egg-info/dependency_links.txt +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax.egg-info/not-zip-safe +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax.egg-info/requires.txt +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/selectolax.egg-info/top_level.txt +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/tests/__init__.py +0 -0
- {selectolax-0.3.16 → selectolax-0.3.18}/tests/test_parser.py +0 -0
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
selectolax Changelog
|
|
2
2
|
====================
|
|
3
3
|
|
|
4
|
+
Version 0.3.15
|
|
5
|
+
-------------
|
|
6
|
+
|
|
7
|
+
Released
|
|
8
|
+
|
|
9
|
+
- Fix memory leak when using CSS selectors, `lexbor` backend
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
Version 0.3.17
|
|
13
|
+
-------------
|
|
14
|
+
|
|
15
|
+
Released
|
|
16
|
+
|
|
17
|
+
- Update lexbor
|
|
18
|
+
- Add Python 3.12 wheels
|
|
19
|
+
|
|
20
|
+
|
|
4
21
|
Version 0.3.16
|
|
5
22
|
-------------
|
|
6
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: selectolax
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.18
|
|
4
4
|
Summary: Fast HTML5 parser with CSS selectors.
|
|
5
5
|
Home-page: https://github.com/rushter/selectolax
|
|
6
6
|
Author: Artem Golubin
|
|
@@ -21,8 +21,9 @@ Classifier: Programming Language :: Python :: 3.7
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
-
Provides-Extra: cython
|
|
25
24
|
License-File: LICENSE
|
|
25
|
+
Provides-Extra: cython
|
|
26
|
+
Requires-Dist: Cython==0.29.36; extra == "cython"
|
|
26
27
|
|
|
27
28
|
.. image:: docs/logo.png
|
|
28
29
|
:alt: selectolax logo
|
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.3.0] - 2023-08-17
|
|
6
|
+
### Added
|
|
7
|
+
- Added new module Unicode.
|
|
8
|
+
- Added new module Punycode.
|
|
9
|
+
- Added new module URL.
|
|
10
|
+
- Added Unicode IDNA processing.
|
|
11
|
+
- Added new tests.
|
|
12
|
+
- Core: new functions for data conversations.
|
|
13
|
+
- CSS: added initial properties.
|
|
14
|
+
- CSS: added more than 70 new properties for parsing.
|
|
15
|
+
- Encoding: added decode function for valid UTF-8.
|
|
16
|
+
- Grammar: added new grammars for testing CSS properties.
|
|
17
|
+
- Test: added fuzzer for CSS StyleSheet.
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Core: fixed test failure in Hash on 32-bit architectures. Thanks @nmeum.
|
|
21
|
+
- CSS: fixed a couple of crashes related to lack of variable validation.
|
|
22
|
+
- CSS: fixed use-after-poison for declarations.
|
|
23
|
+
- CSS: fixed offset for token End-Of-File.
|
|
24
|
+
- CSS: fixed Qualified Rule prelude offset.
|
|
25
|
+
- Various Cppcheck report fixes.
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
- CSS: renamed LXB_CSS_SYNTAX_TOKEN__TERMINATED to LXB_CSS_SYNTAX_TOKEN__END.
|
|
29
|
+
- Removed deprecated function 'sprintf' for macOS.
|
|
30
|
+
|
|
5
31
|
## [2.2.0] - 2023-04-06
|
|
6
32
|
### Added
|
|
7
33
|
- Added clone functions for DOM/HTML nodes.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cmake_minimum_required(VERSION 2.8.12)
|
|
1
|
+
cmake_minimum_required(VERSION 2.8.12...3.27)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Options:
|
|
@@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 2.8.12)
|
|
|
12
12
|
# Each module will have its own shared library
|
|
13
13
|
# LEXBOR_BUILD_EXAMPLES default: OFF; Build all examples
|
|
14
14
|
# LEXBOR_BUILD_TESTS default: OFF; Build tests
|
|
15
|
-
# LEXBOR_BUILD_TESTS_CPP default:
|
|
15
|
+
# LEXBOR_BUILD_TESTS_CPP default: OFF; Build C++ tests.
|
|
16
16
|
# Used with LEXBOR_BUILD_TESTS
|
|
17
17
|
# LEXBOR_BUILD_UTILS default: OFF; Build utils/helpers for project.
|
|
18
18
|
# LEXBOR_BUILD_WITH_ASAN default: OFF; Build with address sanitizer if possible
|
|
@@ -47,7 +47,7 @@ option(LEXBOR_BUILD_STATIC "Build static library" ON)
|
|
|
47
47
|
option(LEXBOR_BUILD_SEPARATELY "Build modules separately" OFF)
|
|
48
48
|
option(LEXBOR_BUILD_EXAMPLES "Build examples" OFF)
|
|
49
49
|
option(LEXBOR_BUILD_TESTS "Build tests" OFF)
|
|
50
|
-
option(LEXBOR_BUILD_TESTS_CPP "Build C++ tests"
|
|
50
|
+
option(LEXBOR_BUILD_TESTS_CPP "Build C++ tests" OFF)
|
|
51
51
|
option(LEXBOR_BUILD_UTILS "Build utils" OFF)
|
|
52
52
|
option(LEXBOR_BUILD_WITH_ASAN "Build with address sanitizer" OFF)
|
|
53
53
|
option(LEXBOR_BUILD_WITH_FUZZER "Build with fuzzer" OFF)
|
|
@@ -60,7 +60,10 @@ IF(NOT LEXBOR_MAKE_DISTRO_NUM)
|
|
|
60
60
|
ENDIF()
|
|
61
61
|
|
|
62
62
|
enable_language(C)
|
|
63
|
-
|
|
63
|
+
|
|
64
|
+
IF(LEXBOR_BUILD_TESTS_CPP)
|
|
65
|
+
enable_language(CXX)
|
|
66
|
+
ENDIF()
|
|
64
67
|
|
|
65
68
|
################
|
|
66
69
|
## Version and path
|
|
@@ -117,10 +120,19 @@ GET_LEXBOR_VERSION(LEXBOR_VERSION_MAJOR LEXBOR_VERSION_MINOR
|
|
|
117
120
|
message(STATUS "Lexbor version: ${LEXBOR_VERSION_STRING}")
|
|
118
121
|
|
|
119
122
|
IF(CMAKE_VERSION VERSION_LESS "3.0")
|
|
120
|
-
|
|
123
|
+
IF(LEXBOR_BUILD_TESTS_CPP)
|
|
124
|
+
PROJECT("${PROJECT_NAME}")
|
|
125
|
+
ELSE()
|
|
126
|
+
PROJECT("${PROJECT_NAME}" "C")
|
|
127
|
+
ENDIF()
|
|
121
128
|
ELSE()
|
|
122
129
|
cmake_policy(SET CMP0048 NEW)
|
|
123
|
-
|
|
130
|
+
|
|
131
|
+
IF(LEXBOR_BUILD_TESTS_CPP)
|
|
132
|
+
PROJECT("${PROJECT_NAME}" VERSION "${LEXBOR_VERSION_STRING}")
|
|
133
|
+
ELSE()
|
|
134
|
+
PROJECT("${PROJECT_NAME}" VERSION "${LEXBOR_VERSION_STRING}" LANGUAGES "C")
|
|
135
|
+
ENDIF()
|
|
124
136
|
ENDIF()
|
|
125
137
|
|
|
126
138
|
################
|
|
@@ -279,6 +291,14 @@ ENDIF()
|
|
|
279
291
|
|
|
280
292
|
FEATURE_CHECK_FUZZER(LEXBOR_HAVE_FUZZER)
|
|
281
293
|
IF(${LEXBOR_HAVE_FUZZER})
|
|
294
|
+
set(LEXBOR_BUILD_EXAMPLES OFF)
|
|
295
|
+
set(LEXBOR_BUILD_UTILS OFF)
|
|
296
|
+
|
|
297
|
+
message(STATUS "Build only fuzzing test.")
|
|
298
|
+
message(STATUS "Set LEXBOR_BUILD_TESTS to OFF.")
|
|
299
|
+
message(STATUS "Set LEXBOR_BUILD_EXAMPLES to OFF.")
|
|
300
|
+
message(STATUS "Set LEXBOR_BUILD_UTILS to OFF.")
|
|
301
|
+
|
|
282
302
|
add_definitions(-DLEXBOR_HAVE_FUZZER)
|
|
283
303
|
ENDIF()
|
|
284
304
|
|
|
@@ -76,6 +76,10 @@ Binaries are available for:
|
|
|
76
76
|
Currently for `x86_64` architecture.
|
|
77
77
|
If you need any other architecture, please, write to [support@lexbor.com](mailto:support@lexbor.com).
|
|
78
78
|
|
|
79
|
+
### vcpkg
|
|
80
|
+
|
|
81
|
+
For vcpkg users there is a `lexbor` [port](https://github.com/microsoft/vcpkg/tree/master/ports/lexbor) that can be installed via `vcpkg install lexbor` or by adding it to `dependencies` section of your `vcpkg.json` file.
|
|
82
|
+
|
|
79
83
|
### macOS
|
|
80
84
|
|
|
81
85
|
#### Homebrew
|
|
@@ -86,49 +86,60 @@ int main(void) {
|
|
|
86
86
|
ENDMACRO()
|
|
87
87
|
|
|
88
88
|
MACRO(FEATURE_CHECK_FUZZER out_result)
|
|
89
|
-
|
|
89
|
+
IF(NOT LEXBOR_BUILD_WITH_FUZZER)
|
|
90
|
+
message(STATUS "Feature Fuzzer: disable")
|
|
91
|
+
ELSE()
|
|
92
|
+
set(lexbor_old_c_flags "${CMAKE_C_FLAGS}")
|
|
93
|
+
set(lexbor_old_cxx_flags "${CMAKE_CXX_FLAGS}")
|
|
94
|
+
set(lexbor_fuzzer_flags "-O0 -g -fsanitize=fuzzer")
|
|
95
|
+
set(feature_filename "${CMAKE_BINARY_DIR}/feature_check.c")
|
|
96
|
+
|
|
97
|
+
STRING(REGEX REPLACE " ?-O[0-9]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
|
98
|
+
STRING(REGEX REPLACE " ?-O[0-9]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
90
99
|
|
|
91
|
-
IF(LEXBOR_BUILD_WITH_FUZZER)
|
|
92
100
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${lexbor_fuzzer_flags}")
|
|
93
101
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${lexbor_fuzzer_flags}")
|
|
94
|
-
ENDIF()
|
|
95
102
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
set(FEATUTE_CHECK_STRING "
|
|
103
|
+
set(FEATUTE_CHECK_STRING "
|
|
99
104
|
#include <sanitizer/asan_interface.h>
|
|
100
105
|
|
|
101
106
|
int
|
|
102
107
|
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
|
103
108
|
{
|
|
104
109
|
return 0;
|
|
105
|
-
}
|
|
110
|
+
}
|
|
111
|
+
")
|
|
106
112
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
try_compile(${out_result} "${CMAKE_BINARY_DIR}" "${feature_filename}"
|
|
110
|
-
CMAKE_FLAGS "-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS}"
|
|
111
|
-
)
|
|
112
|
-
|
|
113
|
-
IF(${${out_result}})
|
|
114
|
-
message(STATUS "Feature Fuzzer: enabled")
|
|
115
|
-
ELSE()
|
|
116
|
-
message(STATUS "Feature Fuzzer: disable")
|
|
117
|
-
ENDIF()
|
|
113
|
+
file(WRITE ${feature_filename} "${FEATUTE_CHECK_STRING}")
|
|
118
114
|
|
|
119
|
-
|
|
115
|
+
try_compile(${out_result} "${CMAKE_BINARY_DIR}" "${feature_filename}"
|
|
116
|
+
CMAKE_FLAGS "${lexbor_fuzzer_flags}"
|
|
117
|
+
OUTPUT_VARIABLE OUTPUT
|
|
118
|
+
)
|
|
120
119
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
STRING(REGEX REPLACE " ${lexbor_fuzzer_flags}" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
|
124
|
-
STRING(REGEX REPLACE " ${lexbor_fuzzer_flags}" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
|
125
|
-
ELSE()
|
|
120
|
+
IF(${out_result})
|
|
121
|
+
message(STATUS "Feature Fuzzer: enabled")
|
|
126
122
|
message(STATUS "Updated CFLAGS: ${CMAKE_C_FLAGS}")
|
|
127
123
|
message(STATUS "Updated CXXFLAGS: ${CMAKE_CXX_FLAGS}")
|
|
124
|
+
|
|
125
|
+
set(${out_result} TRUE)
|
|
126
|
+
ELSE()
|
|
127
|
+
set(CMAKE_C_FLAGS ${lexbor_old_c_flags})
|
|
128
|
+
set(CMAKE_CXX_FLAGS ${lexbor_old_cxx_flags})
|
|
129
|
+
|
|
130
|
+
message(STATUS "Feature Fuzzer: аn error was received at compilation.")
|
|
131
|
+
message(STATUS "Feature Fuzzer OUTPUT:")
|
|
132
|
+
message(FATAL_ERROR ${OUTPUT})
|
|
133
|
+
|
|
134
|
+
set(${out_result} FALSE)
|
|
128
135
|
ENDIF()
|
|
129
|
-
ENDIF()
|
|
130
136
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
137
|
+
file(REMOVE ${feature_filename})
|
|
138
|
+
|
|
139
|
+
unset(lexbor_old_c_flags)
|
|
140
|
+
unset(lexbor_old_cxx_flags)
|
|
141
|
+
unset(lexbor_fuzzer_flags)
|
|
142
|
+
unset(FEATUTE_CHECK_STRING)
|
|
143
|
+
unset(feature_filename)
|
|
144
|
+
ENDIF()
|
|
134
145
|
ENDMACRO()
|
|
@@ -67,7 +67,7 @@ lexbor_array_obj_erase(lexbor_array_obj_t *array)
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
lxb_inline void *
|
|
70
|
-
lexbor_array_obj_get(lexbor_array_obj_t *array, size_t idx)
|
|
70
|
+
lexbor_array_obj_get(const lexbor_array_obj_t *array, size_t idx)
|
|
71
71
|
{
|
|
72
72
|
if (idx >= array->length) {
|
|
73
73
|
return NULL;
|
|
@@ -66,6 +66,7 @@ typedef enum {
|
|
|
66
66
|
LXB_STATUS_STOPPED,
|
|
67
67
|
LXB_STATUS_NEXT,
|
|
68
68
|
LXB_STATUS_STOP,
|
|
69
|
+
LXB_STATUS_WARNING
|
|
69
70
|
}
|
|
70
71
|
lexbor_status_t;
|
|
71
72
|
|
|
@@ -80,6 +81,10 @@ lexbor_action_t;
|
|
|
80
81
|
typedef lxb_status_t
|
|
81
82
|
(*lexbor_serialize_cb_f)(const lxb_char_t *data, size_t len, void *ctx);
|
|
82
83
|
|
|
84
|
+
typedef lxb_status_t
|
|
85
|
+
(*lexbor_serialize_cb_cp_f)(const lxb_codepoint_t *cps, size_t len, void *ctx);
|
|
86
|
+
|
|
87
|
+
|
|
83
88
|
typedef struct {
|
|
84
89
|
lexbor_serialize_cb_f cb;
|
|
85
90
|
void *ctx;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
#include "lexbor/core/bst.h"
|
|
8
|
+
#include "lexbor/core/conv.h"
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
lexbor_bst_t *
|
|
@@ -413,8 +414,8 @@ void
|
|
|
413
414
|
lexbor_bst_serialize_entry(lexbor_bst_entry_t *entry,
|
|
414
415
|
lexbor_callback_f callback, void *ctx, size_t tabs)
|
|
415
416
|
{
|
|
416
|
-
size_t
|
|
417
|
-
|
|
417
|
+
size_t len;
|
|
418
|
+
lxb_char_t buff[1024];
|
|
418
419
|
|
|
419
420
|
if (entry == NULL) {
|
|
420
421
|
return;
|
|
@@ -427,8 +428,9 @@ lexbor_bst_serialize_entry(lexbor_bst_entry_t *entry,
|
|
|
427
428
|
callback((lxb_char_t *) "<left ", 6, ctx);
|
|
428
429
|
|
|
429
430
|
if (entry->left) {
|
|
430
|
-
|
|
431
|
-
|
|
431
|
+
len = lexbor_conv_int64_to_data((int64_t) entry->left->size,
|
|
432
|
+
buff, sizeof(buff));
|
|
433
|
+
callback(buff, len, ctx);
|
|
432
434
|
|
|
433
435
|
callback((lxb_char_t *) ">\n", 2, ctx);
|
|
434
436
|
lexbor_bst_serialize_entry(entry->left, callback, ctx, (tabs + 1));
|
|
@@ -450,8 +452,9 @@ lexbor_bst_serialize_entry(lexbor_bst_entry_t *entry,
|
|
|
450
452
|
callback((lxb_char_t *) "<right ", 7, ctx);
|
|
451
453
|
|
|
452
454
|
if (entry->right) {
|
|
453
|
-
|
|
454
|
-
|
|
455
|
+
len = lexbor_conv_int64_to_data((int64_t) entry->right->size,
|
|
456
|
+
buff, sizeof(buff));
|
|
457
|
+
callback(buff, len, ctx);
|
|
455
458
|
|
|
456
459
|
callback((lxb_char_t *) ">\n", 2, ctx);
|
|
457
460
|
lexbor_bst_serialize_entry(entry->right, callback, ctx, (tabs + 1));
|
|
@@ -21,7 +21,69 @@ lexbor_conv_float_to_data(double num, lxb_char_t *buf, size_t len)
|
|
|
21
21
|
size_t
|
|
22
22
|
lexbor_conv_long_to_data(long num, lxb_char_t *buf, size_t len)
|
|
23
23
|
{
|
|
24
|
-
return
|
|
24
|
+
return lexbor_conv_int64_to_data((int64_t) num, buf, len);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
size_t
|
|
28
|
+
lexbor_conv_int64_to_data(int64_t num, lxb_char_t *buf, size_t len)
|
|
29
|
+
{
|
|
30
|
+
int64_t tmp;
|
|
31
|
+
size_t have_minus, i, length;
|
|
32
|
+
|
|
33
|
+
static const lxb_char_t *digits = (const lxb_char_t *) "0123456789";
|
|
34
|
+
|
|
35
|
+
if (num != 0) {
|
|
36
|
+
tmp = num;
|
|
37
|
+
length = 0;
|
|
38
|
+
have_minus = 0;
|
|
39
|
+
|
|
40
|
+
if (num < 0) {
|
|
41
|
+
length = 1;
|
|
42
|
+
num = -num;
|
|
43
|
+
have_minus = 1;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
while (tmp != 0) {
|
|
47
|
+
length += 1;
|
|
48
|
+
tmp /= 10;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* length += (size_t) floor(log10(labs((long) num))) + 1; */
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
if (len > 0) {
|
|
55
|
+
buf[0] = '0';
|
|
56
|
+
return 1;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (len < length) {
|
|
63
|
+
i = (length + have_minus) - len;
|
|
64
|
+
|
|
65
|
+
while (i != have_minus) {
|
|
66
|
+
i -= 1;
|
|
67
|
+
num /= 10;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
length = len;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (have_minus) {
|
|
74
|
+
buf[0] = '-';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
i = length;
|
|
78
|
+
buf[length] = '\0';
|
|
79
|
+
|
|
80
|
+
while (i != have_minus) {
|
|
81
|
+
i -= 1;
|
|
82
|
+
buf[i] = digits[ num % 10 ];
|
|
83
|
+
num /= 10;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
return length;
|
|
25
87
|
}
|
|
26
88
|
|
|
27
89
|
double
|
|
@@ -47,8 +109,10 @@ lexbor_conv_data_to_double(const lxb_char_t **start, size_t len)
|
|
|
47
109
|
switch (**start) {
|
|
48
110
|
case '-':
|
|
49
111
|
minus = true;
|
|
112
|
+
/* fall through */
|
|
50
113
|
case '+':
|
|
51
114
|
(*start)++;
|
|
115
|
+
/* fall through */
|
|
52
116
|
default:
|
|
53
117
|
break;
|
|
54
118
|
}
|
|
@@ -183,8 +247,10 @@ lexbor_conv_data_to_long(const lxb_char_t **data, size_t length)
|
|
|
183
247
|
switch (*p) {
|
|
184
248
|
case '-':
|
|
185
249
|
minus = true;
|
|
250
|
+
/* fall through */
|
|
186
251
|
case '+':
|
|
187
252
|
p++;
|
|
253
|
+
/* fall through */
|
|
188
254
|
default:
|
|
189
255
|
break;
|
|
190
256
|
}
|
|
@@ -237,3 +303,44 @@ done:
|
|
|
237
303
|
|
|
238
304
|
return number;
|
|
239
305
|
}
|
|
306
|
+
|
|
307
|
+
size_t
|
|
308
|
+
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length)
|
|
309
|
+
{
|
|
310
|
+
lxb_char_t c;
|
|
311
|
+
size_t len;
|
|
312
|
+
uint32_t tmp;
|
|
313
|
+
|
|
314
|
+
static const lxb_char_t map_str[] = "0123456789abcdef";
|
|
315
|
+
|
|
316
|
+
if(number != 0) {
|
|
317
|
+
tmp = number;
|
|
318
|
+
len = 0;
|
|
319
|
+
|
|
320
|
+
while (tmp != 0) {
|
|
321
|
+
len += 1;
|
|
322
|
+
tmp /= 16;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/* len = (size_t) floor(log10(labs((long) number))) + 1; */
|
|
326
|
+
}
|
|
327
|
+
else {
|
|
328
|
+
if (length > 0) {
|
|
329
|
+
out[0] = '0';
|
|
330
|
+
return 1;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
return 0;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
length = len - 1;
|
|
337
|
+
|
|
338
|
+
while (number != 0) {
|
|
339
|
+
c = number % 16;
|
|
340
|
+
number = number / 16;
|
|
341
|
+
|
|
342
|
+
out[ length-- ] = map_str[c];
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
return len;
|
|
346
|
+
}
|
|
@@ -21,6 +21,9 @@ lexbor_conv_float_to_data(double num, lxb_char_t *buf, size_t len);
|
|
|
21
21
|
LXB_API size_t
|
|
22
22
|
lexbor_conv_long_to_data(long num, lxb_char_t *buf, size_t len);
|
|
23
23
|
|
|
24
|
+
LXB_API size_t
|
|
25
|
+
lexbor_conv_int64_to_data(int64_t num, lxb_char_t *buf, size_t len);
|
|
26
|
+
|
|
24
27
|
LXB_API double
|
|
25
28
|
lexbor_conv_data_to_double(const lxb_char_t **start, size_t len);
|
|
26
29
|
|
|
@@ -33,6 +36,8 @@ lexbor_conv_data_to_long(const lxb_char_t **data, size_t length);
|
|
|
33
36
|
LXB_API unsigned
|
|
34
37
|
lexbor_conv_data_to_uint(const lxb_char_t **data, size_t length);
|
|
35
38
|
|
|
39
|
+
LXB_API size_t
|
|
40
|
+
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length);
|
|
36
41
|
|
|
37
42
|
lxb_inline long
|
|
38
43
|
lexbor_conv_double_to_long(double number)
|
|
@@ -35,6 +35,31 @@ lexbor_str_init(lexbor_str_t *str, lexbor_mraw_t *mraw, size_t size)
|
|
|
35
35
|
return str->data;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
lxb_char_t *
|
|
39
|
+
lexbor_str_init_append(lexbor_str_t *str, lexbor_mraw_t *mraw,
|
|
40
|
+
const lxb_char_t *data, size_t length)
|
|
41
|
+
{
|
|
42
|
+
lxb_char_t *p;
|
|
43
|
+
|
|
44
|
+
if (str == NULL) {
|
|
45
|
+
return NULL;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
p = lexbor_mraw_alloc(mraw, (length + 1));
|
|
49
|
+
if (p == NULL) {
|
|
50
|
+
return NULL;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
memcpy(p, data, length);
|
|
54
|
+
|
|
55
|
+
p[length] = '\0';
|
|
56
|
+
|
|
57
|
+
str->data = p;
|
|
58
|
+
str->length = length;
|
|
59
|
+
|
|
60
|
+
return p;
|
|
61
|
+
}
|
|
62
|
+
|
|
38
63
|
void
|
|
39
64
|
lexbor_str_clean(lexbor_str_t *str)
|
|
40
65
|
{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2018 Alexander Borisov
|
|
2
|
+
* Copyright (C) 2018-2023 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -56,6 +56,10 @@ lexbor_str_create(void);
|
|
|
56
56
|
LXB_API lxb_char_t *
|
|
57
57
|
lexbor_str_init(lexbor_str_t *str, lexbor_mraw_t *mraw, size_t size);
|
|
58
58
|
|
|
59
|
+
LXB_API lxb_char_t *
|
|
60
|
+
lexbor_str_init_append(lexbor_str_t *str, lexbor_mraw_t *mraw,
|
|
61
|
+
const lxb_char_t *data, size_t length);
|
|
62
|
+
|
|
59
63
|
LXB_API void
|
|
60
64
|
lexbor_str_clean(lexbor_str_t *str);
|
|
61
65
|
|
|
@@ -57,7 +57,7 @@ lxb_css_at_rule_state__custom(lxb_css_parser_t *parser,
|
|
|
57
57
|
lxb_css_syntax_parser_consume(parser);
|
|
58
58
|
token = lxb_css_syntax_parser_token(parser);
|
|
59
59
|
|
|
60
|
-
while (token != NULL && token->type !=
|
|
60
|
+
while (token != NULL && token->type != LXB_CSS_SYNTAX_TOKEN__END) {
|
|
61
61
|
status = lxb_css_syntax_token_serialize_str(token, &custom->prelude,
|
|
62
62
|
parser->memory->mraw);
|
|
63
63
|
if (status != LXB_STATUS_OK) {
|
|
@@ -88,7 +88,7 @@ lxb_css_property_state__custom_block(lxb_css_parser_t *parser,
|
|
|
88
88
|
return lxb_css_parser_memory_fail(parser);
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
while (token != NULL && token->type !=
|
|
91
|
+
while (token != NULL && token->type != LXB_CSS_SYNTAX_TOKEN__END) {
|
|
92
92
|
status = lxb_css_syntax_token_serialize_str(token, &custom->block,
|
|
93
93
|
parser->memory->mraw);
|
|
94
94
|
if (status != LXB_STATUS_OK) {
|
|
@@ -290,7 +290,7 @@ lxb_css_declaration_list_bad(lxb_css_parser_t *parser,
|
|
|
290
290
|
lxb_css_rule_declaration_t *declar = ctx;
|
|
291
291
|
const lxb_css_syntax_declarations_offset_t *offset;
|
|
292
292
|
|
|
293
|
-
while (token != NULL && token->type !=
|
|
293
|
+
while (token != NULL && token->type != LXB_CSS_SYNTAX_TOKEN__END) {
|
|
294
294
|
lxb_css_syntax_parser_consume(parser);
|
|
295
295
|
token = lxb_css_syntax_parser_token(parser);
|
|
296
296
|
}
|
|
@@ -156,25 +156,29 @@ lxb_css_parser_state_t *
|
|
|
156
156
|
lxb_css_parser_states_push(lxb_css_parser_t *parser,
|
|
157
157
|
lxb_css_parser_state_f state, void *ctx, bool root)
|
|
158
158
|
{
|
|
159
|
+
size_t length, cur_length;
|
|
159
160
|
lxb_css_parser_state_t *states = ++parser->states;
|
|
160
161
|
|
|
161
162
|
if (states >= parser->states_end) {
|
|
162
|
-
|
|
163
|
-
size_t new_length = length + 1024;
|
|
163
|
+
cur_length = states - parser->states_begin;
|
|
164
164
|
|
|
165
|
-
if (SIZE_MAX -
|
|
165
|
+
if (SIZE_MAX - cur_length < 1024) {
|
|
166
166
|
goto memory_error;
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
+
length = cur_length + 1024;
|
|
170
|
+
|
|
169
171
|
states = lexbor_realloc(parser->states_begin,
|
|
170
|
-
|
|
172
|
+
length * sizeof(lxb_css_parser_state_t));
|
|
171
173
|
if (states == NULL) {
|
|
172
174
|
goto memory_error;
|
|
173
175
|
}
|
|
174
176
|
|
|
175
177
|
parser->states_begin = states;
|
|
176
|
-
parser->states_end = states +
|
|
177
|
-
parser->states = states +
|
|
178
|
+
parser->states_end = states + length;
|
|
179
|
+
parser->states = states + cur_length;
|
|
180
|
+
|
|
181
|
+
states = parser->states;
|
|
178
182
|
}
|
|
179
183
|
|
|
180
184
|
states->state = state;
|