selectolax 0.3.29__tar.gz → 0.3.30__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.29 → selectolax-0.3.30}/CHANGES.rst +9 -0
- {selectolax-0.3.29/selectolax.egg-info → selectolax-0.3.30}/PKG-INFO +21 -21
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/README.md +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/conv.c +7 -2
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/conv.h +2 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/base.h +2 -2
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/declaration.c +0 -9
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/parser.h +0 -3
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property/state.c +5 -5
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property.c +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/stylesheet.c +0 -9
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/base.h +2 -2
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/parser.c +1 -42
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/parser.h +1 -6
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/res.h +12 -12
- selectolax-0.3.30/lexbor/source/lexbor/css/syntax/state.c +1866 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/state.h +15 -15
- selectolax-0.3.30/lexbor/source/lexbor/css/syntax/state_res.h +273 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/token.c +77 -48
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/token.h +14 -5
- selectolax-0.3.30/lexbor/source/lexbor/css/syntax/token_res.h +90 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/tokenizer/error.h +3 -1
- selectolax-0.3.30/lexbor/source/lexbor/css/syntax/tokenizer.c +396 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/tokenizer.h +17 -38
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/unit/const.h +3 -3
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/unit/res.h +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/unit.c +2 -2
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/unit.h +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/value.h +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/attr.c +8 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/element.c +3 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/serialize.c +27 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree.c +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/selectors/selectors.c +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/res.h +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/url/base.h +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/url/url.c +30 -5
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/url/url.h +4 -0
- selectolax-0.3.30/pyproject.toml +65 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/__init__.py +1 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor/node.pxi +6 -6
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor/selection.pxi +6 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor.c +1755 -1606
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor.pyi +5 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor.pyx +6 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/modest/node.pxi +8 -6
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/parser.c +3435 -3120
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/parser.pyx +15 -4
- {selectolax-0.3.29 → selectolax-0.3.30/selectolax.egg-info}/PKG-INFO +21 -21
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax.egg-info/SOURCES.txt +1 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax.egg-info/requires.txt +1 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/setup.cfg +5 -1
- {selectolax-0.3.29 → selectolax-0.3.30}/setup.py +1 -22
- {selectolax-0.3.29 → selectolax-0.3.30}/tests/test_nodes.py +200 -143
- selectolax-0.3.30/tests/test_parser.py +299 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/tests/test_utils.py +34 -10
- selectolax-0.3.29/lexbor/source/lexbor/css/syntax/state.c +0 -2744
- selectolax-0.3.29/lexbor/source/lexbor/css/syntax/state_res.h +0 -273
- selectolax-0.3.29/lexbor/source/lexbor/css/syntax/token_res.h +0 -68
- selectolax-0.3.29/lexbor/source/lexbor/css/syntax/tokenizer.c +0 -709
- selectolax-0.3.29/tests/test_parser.py +0 -121
- {selectolax-0.3.29 → selectolax-0.3.30}/LICENSE +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/MANIFEST.in +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/README.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/Makefile +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/conf.py +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/index.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/lexbor.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/logo.png +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/make.bat +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/modules.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/parser.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/docs/selectolax.rst +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/.git +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/.travis.yml +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/CHANGELOG.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/CMakeLists.txt +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/INSTALL.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/LICENSE +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/NOTICE +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/config.cmake +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/feature.cmake +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/pvs_studio.sh +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/array.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/array.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/array_obj.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/array_obj.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/avl.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/avl.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/bst.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/bst.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/bst_map.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/bst_map.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/core.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/def.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/diyfp.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/diyfp.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/dobject.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/dobject.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/dtoa.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/dtoa.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/fs.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/hash.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/hash.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/in.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/in.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/lexbor.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/mem.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/mem.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/mraw.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/mraw.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/perf.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/plog.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/plog.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/print.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/print.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/sbst.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/serialize.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/serialize.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/shs.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/shs.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/str.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/str.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/str_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/strtod.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/strtod.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/swar.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/types.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/utils.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/core/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/at_rule.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/css.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/css.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/declaration.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/log.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/log.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/property.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/rule.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/rule.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo_state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/pseudo_state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/selector.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/selector.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/selectors.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/selectors.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/selectors/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/stylesheet.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/anb.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/anb.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/syntax.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/syntax.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/syntax/tokenizer/error.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/value/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/value/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/css/value.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/collection.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/collection.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/dom.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/exception.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/exception.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interface.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interface.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/attr.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/attr_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/attr_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/cdata_section.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/cdata_section.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/character_data.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/character_data.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/comment.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/comment.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document_fragment.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document_fragment.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document_type.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/document_type.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/event_target.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/event_target.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/node.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/shadow_root.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/shadow_root.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/text.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/dom/interfaces/text.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/decode.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/decode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/encode.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/encode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/encoding.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/encoding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/multi.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/multi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/range.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/range.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/res.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/single.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/encoding/single.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/engine/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/engine/engine.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/engine/engine.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/encoding.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/encoding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/html.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interface.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interface.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interface_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/anchor_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/anchor_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/area_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/area_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/audio_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/audio_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/base_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/base_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/body_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/body_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/br_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/br_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/button_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/button_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/canvas_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/canvas_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/d_list_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/d_list_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/data_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/data_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/data_list_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/data_list_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/details_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/details_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/dialog_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/dialog_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/directory_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/directory_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/div_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/div_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/document.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/document.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/embed_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/embed_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/field_set_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/field_set_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/font_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/font_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/form_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/form_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/frame_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/frame_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/frame_set_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/frame_set_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/head_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/head_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/heading_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/heading_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/hr_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/hr_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/html_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/html_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/iframe_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/iframe_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/image_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/image_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/input_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/input_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/label_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/label_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/legend_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/legend_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/li_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/li_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/link_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/link_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/map_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/map_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/marquee_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/marquee_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/media_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/media_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/menu_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/menu_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/meta_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/meta_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/meter_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/meter_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/mod_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/mod_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/o_list_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/o_list_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/object_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/object_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/opt_group_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/opt_group_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/option_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/option_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/output_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/output_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/paragraph_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/paragraph_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/param_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/param_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/picture_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/picture_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/pre_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/pre_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/progress_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/progress_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/quote_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/quote_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/script_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/script_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/select_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/select_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/slot_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/slot_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/source_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/source_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/span_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/span_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/style_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/style_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_caption_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_caption_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_cell_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_cell_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_col_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_col_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_row_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_row_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_section_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/table_section_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/template_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/template_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/text_area_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/text_area_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/time_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/time_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/title_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/title_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/track_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/track_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/u_list_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/u_list_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/unknown_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/unknown_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/video_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/video_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/window.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/interfaces/window.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/node.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/serialize.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tag.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tag_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/token.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/token.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/token_attr.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/token_attr.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/error.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/error.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_comment.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_comment.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_doctype.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_doctype.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_script.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer/state_script.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tokenizer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/active_formatting.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/active_formatting.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/error.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/error.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode/text.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/insertion_mode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/open_elements.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/open_elements.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/template_insertion.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree/template_insertion.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/html/tree_res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ns/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ns/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ns/ns.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ns/ns.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ns/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/punycode/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/punycode/punycode.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/punycode/punycode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/selectors/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/selectors/selectors.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/dom/interfaces/document.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/dom/interfaces/document.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/dom/interfaces/element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/dom/interfaces/element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/event.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/event.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/html/interfaces/document.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/html/interfaces/document.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/html/interfaces/element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/html/interfaces/style_element.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/html/interfaces/style_element.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/style.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/style/style.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/tag/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/tag/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/tag/res.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/tag/tag.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/tag/tag.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/idna.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/idna.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/unicode.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/unicode/unicode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/base.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/http.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/http.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/warc.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/source/lexbor/utils/warc.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/lexbor/version +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/.git +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/.gitignore +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/.travis.yml +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/CHANGELOG.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/CMakeLists.txt +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/INSTALL.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/LICENSE +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/Makefile +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/Makefile.bin.cfg +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/Makefile.cfg +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/README.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/api_breaking_changes.md +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/declaration.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/finder.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/match.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/thread.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/finder/type.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/glue.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/layer/layer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/modest.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/node/node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/node/property.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/node/raw_property.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/node/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/render/begin.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/render/binding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/render/tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/render/tree_node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/default.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/default_entries.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/default_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/map.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/map_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/raw.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/sheet.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/modest/style/type.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/incoming.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/mythread.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/perf.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/thread_queue.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycore/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/api.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/check.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/convert.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/default.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/declaration/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/entry.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/media/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/media/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/media/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/mycss.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/namespace/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/namespace/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/property/shared.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/function.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/list.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/value.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/stack.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/stylesheet.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/tokenizer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/color.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/color_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/consume.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/destroy.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/image.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/units.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/mycss/values/values.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myencoding/encoding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myencoding/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myencoding/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myencoding/resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/cmap.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/glyf.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/head.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/hhea.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/hmtx.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/loca.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/maxp.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/myfont.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/name.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/os_2.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/pclt.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/vhea.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myfont/vmtx.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/api.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/callback.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/charef.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/data_process.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/def.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/myhtml.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/rules.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/stream.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tag.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tag_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/token.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myhtml/tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myunicode/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/host.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/path.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/punycode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/scheme.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/scheme_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/url.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/include/myurl/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/modest.pc.in +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/modestConfig.cmake.in +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/declaration.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/declaration.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/finder.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/finder.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/match.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/match.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/pseudo_class.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/thread.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/thread.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/type.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/finder/type.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/glue.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/glue.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/layer/layer.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/layer/layer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/modest.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/modest.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/node.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/property.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/property.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/raw_property.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/raw_property.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/node/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/begin.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/begin.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/binding.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/binding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/tree.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/tree_node.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/render/tree_node.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/default.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/default.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/default_entries.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/default_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/map.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/map.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/map_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/raw.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/raw.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/sheet.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/sheet.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/type.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/modest/style/type.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/incoming.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/incoming.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/myosi.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/mystring.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/mythread.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/mythread.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/perf.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/thread_queue.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/thread_queue.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/avl_tree.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mchar_async.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcobject.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcobject_async.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcsimple.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mctree.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mhash.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycore/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/an_plus_b.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/api.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/check.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/check.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/convert.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/convert.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/default.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/default.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/entry.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/entry_destroy.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/declaration/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/entry.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/entry.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/media/init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/media/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/media/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/media/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/media/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/mycss.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/mycss.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/mystring.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/namespace/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser_background.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser_image.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser_text_decoration.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/parser_url.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/shared.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/property/shared.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/function.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/function.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/function_parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/init.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/list.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/list.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/pseudo.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/state.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/state.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/value.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/value.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/stack.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/stack.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/stylesheet.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/stylesheet.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/syntax/ending.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/syntax/syntax.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer_end.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer_global.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color_parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/consume.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/consume.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/destroy.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/destroy.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/image.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/image.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/units.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/units.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/values.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/mycss/values/values.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/detect.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/encoding.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/encoding.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/mystring.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myencoding/resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/cmap.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/cmap.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/glyf.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/glyf.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/head.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/head.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/hhea.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/hhea.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/hmtx.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/hmtx.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/loca.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/loca.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/maxp.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/maxp.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/myfont.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/myfont.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/myosi.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/name.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/name.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/os_2.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/os_2.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/pclt.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/pclt.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/vhea.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/vhea.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/vmtx.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myfont/vmtx.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/api.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/callback.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/callback.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/charef.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/charef.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/data_process.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/data_process.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/def.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/myhtml.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/myhtml.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/mynamespace.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/mystring.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/mystring.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/rules.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/rules.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/stream.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/stream.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tag.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tag.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tag_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tag_init.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/token.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/token.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_doctype.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_end.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_script.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tree.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myhtml/tree.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/posix/mycore/io.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/posix/mycore/memory.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/posix/mycore/perf.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/posix/mycore/thread.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/posix/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/windows_nt/mycore/io.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/windows_nt/mycore/memory.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/windows_nt/mycore/perf.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/windows_nt/mycore/thread.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myport/windows_nt/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myunicode/myosi.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myunicode/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/host.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/host.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/myosi.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/myosi.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/parser.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/parser.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/parser_end.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/path.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/path.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/punycode.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/punycode.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/scheme.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/scheme.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/scheme_const.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/serialization.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/serialization.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/url.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/url.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/utils.c +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/modest/source/myurl/utils.h +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/base.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor/attrs.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor/util.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/lexbor.pxd +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/modest/selection.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/modest/util.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/parser.pxd +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/parser.pyi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/py.typed +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax/utils.pxi +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax.egg-info/dependency_links.txt +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax.egg-info/not-zip-safe +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/selectolax.egg-info/top_level.txt +0 -0
- {selectolax-0.3.29 → selectolax-0.3.30}/tests/__init__.py +0 -0
|
@@ -1,13 +1,25 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: selectolax
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.30
|
|
4
4
|
Summary: Fast HTML5 parser with CSS selectors.
|
|
5
5
|
Home-page: https://github.com/rushter/selectolax
|
|
6
6
|
Author: Artem Golubin
|
|
7
|
-
Author-email: me@rushter.com
|
|
8
|
-
License:
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
Author-email: Artem Golubin <me@rushter.com>
|
|
8
|
+
License:
|
|
9
|
+
MIT License
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2018-2025, Artem Golubin
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
18
|
+
|
|
19
|
+
Project-URL: Repository, https://github.com/rushter/selectolax
|
|
20
|
+
Project-URL: Documentation, https://selectolax.readthedocs.io/en/latest/parser.html
|
|
21
|
+
Project-URL: Changelog, https://github.com/rushter/selectolax/blob/main/CHANGES.rst
|
|
22
|
+
Keywords: selectolax,html,parser,css,fast
|
|
11
23
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
24
|
Classifier: Topic :: Text Processing :: Markup :: HTML
|
|
13
25
|
Classifier: Topic :: Internet
|
|
@@ -16,27 +28,15 @@ Classifier: Intended Audience :: Developers
|
|
|
16
28
|
Classifier: License :: OSI Approved :: MIT License
|
|
17
29
|
Classifier: Natural Language :: English
|
|
18
30
|
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
31
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
32
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
33
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
34
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
35
|
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
-
|
|
36
|
+
Requires-Python: >=3.9
|
|
37
|
+
Description-Content-Type: text/x-rst
|
|
27
38
|
Provides-Extra: cython
|
|
28
|
-
|
|
29
|
-
Dynamic: author
|
|
30
|
-
Dynamic: author-email
|
|
31
|
-
Dynamic: classifier
|
|
32
|
-
Dynamic: description
|
|
33
|
-
Dynamic: home-page
|
|
34
|
-
Dynamic: keywords
|
|
35
|
-
Dynamic: license
|
|
36
|
-
Dynamic: license-file
|
|
37
|
-
Dynamic: project-url
|
|
38
|
-
Dynamic: provides-extra
|
|
39
|
-
Dynamic: summary
|
|
39
|
+
License-File: LICENSE
|
|
40
40
|
|
|
41
41
|
.. image:: docs/logo.png
|
|
42
42
|
:alt: selectolax logo
|
|
@@ -232,7 +232,7 @@ Alexander Borisov <borisov@lexbor.com>
|
|
|
232
232
|
|
|
233
233
|
Lexbor.
|
|
234
234
|
|
|
235
|
-
Copyright 2018-
|
|
235
|
+
Copyright 2018-2025 Alexander Borisov
|
|
236
236
|
|
|
237
237
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
238
238
|
you may not use this file except in compliance with the License.
|
|
@@ -305,13 +305,18 @@ done:
|
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
size_t
|
|
308
|
-
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length
|
|
308
|
+
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length,
|
|
309
|
+
bool upper)
|
|
309
310
|
{
|
|
310
311
|
lxb_char_t c;
|
|
311
312
|
size_t len;
|
|
312
313
|
uint32_t tmp;
|
|
314
|
+
const lxb_char_t *map_str;
|
|
313
315
|
|
|
314
|
-
static const lxb_char_t
|
|
316
|
+
static const lxb_char_t map_str_l[] = "0123456789abcdef";
|
|
317
|
+
static const lxb_char_t map_str_u[] = "0123456789ABCDEF";
|
|
318
|
+
|
|
319
|
+
map_str = (upper) ? map_str_u : map_str_l;
|
|
315
320
|
|
|
316
321
|
if(number != 0) {
|
|
317
322
|
tmp = number;
|
|
@@ -37,7 +37,8 @@ LXB_API unsigned
|
|
|
37
37
|
lexbor_conv_data_to_uint(const lxb_char_t **data, size_t length);
|
|
38
38
|
|
|
39
39
|
LXB_API size_t
|
|
40
|
-
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length
|
|
40
|
+
lexbor_conv_dec_to_hex(uint32_t number, lxb_char_t *out, size_t length,
|
|
41
|
+
bool upper);
|
|
41
42
|
|
|
42
43
|
lxb_inline long
|
|
43
44
|
lexbor_conv_double_to_long(double number)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2019-
|
|
2
|
+
* Copyright (C) 2019-2025 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -18,7 +18,7 @@ extern "C" {
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
#define LXB_CSS_VERSION_MAJOR 1
|
|
21
|
-
#define LXB_CSS_VERSION_MINOR
|
|
21
|
+
#define LXB_CSS_VERSION_MINOR 3
|
|
22
22
|
#define LXB_CSS_VERSION_PATCH 0
|
|
23
23
|
|
|
24
24
|
#define LXB_CSS_VERSION_STRING \
|
|
@@ -70,12 +70,6 @@ lxb_css_declaration_list_prepare(lxb_css_parser_t *parser,
|
|
|
70
70
|
parser->tkz->with_comment = false;
|
|
71
71
|
parser->stage = LXB_CSS_PARSER_RUN;
|
|
72
72
|
|
|
73
|
-
parser->chunk_cb = parser->tkz->chunk_cb;
|
|
74
|
-
parser->chunk_ctx = parser->tkz->chunk_ctx;
|
|
75
|
-
|
|
76
|
-
parser->tkz->chunk_cb = lxb_css_syntax_parser_tkz_cb;
|
|
77
|
-
parser->tkz->chunk_ctx = parser;
|
|
78
|
-
|
|
79
73
|
return LXB_STATUS_OK;
|
|
80
74
|
}
|
|
81
75
|
|
|
@@ -118,9 +112,6 @@ failed:
|
|
|
118
112
|
void
|
|
119
113
|
lxb_css_declaration_list_finish(lxb_css_parser_t *parser)
|
|
120
114
|
{
|
|
121
|
-
parser->tkz->chunk_cb = parser->chunk_cb;
|
|
122
|
-
parser->tkz->chunk_ctx = parser->chunk_ctx;
|
|
123
|
-
|
|
124
115
|
parser->memory = parser->old_memory;
|
|
125
116
|
parser->stage = LXB_CSS_PARSER_END;
|
|
126
117
|
}
|
|
@@ -396,7 +396,7 @@ lxb_css_property_state_angle(lxb_css_parser_t *parser,
|
|
|
396
396
|
return false;
|
|
397
397
|
}
|
|
398
398
|
|
|
399
|
-
unit =
|
|
399
|
+
unit = lxb_css_unit_angle_by_name(lxb_css_syntax_token_dimension(token)->str.data,
|
|
400
400
|
lxb_css_syntax_token_dimension(token)->str.length);
|
|
401
401
|
if (unit == NULL) {
|
|
402
402
|
return false;
|
|
@@ -404,7 +404,7 @@ lxb_css_property_state_angle(lxb_css_parser_t *parser,
|
|
|
404
404
|
|
|
405
405
|
angle->num = lxb_css_syntax_token_dimension(token)->num.num;
|
|
406
406
|
angle->is_float = lxb_css_syntax_token_dimension(token)->num.is_float;
|
|
407
|
-
angle->unit = (
|
|
407
|
+
angle->unit = (lxb_css_unit_angle_t) unit->unique;
|
|
408
408
|
|
|
409
409
|
lxb_css_syntax_parser_consume(parser);
|
|
410
410
|
|
|
@@ -450,7 +450,7 @@ lxb_css_property_state_hue(lxb_css_parser_t *parser,
|
|
|
450
450
|
|
|
451
451
|
switch (token->type) {
|
|
452
452
|
case LXB_CSS_SYNTAX_TOKEN_DIMENSION:
|
|
453
|
-
unit =
|
|
453
|
+
unit = lxb_css_unit_angle_by_name(lxb_css_syntax_token_dimension(token)->str.data,
|
|
454
454
|
lxb_css_syntax_token_dimension(token)->str.length);
|
|
455
455
|
if (unit == NULL) {
|
|
456
456
|
return false;
|
|
@@ -459,7 +459,7 @@ lxb_css_property_state_hue(lxb_css_parser_t *parser,
|
|
|
459
459
|
hue->type = LXB_CSS_VALUE__ANGLE;
|
|
460
460
|
hue->u.angle.num = lxb_css_syntax_token_dimension(token)->num.num;
|
|
461
461
|
hue->u.angle.is_float = lxb_css_syntax_token_dimension(token)->num.is_float;
|
|
462
|
-
hue->u.angle.unit = (
|
|
462
|
+
hue->u.angle.unit = (lxb_css_unit_angle_t) unit->unique;
|
|
463
463
|
break;
|
|
464
464
|
|
|
465
465
|
case LXB_CSS_SYNTAX_TOKEN_NUMBER:
|
|
@@ -3313,7 +3313,7 @@ lxb_css_property_state_font_style(lxb_css_parser_t *parser,
|
|
|
3313
3313
|
return lxb_css_parser_success(parser);
|
|
3314
3314
|
}
|
|
3315
3315
|
else {
|
|
3316
|
-
fs->angle.unit = (
|
|
3316
|
+
fs->angle.unit = (lxb_css_unit_angle_t) LXB_CSS_UNIT__UNDEF;
|
|
3317
3317
|
}
|
|
3318
3318
|
|
|
3319
3319
|
break;
|
|
@@ -1941,7 +1941,7 @@ lxb_css_property_font_style_serialize(const void *style,
|
|
|
1941
1941
|
return status;
|
|
1942
1942
|
}
|
|
1943
1943
|
|
|
1944
|
-
if (fs->angle.unit != (
|
|
1944
|
+
if (fs->angle.unit != (lxb_css_unit_angle_t) LXB_CSS_UNIT__UNDEF) {
|
|
1945
1945
|
lexbor_serialize_write(cb, str_ws.data, str_ws.length, ctx, status);
|
|
1946
1946
|
|
|
1947
1947
|
status = lxb_css_value_angle_sr(&fs->angle, cb, ctx);
|
|
@@ -181,12 +181,6 @@ lxb_css_stylesheet_prepare(lxb_css_parser_t *parser, lxb_css_memory_t *memory,
|
|
|
181
181
|
parser->tkz->with_comment = false;
|
|
182
182
|
parser->stage = LXB_CSS_PARSER_RUN;
|
|
183
183
|
|
|
184
|
-
parser->chunk_cb = parser->tkz->chunk_cb;
|
|
185
|
-
parser->chunk_ctx = parser->tkz->chunk_ctx;
|
|
186
|
-
|
|
187
|
-
parser->tkz->chunk_cb = lxb_css_syntax_parser_tkz_cb;
|
|
188
|
-
parser->tkz->chunk_ctx = parser;
|
|
189
|
-
|
|
190
184
|
return LXB_STATUS_OK;
|
|
191
185
|
}
|
|
192
186
|
|
|
@@ -229,9 +223,6 @@ lxb_css_stylesheet_process(lxb_css_parser_t *parser,
|
|
|
229
223
|
void
|
|
230
224
|
lxb_css_stylesheet_finish(lxb_css_parser_t *parser)
|
|
231
225
|
{
|
|
232
|
-
parser->tkz->chunk_cb = parser->chunk_cb;
|
|
233
|
-
parser->tkz->chunk_ctx = parser->chunk_ctx;
|
|
234
|
-
|
|
235
226
|
parser->memory = parser->old_memory;
|
|
236
227
|
parser->selectors = parser->old_selectors;
|
|
237
228
|
parser->stage = LXB_CSS_PARSER_END;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2018-
|
|
2
|
+
* Copyright (C) 2018-2025 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -17,7 +17,7 @@ extern "C" {
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
#define LXB_CSS_SYNTAX_VERSION_MAJOR 1
|
|
20
|
-
#define LXB_CSS_SYNTAX_VERSION_MINOR
|
|
20
|
+
#define LXB_CSS_SYNTAX_VERSION_MINOR 3
|
|
21
21
|
#define LXB_CSS_SYNTAX_VERSION_PATCH 0
|
|
22
22
|
|
|
23
23
|
#define LXB_CSS_SYNTAX_VERSION_STRING \
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2020-
|
|
2
|
+
* Copyright (C) 2020-2025 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -175,47 +175,6 @@ lxb_css_syntax_parser_consume(lxb_css_parser_t *parser)
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
lxb_status_t
|
|
179
|
-
lxb_css_syntax_parser_tkz_cb(lxb_css_syntax_tokenizer_t *tkz,
|
|
180
|
-
const lxb_char_t **data, const lxb_char_t **end,
|
|
181
|
-
void *ctx)
|
|
182
|
-
{
|
|
183
|
-
size_t length, size;
|
|
184
|
-
lxb_char_t *new_data;
|
|
185
|
-
lxb_status_t status;
|
|
186
|
-
lxb_css_parser_t *parser = ctx;
|
|
187
|
-
|
|
188
|
-
if (parser->pos == NULL) {
|
|
189
|
-
return parser->chunk_cb(tkz, data, end, parser->chunk_ctx);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
length = (size_t) (*end - parser->pos);
|
|
193
|
-
|
|
194
|
-
if (SIZE_MAX - parser->str.length < length) {
|
|
195
|
-
return LXB_STATUS_ERROR_OVERFLOW;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
if (parser->str.length + length >= parser->str_size) {
|
|
199
|
-
size = parser->str.length + length + 1;
|
|
200
|
-
|
|
201
|
-
new_data = lexbor_realloc(parser->str.data, size);
|
|
202
|
-
if (new_data == NULL) {
|
|
203
|
-
return LXB_STATUS_ERROR_MEMORY_ALLOCATION;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
parser->str.data = new_data;
|
|
207
|
-
parser->str_size = size;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
memcpy(parser->str.data + parser->str.length, parser->pos, length);
|
|
211
|
-
|
|
212
|
-
status = parser->chunk_cb(tkz, data, end, parser->chunk_ctx);
|
|
213
|
-
parser->str.length += length;
|
|
214
|
-
parser->pos = *data;
|
|
215
|
-
|
|
216
|
-
return status;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
178
|
lxb_css_syntax_rule_t *
|
|
220
179
|
lxb_css_syntax_parser_list_rules_push(lxb_css_parser_t *parser,
|
|
221
180
|
const lxb_css_syntax_token_t *token,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2020-
|
|
2
|
+
* Copyright (C) 2020-2025 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -84,11 +84,6 @@ lxb_css_syntax_parser_pipe_push(lxb_css_parser_t *parser,
|
|
|
84
84
|
const lxb_css_syntax_cb_pipe_t *pipe,
|
|
85
85
|
void *ctx, lxb_css_syntax_token_type_t stop);
|
|
86
86
|
|
|
87
|
-
LXB_API lxb_status_t
|
|
88
|
-
lxb_css_syntax_parser_tkz_cb(lxb_css_syntax_tokenizer_t *tkz,
|
|
89
|
-
const lxb_char_t **data, const lxb_char_t **end,
|
|
90
|
-
void *ctx);
|
|
91
|
-
|
|
92
87
|
LXB_API const lxb_css_syntax_token_t *
|
|
93
88
|
lxb_css_syntax_parser_start_block(lxb_css_parser_t *parser,
|
|
94
89
|
const lxb_css_syntax_token_t *token,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (C) 2018-
|
|
2
|
+
* Copyright (C) 2018-2025 Alexander Borisov
|
|
3
3
|
*
|
|
4
4
|
* Author: Alexander Borisov <borisov@lexbor.com>
|
|
5
5
|
*/
|
|
@@ -26,20 +26,20 @@ static const lxb_char_t lxb_css_syntax_res_name_map[256] =
|
|
|
26
26
|
0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x01, 0x01,
|
|
27
27
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
28
28
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
29
|
-
0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
38
|
-
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
29
|
+
0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
30
|
+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
31
|
+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
32
|
+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
33
|
+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
34
|
+
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
35
|
+
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
36
|
+
0x00, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
39
37
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
38
|
+
0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01,
|
|
40
39
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
41
40
|
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
|
42
|
-
0x01, 0x01, 0x01, 0x01, 0x01, 0x01
|
|
41
|
+
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x01, 0x01,
|
|
42
|
+
0x01, 0x01, 0x01, 0x01, 0x01
|
|
43
43
|
};
|
|
44
44
|
|
|
45
45
|
#endif /* LXB_CSS_SYNTAX_RES_NAME_MAP_ENABLED */
|