selectolax 0.3.33__tar.gz → 0.3.34__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.34/CHANGES.md +330 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/MANIFEST.in +2 -2
- selectolax-0.3.34/PKG-INFO +32 -0
- selectolax-0.3.34/README.md +153 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/CHANGELOG.md +33 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/CMakeLists.txt +7 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/README.md +10 -5
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/config.cmake +51 -13
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/feature.cmake +60 -1
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/base.h +3 -3
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/dobject.h +0 -4
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/base.h +2 -2
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo_const.h +10 -9
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo_res.h +22 -14
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo_state.c +111 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo_state.h +4 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/selector.c +56 -23
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/selector.h +6 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document_type.h +0 -1
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/selectors/base.h +1 -1
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/selectors/selectors.c +34 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/url/url.c +1 -1
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/url/url.h +1 -1
- selectolax-0.3.34/lexbor/version +1 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/pyproject.toml +6 -3
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/__init__.py +1 -1
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor/node.pxi +6 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor.c +2095 -2079
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor.pyi +12 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor.pyx +5 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/parser.c +161 -145
- selectolax-0.3.34/selectolax.egg-info/PKG-INFO +32 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax.egg-info/SOURCES.txt +2 -2
- {selectolax-0.3.33 → selectolax-0.3.34}/setup.cfg +1 -7
- {selectolax-0.3.33 → selectolax-0.3.34}/setup.py +3 -2
- {selectolax-0.3.33 → selectolax-0.3.34}/tests/test_parser.py +8 -0
- selectolax-0.3.33/CHANGES.rst +0 -409
- selectolax-0.3.33/PKG-INFO +0 -183
- selectolax-0.3.33/README.rst +0 -154
- selectolax-0.3.33/lexbor/version +0 -1
- selectolax-0.3.33/selectolax.egg-info/PKG-INFO +0 -183
- {selectolax-0.3.33 → selectolax-0.3.34}/LICENSE +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/Makefile +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/conf.py +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/index.rst +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/lexbor.rst +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/logo.png +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/make.bat +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/modules.rst +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/parser.rst +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/docs/selectolax.rst +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/.git +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/.travis.yml +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/INSTALL.md +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/LICENSE +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/NOTICE +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/pvs_studio.sh +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/array.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/array.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/array_obj.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/array_obj.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/avl.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/avl.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/bst.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/bst.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/bst_map.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/bst_map.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/conv.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/conv.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/core.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/def.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/diyfp.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/diyfp.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/dobject.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/dtoa.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/dtoa.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/fs.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/hash.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/hash.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/in.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/in.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/lexbor.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/mem.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/mem.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/mraw.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/mraw.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/perf.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/plog.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/plog.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/print.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/print.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/sbst.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/serialize.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/serialize.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/shs.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/shs.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/str.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/str.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/str_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/strtod.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/strtod.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/swar.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/types.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/utils.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/core/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/at_rule.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/css.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/css.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/declaration.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/declaration.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/log.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/log.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/property.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/rule.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/rule.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/pseudo.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/selectors.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/selectors.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/selectors/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/stylesheet.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/stylesheet.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/anb.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/anb.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/state_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/syntax.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/syntax.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/token.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/token.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/token_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/tokenizer/error.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/tokenizer/error.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/tokenizer.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/syntax/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/unit/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/unit/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/unit.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/unit.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/value/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/value/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/value.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/css/value.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/collection.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/collection.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/dom.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/exception.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/exception.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interface.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interface.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/attr.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/attr.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/attr_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/attr_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/cdata_section.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/cdata_section.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/character_data.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/character_data.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/comment.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/comment.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document_fragment.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document_fragment.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/document_type.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/event_target.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/event_target.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/node.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/shadow_root.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/shadow_root.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/text.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/dom/interfaces/text.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/decode.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/decode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/encode.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/encode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/encoding.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/encoding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/multi.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/multi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/range.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/range.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/res.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/single.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/encoding/single.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/engine/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/engine/engine.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/engine/engine.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/encoding.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/encoding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/html.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interface.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interface.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interface_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/anchor_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/anchor_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/area_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/area_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/audio_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/audio_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/base_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/base_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/body_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/body_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/br_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/br_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/button_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/button_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/canvas_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/canvas_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/d_list_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/d_list_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/data_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/data_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/data_list_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/data_list_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/details_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/details_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/dialog_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/dialog_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/directory_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/directory_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/div_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/div_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/document.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/document.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/embed_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/embed_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/field_set_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/field_set_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/font_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/font_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/form_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/form_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/frame_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/frame_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/frame_set_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/frame_set_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/head_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/head_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/heading_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/heading_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/hr_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/hr_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/html_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/html_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/iframe_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/iframe_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/image_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/image_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/input_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/input_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/label_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/label_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/legend_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/legend_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/li_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/li_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/link_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/link_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/map_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/map_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/marquee_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/marquee_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/media_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/media_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/menu_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/menu_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/meta_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/meta_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/meter_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/meter_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/mod_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/mod_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/o_list_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/o_list_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/object_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/object_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/opt_group_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/opt_group_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/option_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/option_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/output_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/output_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/paragraph_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/paragraph_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/param_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/param_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/picture_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/picture_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/pre_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/pre_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/progress_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/progress_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/quote_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/quote_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/script_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/script_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/select_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/select_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/slot_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/slot_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/source_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/source_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/span_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/span_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/style_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/style_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_caption_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_caption_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_cell_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_cell_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_col_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_col_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_row_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_row_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_section_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/table_section_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/template_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/template_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/text_area_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/text_area_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/time_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/time_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/title_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/title_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/track_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/track_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/u_list_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/u_list_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/unknown_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/unknown_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/video_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/video_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/window.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/interfaces/window.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/node.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/serialize.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/serialize.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tag.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tag_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/token.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/token.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/token_attr.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/token_attr.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/error.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/error.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_comment.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_comment.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_doctype.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_doctype.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_script.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer/state_script.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/active_formatting.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/active_formatting.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/error.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/error.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode/text.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/insertion_mode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/open_elements.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/open_elements.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/template_insertion.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree/template_insertion.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/html/tree_res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ns/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ns/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ns/ns.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ns/ns.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ns/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/punycode/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/punycode/punycode.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/punycode/punycode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/selectors/selectors.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/dom/interfaces/document.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/dom/interfaces/document.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/dom/interfaces/element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/dom/interfaces/element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/event.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/event.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/html/interfaces/document.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/html/interfaces/document.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/html/interfaces/element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/html/interfaces/style_element.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/html/interfaces/style_element.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/style.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/style/style.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/tag/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/tag/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/tag/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/tag/tag.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/tag/tag.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/idna.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/idna.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/res.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/unicode.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/unicode/unicode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/url/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/base.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/http.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/http.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/warc.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/lexbor/source/lexbor/utils/warc.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/.git +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/.gitignore +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/.travis.yml +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/CHANGELOG.md +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/CMakeLists.txt +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/INSTALL.md +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/LICENSE +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/Makefile +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/Makefile.bin.cfg +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/Makefile.cfg +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/README.md +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/api_breaking_changes.md +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/declaration.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/finder.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/match.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/thread.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/finder/type.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/glue.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/layer/layer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/modest.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/node/node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/node/property.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/node/raw_property.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/node/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/render/begin.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/render/binding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/render/tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/render/tree_node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/default.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/default_entries.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/default_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/map.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/map_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/raw.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/sheet.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/modest/style/type.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/incoming.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/mythread.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/perf.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/thread_queue.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycore/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/api.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/check.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/convert.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/default.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/declaration/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/entry.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/media/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/media/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/media/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/mycss.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/namespace/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/namespace/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/property/shared.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/function.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/list.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/value.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/stack.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/stylesheet.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/color.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/color_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/consume.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/destroy.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/image.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/units.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/mycss/values/values.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myencoding/encoding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myencoding/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myencoding/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myencoding/resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/cmap.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/glyf.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/head.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/hhea.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/hmtx.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/loca.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/maxp.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/myfont.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/name.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/os_2.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/pclt.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/vhea.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myfont/vmtx.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/api.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/callback.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/charef.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/data_process.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/def.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/myhtml.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/rules.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/stream.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tag.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tag_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/token.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myhtml/tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myunicode/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/host.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/path.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/punycode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/scheme.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/scheme_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/url.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/include/myurl/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/modest.pc.in +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/modestConfig.cmake.in +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/declaration.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/declaration.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/finder.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/finder.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/match.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/match.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/pseudo_class.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/pseudo_class.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/thread.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/thread.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/type.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/finder/type.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/glue.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/glue.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/layer/layer.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/layer/layer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/modest.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/modest.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/node.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/property.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/property.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/raw_property.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/raw_property.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/node/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/begin.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/begin.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/binding.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/binding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/tree.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/tree_node.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/render/tree_node.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/default.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/default.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/default_entries.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/default_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/map.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/map.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/map_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/raw.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/raw.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/sheet.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/sheet.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/type.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/modest/style/type.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/incoming.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/incoming.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/myosi.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/mystring.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/mythread.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/mythread.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/perf.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/thread_queue.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/thread_queue.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/avl_tree.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/avl_tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mchar_async.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mchar_async.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcobject.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcobject.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcobject_async.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcobject_async.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcsimple.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcsimple.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mcsync.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mctree.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mctree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mhash.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/mhash.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycore/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/an_plus_b.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/an_plus_b.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/api.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/check.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/check.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/convert.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/convert.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/default.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/default.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/default_entries.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/default_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/entry.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/entry.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/entry_destroy.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/entry_destroy.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/entry_destroy_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/serialization_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/declaration/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/entry.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/entry.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/media/init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/media/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/media/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/media/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/media/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/mycss.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/mycss.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/mystring.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/namespace/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser_background.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser_image.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser_text_decoration.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/parser_url.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/resources_name.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/shared.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/property/shared.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/function.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/function.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/function_parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/function_parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/function_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/init.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/list.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/list.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/myosi_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/pseudo.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/pseudo.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/pseudo_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/state.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/state.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/value.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/value.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/selectors/value_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/stack.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/stack.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/stylesheet.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/stylesheet.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/syntax/ending.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/syntax/syntax.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/syntax_ending.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer_end.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer_end.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer_global.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer_global.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/tokenizer_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color_parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color_parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/color_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/consume.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/consume.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/destroy.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/destroy.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/image.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/image.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/image_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/units.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/units.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/units_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/values.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/mycss/values/values.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/detect.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/detect_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/encoding.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/encoding.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/mystring.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myencoding/resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/cmap.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/cmap.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/glyf.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/glyf.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/head.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/head.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/hhea.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/hhea.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/hmtx.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/hmtx.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/loca.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/loca.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/maxp.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/maxp.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/myfont.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/myfont.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/myosi.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/name.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/name.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/os_2.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/os_2.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/pclt.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/pclt.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/vhea.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/vhea.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/vmtx.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myfont/vmtx.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/api.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/callback.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/callback.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/charef.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/charef.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/charef_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/data_process.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/data_process.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/def.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/myhtml.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/myhtml.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/mynamespace.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/mynamespace.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/mynamespace_resource.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/mystring.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/mystring.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/rules.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/rules.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/stream.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/stream.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tag.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tag.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tag_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tag_init.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/token.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/token.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_doctype.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_doctype.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_end.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_end.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_script.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tokenizer_script.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tree.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myhtml/tree.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/posix/mycore/io.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/posix/mycore/memory.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/posix/mycore/perf.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/posix/mycore/thread.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/posix/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/windows_nt/mycore/io.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/windows_nt/mycore/memory.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/windows_nt/mycore/perf.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/windows_nt/mycore/thread.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myport/windows_nt/mycore/utils/mcsync.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myunicode/myosi.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myunicode/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/host.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/host.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/myosi.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/myosi.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/parser.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/parser.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/parser_end.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/path.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/path.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/punycode.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/punycode.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/scheme.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/scheme.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/scheme_const.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/scheme_resources.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/serialization.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/serialization.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/url.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/url.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/utils.c +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/modest/source/myurl/utils.h +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/base.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor/attrs.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor/selection.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor/util.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/lexbor.pxd +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/modest/node.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/modest/selection.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/modest/util.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/parser.pxd +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/parser.pyi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/parser.pyx +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/py.typed +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax/utils.pxi +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax.egg-info/dependency_links.txt +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax.egg-info/not-zip-safe +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax.egg-info/requires.txt +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/selectolax.egg-info/top_level.txt +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/tests/__init__.py +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/tests/test_nodes.py +0 -0
- {selectolax-0.3.33 → selectolax-0.3.34}/tests/test_utils.py +0 -0
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
# selectolax Changelog
|
|
2
|
+
|
|
3
|
+
## Version 0.3.34
|
|
4
|
+
|
|
5
|
+
Released
|
|
6
|
+
|
|
7
|
+
- Lexbor backend now supports `:lexbor-contains("abc" i)` CSS pseudo-class to match text nodes.
|
|
8
|
+
|
|
9
|
+
## Version 0.3.33
|
|
10
|
+
|
|
11
|
+
Released
|
|
12
|
+
|
|
13
|
+
- Add `merge_text_nodes` to lexbor backend. Fixes #170. @amirshukayev
|
|
14
|
+
- Performance improvements in Cython code. @Vizonex
|
|
15
|
+
|
|
16
|
+
## Version 0.3.32
|
|
17
|
+
|
|
18
|
+
Released
|
|
19
|
+
|
|
20
|
+
- Update lexbor. New version of lexbor fixes bugs with CSS selectors.
|
|
21
|
+
|
|
22
|
+
## Version 0.3.31
|
|
23
|
+
|
|
24
|
+
Released
|
|
25
|
+
|
|
26
|
+
- Improve type hints, add docstrings to type hints
|
|
27
|
+
- Prevent decomposing of the root node
|
|
28
|
+
- Unpin Cython version and make it Optional
|
|
29
|
+
- Allow empty attribute values. Fixes #165.
|
|
30
|
+
|
|
31
|
+
## Version 0.3.30
|
|
32
|
+
|
|
33
|
+
Released
|
|
34
|
+
|
|
35
|
+
- Update lexbor
|
|
36
|
+
- Expose `SelectolaxError` exception in lexbor.pyi
|
|
37
|
+
|
|
38
|
+
## Version 0.3.29
|
|
39
|
+
|
|
40
|
+
Released
|
|
41
|
+
|
|
42
|
+
- Feat: Add unwrap empty tags functionality. Fixes #159.
|
|
43
|
+
|
|
44
|
+
## Version 0.3.28
|
|
45
|
+
|
|
46
|
+
Released
|
|
47
|
+
|
|
48
|
+
- Fix: Update lexbor and improve HTML serialization speed. Fixes #153.
|
|
49
|
+
- Fix: typo in type annotations. Fixes #147.
|
|
50
|
+
- Fix: Fix incorrect type annotations for `LexborHTMLParser.__init__`. Fixes #144.
|
|
51
|
+
|
|
52
|
+
## Version 0.3.27
|
|
53
|
+
|
|
54
|
+
Released
|
|
55
|
+
|
|
56
|
+
- Fix: Header detected as head
|
|
57
|
+
|
|
58
|
+
## Version 0.3.26
|
|
59
|
+
|
|
60
|
+
Released
|
|
61
|
+
|
|
62
|
+
- Improve type hints
|
|
63
|
+
|
|
64
|
+
## Version 0.3.25
|
|
65
|
+
|
|
66
|
+
Released
|
|
67
|
+
|
|
68
|
+
- Feat: Add `parse_fragment()` and `create_tag()`
|
|
69
|
+
- Add missing typing for `Node.insert_child()`
|
|
70
|
+
- Add `Node.parser` to access the `HTMLParser` to which the node belongs
|
|
71
|
+
|
|
72
|
+
## Version 0.3.24
|
|
73
|
+
|
|
74
|
+
Released
|
|
75
|
+
|
|
76
|
+
- Add `Node.insert_child` method to lexbor and modest backends
|
|
77
|
+
|
|
78
|
+
## Version 0.3.23
|
|
79
|
+
|
|
80
|
+
Released
|
|
81
|
+
|
|
82
|
+
- Add Python 3.13 wheels
|
|
83
|
+
- Update lexbor
|
|
84
|
+
|
|
85
|
+
## Version 0.3.21
|
|
86
|
+
|
|
87
|
+
Released
|
|
88
|
+
|
|
89
|
+
- ***Breaking change***: `lexbor` backend now includes the root node when querying CSS selectors. Same as `Modest` backend.
|
|
90
|
+
- Fix `css_matches` and `any_css_matches` methods for `Modest` backend on some compilers
|
|
91
|
+
|
|
92
|
+
## Version 0.3.20
|
|
93
|
+
|
|
94
|
+
Released
|
|
95
|
+
|
|
96
|
+
- Fixup for 0.3.19 release
|
|
97
|
+
- Fix tag order for `lexbor` backend
|
|
98
|
+
|
|
99
|
+
## Version 0.3.19
|
|
100
|
+
|
|
101
|
+
Released
|
|
102
|
+
|
|
103
|
+
- Increase maximum HTML size to 2.4GB
|
|
104
|
+
|
|
105
|
+
## Version 0.3.18
|
|
106
|
+
|
|
107
|
+
Released
|
|
108
|
+
|
|
109
|
+
- Fix memory leak when using CSS selectors, `lexbor` backend
|
|
110
|
+
|
|
111
|
+
## Version 0.3.17
|
|
112
|
+
|
|
113
|
+
Released
|
|
114
|
+
|
|
115
|
+
- Update lexbor
|
|
116
|
+
- Add Python 3.12 wheels
|
|
117
|
+
|
|
118
|
+
## Version 0.3.16
|
|
119
|
+
|
|
120
|
+
Released
|
|
121
|
+
|
|
122
|
+
- Make HTML nodes hashable
|
|
123
|
+
- Pin Cython version
|
|
124
|
+
|
|
125
|
+
## Version 0.3.15
|
|
126
|
+
|
|
127
|
+
Released
|
|
128
|
+
|
|
129
|
+
- Improve typing. Thanks to @nesb1
|
|
130
|
+
|
|
131
|
+
## Version 0.3.14
|
|
132
|
+
|
|
133
|
+
Released
|
|
134
|
+
|
|
135
|
+
- Fix memory leak for `lexbor` backend
|
|
136
|
+
|
|
137
|
+
## Version 0.3.13
|
|
138
|
+
|
|
139
|
+
Released
|
|
140
|
+
|
|
141
|
+
- Update `lexbor`
|
|
142
|
+
|
|
143
|
+
## Version 0.3.12
|
|
144
|
+
|
|
145
|
+
Released
|
|
146
|
+
|
|
147
|
+
- Update `lexbor`
|
|
148
|
+
- Add Python 3.11 wheels
|
|
149
|
+
|
|
150
|
+
## Version 0.3.11
|
|
151
|
+
|
|
152
|
+
Released
|
|
153
|
+
|
|
154
|
+
- Fix out-of-bounds bug for `merge_text_nodes` method.
|
|
155
|
+
|
|
156
|
+
## Version 0.3.10
|
|
157
|
+
|
|
158
|
+
Released
|
|
159
|
+
|
|
160
|
+
This release does not contain any changes.
|
|
161
|
+
Due to a typo in the version number ([#70](https://github.com/rushter/selectolax/issues/70)), we need to make a new release.
|
|
162
|
+
|
|
163
|
+
## Version 0.3.9
|
|
164
|
+
|
|
165
|
+
Released
|
|
166
|
+
|
|
167
|
+
- Remove trailing separator when using `text(deep=True, separator='x')`.
|
|
168
|
+
- Add a new `merge_text_nodes` method for Modest backend.
|
|
169
|
+
|
|
170
|
+
## Version 0.3.8
|
|
171
|
+
|
|
172
|
+
Released
|
|
173
|
+
|
|
174
|
+
- Fix incorrect text handling when using `text(deep=True)` on a text node.
|
|
175
|
+
|
|
176
|
+
## Version 0.3.7
|
|
177
|
+
|
|
178
|
+
Released
|
|
179
|
+
|
|
180
|
+
- Fix return type of HTMLParser.tags
|
|
181
|
+
|
|
182
|
+
## Version 0.3.6
|
|
183
|
+
|
|
184
|
+
Released
|
|
185
|
+
|
|
186
|
+
- Improve text handling
|
|
187
|
+
- Add binary builds for Python 3.10 and ARM on MacOS and Linux
|
|
188
|
+
|
|
189
|
+
## Version 0.3.5
|
|
190
|
+
|
|
191
|
+
Released
|
|
192
|
+
|
|
193
|
+
- Add type annotations
|
|
194
|
+
|
|
195
|
+
## Version 0.3.4
|
|
196
|
+
|
|
197
|
+
Released
|
|
198
|
+
|
|
199
|
+
- Fix `HTMLParser.html`
|
|
200
|
+
|
|
201
|
+
## Version 0.3.3
|
|
202
|
+
|
|
203
|
+
Released
|
|
204
|
+
|
|
205
|
+
- Use `document` for the `HTMLParser.html`, `LexborHTMLParser.html` root properties
|
|
206
|
+
|
|
207
|
+
## Version 0.3.2
|
|
208
|
+
|
|
209
|
+
Released
|
|
210
|
+
|
|
211
|
+
- Fix `selector` method for lexbor
|
|
212
|
+
- Improve text extraction for lexbor
|
|
213
|
+
|
|
214
|
+
## Version 0.3.1
|
|
215
|
+
|
|
216
|
+
Released
|
|
217
|
+
|
|
218
|
+
- Fix `setup.py` for Windows
|
|
219
|
+
|
|
220
|
+
## Version 0.3.0
|
|
221
|
+
|
|
222
|
+
Released
|
|
223
|
+
|
|
224
|
+
- Added `lexbor` backend
|
|
225
|
+
- Fix cloning for `Modest` backend
|
|
226
|
+
|
|
227
|
+
## Version 0.2.14
|
|
228
|
+
|
|
229
|
+
Released
|
|
230
|
+
|
|
231
|
+
- Added advanced Selector (the `select` method)
|
|
232
|
+
- Improved speed of `strip_tags`
|
|
233
|
+
- Added `clone` method for the `HtmlParser` object
|
|
234
|
+
- Exposed `detect_encoding`, `decode_errors`, `use_meta_tags`, `raw_html` attributes for `HtmlParser`
|
|
235
|
+
- Added `sget` method to the `attrs` property
|
|
236
|
+
|
|
237
|
+
## Version 0.2.13
|
|
238
|
+
|
|
239
|
+
Released
|
|
240
|
+
|
|
241
|
+
- Don't throw exception when encoding text as UTF-8 bytes fails ([#40](https://github.com/rushter/selectolax/issues/40)).
|
|
242
|
+
- Fix Node.attrs.items() causes ([#39](https://github.com/rushter/selectolax/issues/39)).
|
|
243
|
+
|
|
244
|
+
## Version 0.2.12
|
|
245
|
+
|
|
246
|
+
Released
|
|
247
|
+
|
|
248
|
+
- Build wheels Apple Silicon
|
|
249
|
+
|
|
250
|
+
## Version 0.2.11
|
|
251
|
+
|
|
252
|
+
Released
|
|
253
|
+
|
|
254
|
+
- Fix strip argument is ignored for the root node ([#35](https://github.com/rushter/selectolax/issues/35)).
|
|
255
|
+
- Fix CSS parser hangs on a bad CSS selector ([#36](https://github.com/rushter/selectolax/issues/36)).
|
|
256
|
+
|
|
257
|
+
## Version 0.2.10
|
|
258
|
+
|
|
259
|
+
Released
|
|
260
|
+
|
|
261
|
+
- Fix root node property ([#32](https://github.com/rushter/selectolax/issues/32)). The `root` property now points to the html tag.
|
|
262
|
+
|
|
263
|
+
## Version 0.2.9
|
|
264
|
+
|
|
265
|
+
Released
|
|
266
|
+
|
|
267
|
+
- Fix README for PyPI
|
|
268
|
+
|
|
269
|
+
## Version 0.2.8
|
|
270
|
+
|
|
271
|
+
Released
|
|
272
|
+
|
|
273
|
+
- Add wheels for Python 3.9
|
|
274
|
+
|
|
275
|
+
## Version 0.2.7
|
|
276
|
+
|
|
277
|
+
Released
|
|
278
|
+
|
|
279
|
+
- Add `raw_value` attribute for `Node` objects ([#22](https://github.com/rushter/selectolax/issues/22))
|
|
280
|
+
- Improve node modification operations
|
|
281
|
+
|
|
282
|
+
## Version 0.2.6
|
|
283
|
+
|
|
284
|
+
Released
|
|
285
|
+
|
|
286
|
+
- Fix dependency on the source `Node` when inserting to or modifying destination `Node`
|
|
287
|
+
|
|
288
|
+
## Version 0.2.5
|
|
289
|
+
|
|
290
|
+
Released
|
|
291
|
+
|
|
292
|
+
- Allow to pass Node instances to `replace_with`, `insert_before` and `insert_after` methods
|
|
293
|
+
- Added `insert_before` and `insert_after` methods
|
|
294
|
+
|
|
295
|
+
## Version 0.2.4
|
|
296
|
+
|
|
297
|
+
Released
|
|
298
|
+
|
|
299
|
+
- Set maximum input size to 80MB
|
|
300
|
+
- Update modest
|
|
301
|
+
|
|
302
|
+
## Version 0.2.3
|
|
303
|
+
|
|
304
|
+
Released
|
|
305
|
+
|
|
306
|
+
- Rebuild PyPi wheels to support Python 3.8 and manylinux2010
|
|
307
|
+
|
|
308
|
+
## Version 0.2.2
|
|
309
|
+
|
|
310
|
+
Released
|
|
311
|
+
|
|
312
|
+
- Fix node comparison
|
|
313
|
+
|
|
314
|
+
## Version 0.2.1
|
|
315
|
+
|
|
316
|
+
Released
|
|
317
|
+
|
|
318
|
+
- Add optional `include_text` parameter for the `iter` and `traverse` methods
|
|
319
|
+
|
|
320
|
+
## Version 0.2.0
|
|
321
|
+
|
|
322
|
+
Released
|
|
323
|
+
|
|
324
|
+
- Fix `iter()` does not yield text nodes
|
|
325
|
+
- Switch from TravisCI to Github Actions
|
|
326
|
+
- Build and ship wheels for Windows, MacOS and Linux using Azure Pipelines
|
|
327
|
+
- Add `unwrap` and `unwrap_tags` method ([#7](https://github.com/rushter/selectolax/issues/7))
|
|
328
|
+
- Add `replace_with` method ([#13](https://github.com/rushter/selectolax/issues/13))
|
|
329
|
+
- Add `attrs` property
|
|
330
|
+
- Add `traverse` method
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: selectolax
|
|
3
|
+
Version: 0.3.34
|
|
4
|
+
Summary: Fast HTML5 parser with CSS selectors.
|
|
5
|
+
Home-page: https://github.com/rushter/selectolax
|
|
6
|
+
Author: Artem Golubin
|
|
7
|
+
Author-email: Artem Golubin <me@rushter.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Project-URL: Repository, https://github.com/rushter/selectolax
|
|
10
|
+
Project-URL: Documentation, https://selectolax.readthedocs.io/en/latest/parser.html
|
|
11
|
+
Project-URL: Changelog, https://github.com/rushter/selectolax/blob/main/CHANGES.md
|
|
12
|
+
Keywords: selectolax,html,parser,css,fast
|
|
13
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
14
|
+
Classifier: Topic :: Text Processing :: Markup :: HTML
|
|
15
|
+
Classifier: Topic :: Internet
|
|
16
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Natural Language :: English
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Requires-Python: >=3.9
|
|
26
|
+
Description-Content-Type: text/x-rst
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Provides-Extra: cython
|
|
29
|
+
Requires-Dist: Cython; extra == "cython"
|
|
30
|
+
Dynamic: author
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
[](https://pypi.python.org/pypi/selectolax)
|
|
6
|
+
|
|
7
|
+
A fast HTML5 parser with CSS selectors using [Modest](https://github.com/lexborisov/Modest/) and [Lexbor](https://github.com/lexbor/lexbor) engines.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
From PyPI using pip:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install selectolax
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
If installation fails due to compilation errors, you may need to install [Cython](https://github.com/cython/cython):
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install selectolax[cython]
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This usually happens when you try to install an outdated version of selectolax on a newer version of Python.
|
|
24
|
+
|
|
25
|
+
Development version from GitHub:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
git clone --recursive https://github.com/rushter/selectolax
|
|
29
|
+
cd selectolax
|
|
30
|
+
pip install -r requirements_dev.txt
|
|
31
|
+
python setup.py install
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
How to compile selectolax while developing:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
make clean
|
|
38
|
+
make dev
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Basic examples
|
|
42
|
+
|
|
43
|
+
Here are some basic examples to get you started with selectolax:
|
|
44
|
+
|
|
45
|
+
Parsing HTML and extracting text:
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
In [1]: from selectolax.parser import HTMLParser
|
|
49
|
+
...:
|
|
50
|
+
...: html = """
|
|
51
|
+
...: <h1 id="title" data-updated="20201101">Hi there</h1>
|
|
52
|
+
...: <div class="post">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div>
|
|
53
|
+
...: <div class="post">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
|
|
54
|
+
...: """
|
|
55
|
+
...: tree = HTMLParser(html)
|
|
56
|
+
|
|
57
|
+
In [2]: tree.css_first('h1#title').text()
|
|
58
|
+
Out[2]: 'Hi there'
|
|
59
|
+
|
|
60
|
+
In [3]: tree.css_first('h1#title').attributes
|
|
61
|
+
Out[3]: {'id': 'title', 'data-updated': '20201101'}
|
|
62
|
+
|
|
63
|
+
In [4]: [node.text() for node in tree.css('.post')]
|
|
64
|
+
Out[4]:
|
|
65
|
+
['Lorem Ipsum is simply dummy text of the printing and typesetting industry. ',
|
|
66
|
+
'Lorem ipsum dolor sit amet, consectetur adipiscing elit.']
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Using advanced CSS selectors
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
In [1]: html = "<div><p id=p1><p id=p2><p id=p3><a>link</a><p id=p4><p id=p5>text<p id=p6></div>"
|
|
73
|
+
...: selector = "div > :nth-child(2n+1):not(:has(a))"
|
|
74
|
+
|
|
75
|
+
In [2]: for node in HTMLParser(html).css(selector):
|
|
76
|
+
...: print(node.attributes, node.text(), node.tag)
|
|
77
|
+
...: print(node.parent.tag)
|
|
78
|
+
...: print(node.html)
|
|
79
|
+
...:
|
|
80
|
+
{'id': 'p1'} p
|
|
81
|
+
div
|
|
82
|
+
<p id="p1"></p>
|
|
83
|
+
{'id': 'p5'} text p
|
|
84
|
+
div
|
|
85
|
+
<p id="p5">text</p>
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
#### Using `lexbor-contains` CSS pseudo-class to match text
|
|
89
|
+
|
|
90
|
+
```python
|
|
91
|
+
from selectolax.lexbor import LexborHTMLParser
|
|
92
|
+
html = "<div><p>hello </p><p id='main'>lexbor is AwesOme</p></div>"
|
|
93
|
+
parser = LexborHTMLParser(html)
|
|
94
|
+
# Case-insensitive search
|
|
95
|
+
results = parser.css('p:lexbor-contains("awesome" i)')
|
|
96
|
+
# Case-sensitive search
|
|
97
|
+
results = parser.css('p:lexbor-contains("AwesOme")')
|
|
98
|
+
assert len(results) == 1
|
|
99
|
+
assert results[0].text() == "lexbor is AwesOme"
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
* [Detailed overview](https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb)
|
|
103
|
+
|
|
104
|
+
### Available backends
|
|
105
|
+
|
|
106
|
+
Selectolax supports two backends: `Modest` and `Lexbor`. By default, all examples use the Modest backend.
|
|
107
|
+
Most of the features between backends are almost identical, but there are still some differences.
|
|
108
|
+
|
|
109
|
+
As of 2024, the preferred backend is `Lexbor`. The `Modest` backend is still available for compatibility reasons
|
|
110
|
+
and the underlying C library that selectolax uses is not maintained anymore.
|
|
111
|
+
|
|
112
|
+
To use `lexbor`, just import the parser and use it in the similar way to the `HTMLParser`.
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
In [1]: from selectolax.lexbor import LexborHTMLParser
|
|
116
|
+
|
|
117
|
+
In [2]: html = """
|
|
118
|
+
...: <title>Hi there</title>
|
|
119
|
+
...: <div id="updated">2021-08-15</div>
|
|
120
|
+
...: """
|
|
121
|
+
|
|
122
|
+
In [3]: parser = LexborHTMLParser(html)
|
|
123
|
+
In [4]: parser.root.css_first("#updated").text()
|
|
124
|
+
Out[4]: '2021-08-15'
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## Simple Benchmark
|
|
128
|
+
|
|
129
|
+
* Extract title, links, scripts and a meta tag from main pages of top 754 domains. See `examples/benchmark.py` for more information.
|
|
130
|
+
|
|
131
|
+
| Package | Time |
|
|
132
|
+
|-------------------------------|-----------|
|
|
133
|
+
| Beautiful Soup (html.parser) | 61.02 sec.|
|
|
134
|
+
| lxml / Beautiful Soup (lxml) | 9.09 sec. |
|
|
135
|
+
| html5_parser | 16.10 sec.|
|
|
136
|
+
| selectolax (Modest) | 2.94 sec. |
|
|
137
|
+
| selectolax (Lexbor) | 2.39 sec. |
|
|
138
|
+
|
|
139
|
+
## Links
|
|
140
|
+
|
|
141
|
+
* [selectolax API reference](https://selectolax.readthedocs.io/en/latest/index.html)
|
|
142
|
+
* [Video introduction to web scraping using selectolax](https://youtu.be/HpRsfpPuUzE)
|
|
143
|
+
* [How to Scrape 7k Products with Python using selectolax and httpx](https://www.youtube.com/watch?v=XpGvq755J2U)
|
|
144
|
+
* [Detailed overview](https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb)
|
|
145
|
+
* [Modest introduction](https://lexborisov.github.io/Modest/)
|
|
146
|
+
* [Modest benchmark](https://lexborisov.github.io/benchmark-html-parsers/)
|
|
147
|
+
* [Python benchmark](https://rushter.com/blog/python-fast-html-parser/)
|
|
148
|
+
* [Another Python benchmark](https://www.peterbe.com/plog/selectolax-or-pyquery)
|
|
149
|
+
|
|
150
|
+
## License
|
|
151
|
+
|
|
152
|
+
* Modest engine — [LGPL2.1](https://github.com/lexborisov/Modest/blob/master/LICENSE)
|
|
153
|
+
* selectolax - [MIT](https://github.com/rushter/selectolax/blob/master/LICENSE)
|
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.5.0] - 2025-08-13
|
|
6
|
+
### Added
|
|
7
|
+
- Added new module Engine.
|
|
8
|
+
- Added benchmarks.
|
|
9
|
+
- Added LEXBOR_BUILD_WITH_MSAN definition for building with msan.
|
|
10
|
+
- CSS::Syntax: added UNICODE-RANGE token.
|
|
11
|
+
- Added link to external bindings for Julia.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Core: Fix undefined behavior in function lexbor_str_append().
|
|
15
|
+
- Core: Fix undefined behavior in function lexbor_in_node_make().
|
|
16
|
+
- Core: fixed slow realloc for large strings.
|
|
17
|
+
- HTML: fixed error report for whitespace characters reference.
|
|
18
|
+
- HTML: fixed error report on self-closing tag parsing.
|
|
19
|
+
- HTML: fixed attribute cloning for bad HTML.
|
|
20
|
+
- HTML: fixed duplicate attributes in svg namespace.
|
|
21
|
+
- CSS::Syntax: fixed consume a numeric token.
|
|
22
|
+
- Style: fixed use-after-poison when the element is destroyed.
|
|
23
|
+
- URL: fixed hostname setter if port is specified.
|
|
24
|
+
- Selectors: fixed selector :has(). It didn't always work properly.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- HTML: allowed `<hr>` to be used inside `<select>`.
|
|
28
|
+
- HTML: changing the serialization of attributes. The `<` and `>` characters will now be escaped in attributes.
|
|
29
|
+
- Unicode: significant reduction tables size.
|
|
30
|
+
- Encoding: size reduction and performance up of multibyte encodings.
|
|
31
|
+
- CSS::Syntax: code refactoring.
|
|
32
|
+
- Selectors: code refactoring. The approach to searching for nodes by selectors has been rewritten.
|
|
33
|
+
|
|
34
|
+
Special thanks for patches, fixes and hints: Michael Hatherly @MichaelHatherly,
|
|
35
|
+
Alex Peattie @alexpeattie, Niels Dossche @nielsdos, Máté Kocsis @kocsismate,
|
|
36
|
+
Sebastian Pipping @hartwork.
|
|
37
|
+
|
|
5
38
|
## [2.4.0] - 2024-11-12
|
|
6
39
|
### Added
|
|
7
40
|
- Core: improve performance using SWAR.
|
|
@@ -17,6 +17,7 @@ cmake_minimum_required(VERSION 2.8.12...3.27)
|
|
|
17
17
|
# LEXBOR_BUILD_BENCHMARKS default: OFF; Build benchmarks.
|
|
18
18
|
# LEXBOR_BUILD_UTILS default: OFF; Build utils/helpers for project.
|
|
19
19
|
# LEXBOR_BUILD_WITH_ASAN default: OFF; Build with address sanitizer if possible
|
|
20
|
+
# LEXBOR_BUILD_WITH_MSAN default: OFF; Build with memory sanitizer if possible
|
|
20
21
|
# LEXBOR_BUILD_WITH_FUZZER default: OFF; Build with fuzzer tests if possible
|
|
21
22
|
# LEXBOR_INSTALL_HEADERS default: ON; The header files will be installed
|
|
22
23
|
# if set to ON
|
|
@@ -53,6 +54,7 @@ option(LEXBOR_BUILD_TESTS_CPP "Build C++ tests" OFF)
|
|
|
53
54
|
option(LEXBOR_BUILD_UTILS "Build utils" OFF)
|
|
54
55
|
option(LEXBOR_BUILD_BENCHMARKS "Build with benchmarks" OFF)
|
|
55
56
|
option(LEXBOR_BUILD_WITH_ASAN "Build with address sanitizer" OFF)
|
|
57
|
+
option(LEXBOR_BUILD_WITH_MSAN "Build with memory sanitizer" OFF)
|
|
56
58
|
option(LEXBOR_BUILD_WITH_FUZZER "Build with fuzzer" OFF)
|
|
57
59
|
option(LEXBOR_INSTALL_HEADERS "Install header files" ON)
|
|
58
60
|
option(LEXBOR_WITH_PERF "Enables support for rdtsc." OFF)
|
|
@@ -298,6 +300,11 @@ IF(${LEXBOR_HAVE_ASAN})
|
|
|
298
300
|
add_definitions(-DLEXBOR_HAVE_ADDRESS_SANITIZER)
|
|
299
301
|
ENDIF()
|
|
300
302
|
|
|
303
|
+
FEATURE_CHECK_MSAN(LEXBOR_HAVE_MSAN)
|
|
304
|
+
IF(${LEXBOR_HAVE_MSAN})
|
|
305
|
+
add_definitions(-DLEXBOR_HAVE_MEMORY_SANITIZER)
|
|
306
|
+
ENDIF()
|
|
307
|
+
|
|
301
308
|
FEATURE_CHECK_FUZZER(LEXBOR_HAVE_FUZZER)
|
|
302
309
|
IF(${LEXBOR_HAVE_FUZZER})
|
|
303
310
|
set(LEXBOR_BUILD_EXAMPLES OFF)
|
|
@@ -179,7 +179,7 @@ make
|
|
|
179
179
|
make test
|
|
180
180
|
```
|
|
181
181
|
|
|
182
|
-
Please, see more information in [documentation](https://lexbor.com/
|
|
182
|
+
Please, see more information in [documentation](https://lexbor.com/documentation/#source-code).
|
|
183
183
|
|
|
184
184
|
## Single or separately
|
|
185
185
|
|
|
@@ -220,13 +220,18 @@ Please, see [roadmap](https://lexbor.com/roadmap/) on [lexbor.com](https://lexbo
|
|
|
220
220
|
|
|
221
221
|
* E-mail [support@lexbor.com](mailto:support@lexbor.com)
|
|
222
222
|
|
|
223
|
-
##
|
|
223
|
+
## Our Sponsors
|
|
224
224
|
|
|
225
|
-
[
|
|
225
|
+
[<img src="images/neural-logo.png" alt="goneural.ai" width="320">](https://goneural.ai/)
|
|
226
|
+
|
|
227
|
+
## Sponsorship
|
|
226
228
|
|
|
227
|
-
|
|
229
|
+
You can help sponsor the maintainers of this software through the following organization:
|
|
230
|
+
[github.com/sponsors/toxypi](https://github.com/sponsors/toxypi)
|
|
228
231
|
|
|
229
|
-
|
|
232
|
+
## SAST Tools
|
|
233
|
+
|
|
234
|
+
[PVS-Studio](https://pvs-studio.com/en/pvs-studio/?utm_source=website&utm_medium=github&utm_campaign=open_source) - static analyzer for C, C++, C#, and Java code.
|
|
230
235
|
|
|
231
236
|
## COPYRIGHT AND LICENSE
|
|
232
237
|
|