forkparser 6.1.0__tar.gz → 2026.7.0__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.
- {forkparser-6.1.0 → forkparser-2026.7.0}/LICENSE +13 -13
- forkparser-2026.7.0/PKG-INFO +75 -0
- forkparser-2026.7.0/README.rst +54 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/__init__.py +30 -14
- forkparser-2026.7.0/feedparser/api.py +376 -0
- forkparser-2026.7.0/feedparser/datetimes/__init__.py +73 -0
- forkparser-2026.7.0/feedparser/datetimes/asctime.py +80 -0
- forkparser-2026.7.0/feedparser/datetimes/greek.py +90 -0
- forkparser-2026.7.0/feedparser/datetimes/hungarian.py +66 -0
- forkparser-2026.7.0/feedparser/datetimes/iso8601.py +160 -0
- forkparser-2026.7.0/feedparser/datetimes/korean.py +94 -0
- forkparser-2026.7.0/feedparser/datetimes/perforce.py +63 -0
- forkparser-2026.7.0/feedparser/datetimes/rfc822.py +179 -0
- forkparser-2026.7.0/feedparser/datetimes/w3dtf.py +128 -0
- forkparser-2026.7.0/feedparser/encodings.py +649 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/exceptions.py +15 -12
- forkparser-2026.7.0/feedparser/html.py +350 -0
- forkparser-2026.7.0/feedparser/http.py +74 -0
- forkparser-2026.7.0/feedparser/mixin.py +838 -0
- forkparser-2026.7.0/feedparser/namespaces/_base.py +547 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/admin.py +15 -17
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/cc.py +29 -30
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/dc.py +53 -51
- forkparser-2026.7.0/feedparser/namespaces/georss.py +682 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/itunes.py +48 -44
- forkparser-2026.7.0/feedparser/namespaces/mediarss.py +142 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/psc.py +24 -22
- forkparser-2026.7.0/feedparser/parsers/json.py +135 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/parsers/loose.py +36 -33
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/parsers/strict.py +44 -38
- forkparser-2026.7.0/feedparser/py.typed +0 -0
- forkparser-2026.7.0/feedparser/sanitizer.py +977 -0
- forkparser-2026.7.0/feedparser/sgml.py +98 -0
- forkparser-2026.7.0/feedparser/urls.py +174 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/util.py +74 -61
- forkparser-2026.7.0/pyproject.toml +116 -0
- forkparser-6.1.0/MANIFEST.in +0 -4
- forkparser-6.1.0/NEWS +0 -431
- forkparser-6.1.0/PKG-INFO +0 -28
- forkparser-6.1.0/README.rst +0 -66
- forkparser-6.1.0/docs/_static/feedparser.css +0 -5
- forkparser-6.1.0/docs/add_custom_css.py +0 -3
- forkparser-6.1.0/docs/advanced.rst +0 -38
- forkparser-6.1.0/docs/annotated-atom03.rst +0 -87
- forkparser-6.1.0/docs/annotated-atom10.rst +0 -87
- forkparser-6.1.0/docs/annotated-examples.rst +0 -14
- forkparser-6.1.0/docs/annotated-rss10.rst +0 -55
- forkparser-6.1.0/docs/annotated-rss20-dc.rst +0 -54
- forkparser-6.1.0/docs/annotated-rss20.rst +0 -68
- forkparser-6.1.0/docs/atom-detail.rst +0 -49
- forkparser-6.1.0/docs/basic-existence.rst +0 -26
- forkparser-6.1.0/docs/basic.rst +0 -14
- forkparser-6.1.0/docs/bozo.rst +0 -36
- forkparser-6.1.0/docs/changes-26.rst +0 -36
- forkparser-6.1.0/docs/changes-27.rst +0 -70
- forkparser-6.1.0/docs/changes-30.rst +0 -226
- forkparser-6.1.0/docs/changes-301.rst +0 -23
- forkparser-6.1.0/docs/changes-31.rst +0 -25
- forkparser-6.1.0/docs/changes-32.rst +0 -33
- forkparser-6.1.0/docs/changes-33.rst +0 -35
- forkparser-6.1.0/docs/changes-40.rst +0 -27
- forkparser-6.1.0/docs/changes-401.rst +0 -9
- forkparser-6.1.0/docs/changes-402.rst +0 -9
- forkparser-6.1.0/docs/changes-41.rst +0 -8
- forkparser-6.1.0/docs/changes-42.rst +0 -22
- forkparser-6.1.0/docs/changes-early.rst +0 -113
- forkparser-6.1.0/docs/character-encoding.rst +0 -124
- forkparser-6.1.0/docs/common-atom-elements.rst +0 -130
- forkparser-6.1.0/docs/common-rss-elements.rst +0 -81
- forkparser-6.1.0/docs/conf.py +0 -19
- forkparser-6.1.0/docs/content-normalization.rst +0 -74
- forkparser-6.1.0/docs/date-parsing.rst +0 -178
- forkparser-6.1.0/docs/history.rst +0 -19
- forkparser-6.1.0/docs/html-sanitization.rst +0 -822
- forkparser-6.1.0/docs/http-authentication.rst +0 -135
- forkparser-6.1.0/docs/http-etag.rst +0 -92
- forkparser-6.1.0/docs/http-other.rst +0 -40
- forkparser-6.1.0/docs/http-redirect.rst +0 -82
- forkparser-6.1.0/docs/http-useragent.rst +0 -57
- forkparser-6.1.0/docs/http.rst +0 -11
- forkparser-6.1.0/docs/index.rst +0 -24
- forkparser-6.1.0/docs/introduction.rst +0 -78
- forkparser-6.1.0/docs/license.rst +0 -28
- forkparser-6.1.0/docs/namespace-handling.rst +0 -137
- forkparser-6.1.0/docs/reference-bozo.rst +0 -18
- forkparser-6.1.0/docs/reference-bozo_exception.rst +0 -10
- forkparser-6.1.0/docs/reference-encoding.rst +0 -16
- forkparser-6.1.0/docs/reference-entry-author.rst +0 -20
- forkparser-6.1.0/docs/reference-entry-author_detail.rst +0 -48
- forkparser-6.1.0/docs/reference-entry-comments.rst +0 -14
- forkparser-6.1.0/docs/reference-entry-content.rst +0 -103
- forkparser-6.1.0/docs/reference-entry-contributors.rst +0 -39
- forkparser-6.1.0/docs/reference-entry-created.rst +0 -22
- forkparser-6.1.0/docs/reference-entry-created_parsed.rst +0 -19
- forkparser-6.1.0/docs/reference-entry-enclosures.rst +0 -47
- forkparser-6.1.0/docs/reference-entry-expired.rst +0 -24
- forkparser-6.1.0/docs/reference-entry-expired_parsed.rst +0 -20
- forkparser-6.1.0/docs/reference-entry-id.rst +0 -17
- forkparser-6.1.0/docs/reference-entry-license.rst +0 -16
- forkparser-6.1.0/docs/reference-entry-link.rst +0 -33
- forkparser-6.1.0/docs/reference-entry-links.rst +0 -67
- forkparser-6.1.0/docs/reference-entry-published.rst +0 -24
- forkparser-6.1.0/docs/reference-entry-published_parsed.rst +0 -21
- forkparser-6.1.0/docs/reference-entry-publisher.rst +0 -18
- forkparser-6.1.0/docs/reference-entry-publisher_detail.rst +0 -42
- forkparser-6.1.0/docs/reference-entry-source.rst +0 -482
- forkparser-6.1.0/docs/reference-entry-summary.rst +0 -43
- forkparser-6.1.0/docs/reference-entry-summary_detail.rst +0 -101
- forkparser-6.1.0/docs/reference-entry-tags.rst +0 -46
- forkparser-6.1.0/docs/reference-entry-title.rst +0 -30
- forkparser-6.1.0/docs/reference-entry-title_detail.rst +0 -98
- forkparser-6.1.0/docs/reference-entry-updated.rst +0 -41
- forkparser-6.1.0/docs/reference-entry-updated_parsed.rst +0 -38
- forkparser-6.1.0/docs/reference-entry.rst +0 -18
- forkparser-6.1.0/docs/reference-etag.rst +0 -13
- forkparser-6.1.0/docs/reference-feed-author.rst +0 -23
- forkparser-6.1.0/docs/reference-feed-author_detail.rst +0 -51
- forkparser-6.1.0/docs/reference-feed-cloud.rst +0 -65
- forkparser-6.1.0/docs/reference-feed-contributors.rst +0 -35
- forkparser-6.1.0/docs/reference-feed-docs.rst +0 -20
- forkparser-6.1.0/docs/reference-feed-errorreportsto.rst +0 -10
- forkparser-6.1.0/docs/reference-feed-generator.rst +0 -19
- forkparser-6.1.0/docs/reference-feed-generator_detail.rst +0 -48
- forkparser-6.1.0/docs/reference-feed-icon.rst +0 -12
- forkparser-6.1.0/docs/reference-feed-id.rst +0 -15
- forkparser-6.1.0/docs/reference-feed-image.rst +0 -107
- forkparser-6.1.0/docs/reference-feed-info-detail.rst +0 -94
- forkparser-6.1.0/docs/reference-feed-info.rst +0 -28
- forkparser-6.1.0/docs/reference-feed-language.rst +0 -15
- forkparser-6.1.0/docs/reference-feed-license.rst +0 -17
- forkparser-6.1.0/docs/reference-feed-link.rst +0 -29
- forkparser-6.1.0/docs/reference-feed-links.rst +0 -65
- forkparser-6.1.0/docs/reference-feed-logo.rst +0 -12
- forkparser-6.1.0/docs/reference-feed-published.rst +0 -20
- forkparser-6.1.0/docs/reference-feed-published_parsed.rst +0 -16
- forkparser-6.1.0/docs/reference-feed-publisher.rst +0 -19
- forkparser-6.1.0/docs/reference-feed-publisher_detail.rst +0 -43
- forkparser-6.1.0/docs/reference-feed-rights.rst +0 -34
- forkparser-6.1.0/docs/reference-feed-rights_detail.rst +0 -99
- forkparser-6.1.0/docs/reference-feed-subtitle.rst +0 -31
- forkparser-6.1.0/docs/reference-feed-subtitle_detail.rst +0 -100
- forkparser-6.1.0/docs/reference-feed-tags.rst +0 -46
- forkparser-6.1.0/docs/reference-feed-textinput.rst +0 -75
- forkparser-6.1.0/docs/reference-feed-title.rst +0 -30
- forkparser-6.1.0/docs/reference-feed-title_detail.rst +0 -101
- forkparser-6.1.0/docs/reference-feed-ttl.rst +0 -22
- forkparser-6.1.0/docs/reference-feed-updated.rst +0 -41
- forkparser-6.1.0/docs/reference-feed-updated_parsed.rst +0 -37
- forkparser-6.1.0/docs/reference-feed.rst +0 -17
- forkparser-6.1.0/docs/reference-headers.rst +0 -11
- forkparser-6.1.0/docs/reference-href.rst +0 -13
- forkparser-6.1.0/docs/reference-modified.rst +0 -15
- forkparser-6.1.0/docs/reference-namespaces.rst +0 -19
- forkparser-6.1.0/docs/reference-status.rst +0 -22
- forkparser-6.1.0/docs/reference-version.rst +0 -39
- forkparser-6.1.0/docs/reference.rst +0 -10
- forkparser-6.1.0/docs/resolving-relative-links.rst +0 -274
- forkparser-6.1.0/docs/uncommon-atom.rst +0 -67
- forkparser-6.1.0/docs/uncommon-rss.rst +0 -93
- forkparser-6.1.0/docs/version-detection.rst +0 -78
- forkparser-6.1.0/feedparser/api.py +0 -285
- forkparser-6.1.0/feedparser/datetimes/__init__.py +0 -41
- forkparser-6.1.0/feedparser/datetimes/asctime.py +0 -32
- forkparser-6.1.0/feedparser/datetimes/greek.py +0 -56
- forkparser-6.1.0/feedparser/datetimes/hungarian.py +0 -43
- forkparser-6.1.0/feedparser/datetimes/iso8601.py +0 -120
- forkparser-6.1.0/feedparser/datetimes/korean.py +0 -47
- forkparser-6.1.0/feedparser/datetimes/perforce.py +0 -25
- forkparser-6.1.0/feedparser/datetimes/rfc822.py +0 -121
- forkparser-6.1.0/feedparser/datetimes/w3dtf.py +0 -88
- forkparser-6.1.0/feedparser/encodings.py +0 -279
- forkparser-6.1.0/feedparser/html.py +0 -213
- forkparser-6.1.0/feedparser/http.py +0 -231
- forkparser-6.1.0/feedparser/mixin.py +0 -754
- forkparser-6.1.0/feedparser/namespaces/_base.py +0 -499
- forkparser-6.1.0/feedparser/namespaces/georss.py +0 -264
- forkparser-6.1.0/feedparser/namespaces/mediarss.py +0 -142
- forkparser-6.1.0/feedparser/sanitizer.py +0 -466
- forkparser-6.1.0/feedparser/sgml.py +0 -76
- forkparser-6.1.0/feedparser/urls.py +0 -131
- forkparser-6.1.0/forkparser.egg-info/PKG-INFO +0 -28
- forkparser-6.1.0/forkparser.egg-info/SOURCES.txt +0 -2408
- forkparser-6.1.0/forkparser.egg-info/dependency_links.txt +0 -1
- forkparser-6.1.0/forkparser.egg-info/requires.txt +0 -3
- forkparser-6.1.0/forkparser.egg-info/top_level.txt +0 -1
- forkparser-6.1.0/setup.cfg +0 -7
- forkparser-6.1.0/setup.py +0 -36
- forkparser-6.1.0/tests/compression/deflate-no-headers.z +0 -0
- forkparser-6.1.0/tests/compression/deflate-not-compressed.z +0 -1
- forkparser-6.1.0/tests/compression/deflate.z +0 -0
- forkparser-6.1.0/tests/compression/gzip-not-compressed.gz +0 -1
- forkparser-6.1.0/tests/compression/gzip-struct-error.gz +0 -0
- forkparser-6.1.0/tests/compression/gzip.gz +0 -0
- forkparser-6.1.0/tests/encoding/big5.xml +0 -8
- forkparser-6.1.0/tests/encoding/bozo_bogus_encoding.xml +0 -7
- forkparser-6.1.0/tests/encoding/bozo_double-encoded-html.xml +0 -13
- forkparser-6.1.0/tests/encoding/bozo_encoding_mismatch_crash.xml +0 -10
- forkparser-6.1.0/tests/encoding/bozo_http_i18n.xml +0 -11
- forkparser-6.1.0/tests/encoding/bozo_http_text_plain.xml +0 -8
- forkparser-6.1.0/tests/encoding/bozo_http_text_plain_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/bozo_invalid-bytes-with-bom.xml +0 -10
- forkparser-6.1.0/tests/encoding/bozo_linenoise.xml +0 -13
- forkparser-6.1.0/tests/encoding/csucs4.xml +0 -0
- forkparser-6.1.0/tests/encoding/csunicode.xml +0 -0
- forkparser-6.1.0/tests/encoding/demoronize-1.xml +0 -13
- forkparser-6.1.0/tests/encoding/demoronize-2.xml +0 -13
- forkparser-6.1.0/tests/encoding/demoronize-3.xml +0 -13
- forkparser-6.1.0/tests/encoding/double-encoded-html.xml +0 -13
- forkparser-6.1.0/tests/encoding/encoding_attribute_crash.xml +0 -9
- forkparser-6.1.0/tests/encoding/encoding_attribute_crash_2.xml +0 -9
- forkparser-6.1.0/tests/encoding/euc-kr-attribute.xml +0 -14
- forkparser-6.1.0/tests/encoding/euc-kr-item.xml +0 -14
- forkparser-6.1.0/tests/encoding/euc-kr.xml +0 -12
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_charset.xml +0 -9
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml +0 -9
- forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_encoding.xml +0 -9
- forkparser-6.1.0/tests/encoding/http_application_rss_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_rss_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_rss_xml_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_dtd_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_dtd_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_dtd_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_epe_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_epe_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_application_xml_epe_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_encoding_attribute_crash.xml +0 -13
- forkparser-6.1.0/tests/encoding/http_i18n.xml +0 -13
- forkparser-6.1.0/tests/encoding/http_text_atom_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_atom_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_atom_xml_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_rss_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_rss_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_rss_xml_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_bogus_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_bogus_param.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_charset_2.xml +0 -16
- forkparser-6.1.0/tests/encoding/http_text_xml_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml +0 -17
- forkparser-6.1.0/tests/encoding/http_text_xml_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_epe_charset.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_epe_default.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_epe_encoding.xml +0 -8
- forkparser-6.1.0/tests/encoding/http_text_xml_qs.xml +0 -8
- forkparser-6.1.0/tests/encoding/iso-10646-ucs-2.xml +0 -0
- forkparser-6.1.0/tests/encoding/iso-10646-ucs-4.xml +0 -0
- forkparser-6.1.0/tests/encoding/no_content_type_default.xml +0 -7
- forkparser-6.1.0/tests/encoding/no_content_type_encoding.xml +0 -7
- forkparser-6.1.0/tests/encoding/u16.xml +0 -0
- forkparser-6.1.0/tests/encoding/ucs-2.xml +0 -0
- forkparser-6.1.0/tests/encoding/ucs-4.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16be-autodetect.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16be-bom.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16be.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16le-autodetect.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16le-bom.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-16le.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32be-autodetect.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32be-bom.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32be.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32le-autodetect.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32le-bom.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-32le.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf-8-bom.xml +0 -8
- forkparser-6.1.0/tests/encoding/utf16.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf_16.xml +0 -0
- forkparser-6.1.0/tests/encoding/utf_32.xml +0 -0
- forkparser-6.1.0/tests/encoding/x80_437.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_850.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_852.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_855.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_857.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_860.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_861.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_862.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_863.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_865.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_866.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp037.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_cp1125.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1250.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1251.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1252.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1253.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1254.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1255.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1256.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1257.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp1258.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp437.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp500.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_cp737.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp775.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp850.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp852.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp855.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp856.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp857.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp860.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp861.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp862.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp863.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp864.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp865.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp866.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp874.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cp875.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_cp_is.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm037.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_csibm500.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_csibm855.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm857.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm860.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm861.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm863.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm864.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm865.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csibm866.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cskoi8r.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_csmacintosh.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cspc775baltic.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cspc850multilingual.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cspc862latinhebrew.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cspc8codepage437.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_cspcp852.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_dbcs.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-be.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-ca.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-ch.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-nl.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-us.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-wt.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_be.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_ca.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_ch.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_nl.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_us.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_wt.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ibm037.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ibm039.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ibm1140.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ibm437.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm500.xml +0 -1
- forkparser-6.1.0/tests/encoding/x80_ibm775.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm850.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm852.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm855.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm857.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm860.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm861.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm862.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm863.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm864.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm865.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ibm866.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_koi8-r.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_koi8-t.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_koi8-u.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_mac-cyrillic.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_mac.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_maccentraleurope.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_maccyrillic.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_macgreek.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_maciceland.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_macintosh.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_maclatin2.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_macroman.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_macturkish.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-ansi.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-arab.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-cyrl.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-ee.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-greek.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-hebr.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_ms-turk.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_tcvn-5712.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_tcvn.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_tcvn5712-1.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_viscii.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_winbaltrim.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1250.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1251.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1252.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1253.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1254.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1255.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1256.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1257.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows-1258.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1250.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1251.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1252.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1253.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1254.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1255.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1256.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1257.xml +0 -9
- forkparser-6.1.0/tests/encoding/x80_windows_1258.xml +0 -9
- forkparser-6.1.0/tests/entities/160.xml +0 -9
- forkparser-6.1.0/tests/entities/732.xml +0 -9
- forkparser-6.1.0/tests/entities/8216.xml +0 -9
- forkparser-6.1.0/tests/entities/8217.xml +0 -9
- forkparser-6.1.0/tests/entities/8220.xml +0 -9
- forkparser-6.1.0/tests/entities/8221.xml +0 -9
- forkparser-6.1.0/tests/entities/9830.xml +0 -9
- forkparser-6.1.0/tests/entities/aacute.xml +0 -9
- forkparser-6.1.0/tests/entities/acirc.xml +0 -9
- forkparser-6.1.0/tests/entities/acute.xml +0 -9
- forkparser-6.1.0/tests/entities/aelig.xml +0 -9
- forkparser-6.1.0/tests/entities/agrave.xml +0 -9
- forkparser-6.1.0/tests/entities/alefsym.xml +0 -9
- forkparser-6.1.0/tests/entities/alpha.xml +0 -9
- forkparser-6.1.0/tests/entities/and.xml +0 -9
- forkparser-6.1.0/tests/entities/ang.xml +0 -9
- forkparser-6.1.0/tests/entities/aring.xml +0 -9
- forkparser-6.1.0/tests/entities/asymp.xml +0 -9
- forkparser-6.1.0/tests/entities/atilde.xml +0 -9
- forkparser-6.1.0/tests/entities/attr_amp.xml +0 -7
- forkparser-6.1.0/tests/entities/auml.xml +0 -9
- forkparser-6.1.0/tests/entities/bdquo.xml +0 -9
- forkparser-6.1.0/tests/entities/beta.xml +0 -9
- forkparser-6.1.0/tests/entities/brvbar.xml +0 -9
- forkparser-6.1.0/tests/entities/bull.xml +0 -9
- forkparser-6.1.0/tests/entities/cap.xml +0 -9
- forkparser-6.1.0/tests/entities/ccedil.xml +0 -9
- forkparser-6.1.0/tests/entities/cedil.xml +0 -9
- forkparser-6.1.0/tests/entities/cent.xml +0 -9
- forkparser-6.1.0/tests/entities/chi.xml +0 -9
- forkparser-6.1.0/tests/entities/circ.xml +0 -9
- forkparser-6.1.0/tests/entities/clubs.xml +0 -9
- forkparser-6.1.0/tests/entities/cong.xml +0 -9
- forkparser-6.1.0/tests/entities/copy.xml +0 -9
- forkparser-6.1.0/tests/entities/crarr.xml +0 -9
- forkparser-6.1.0/tests/entities/cup.xml +0 -9
- forkparser-6.1.0/tests/entities/curren.xml +0 -9
- forkparser-6.1.0/tests/entities/dagger.xml +0 -9
- forkparser-6.1.0/tests/entities/darr.xml +0 -9
- forkparser-6.1.0/tests/entities/deg.xml +0 -9
- forkparser-6.1.0/tests/entities/delta.xml +0 -9
- forkparser-6.1.0/tests/entities/diams.xml +0 -9
- forkparser-6.1.0/tests/entities/divide.xml +0 -9
- forkparser-6.1.0/tests/entities/doesnotexist.xml +0 -9
- forkparser-6.1.0/tests/entities/eacute.xml +0 -9
- forkparser-6.1.0/tests/entities/ecirc.xml +0 -9
- forkparser-6.1.0/tests/entities/egrave.xml +0 -9
- forkparser-6.1.0/tests/entities/empty.xml +0 -9
- forkparser-6.1.0/tests/entities/emsp.xml +0 -9
- forkparser-6.1.0/tests/entities/ensp.xml +0 -9
- forkparser-6.1.0/tests/entities/epsilon.xml +0 -9
- forkparser-6.1.0/tests/entities/equiv.xml +0 -9
- forkparser-6.1.0/tests/entities/eta.xml +0 -9
- forkparser-6.1.0/tests/entities/eth.xml +0 -9
- forkparser-6.1.0/tests/entities/euml.xml +0 -9
- forkparser-6.1.0/tests/entities/euro.xml +0 -9
- forkparser-6.1.0/tests/entities/exist.xml +0 -9
- forkparser-6.1.0/tests/entities/fnof.xml +0 -9
- forkparser-6.1.0/tests/entities/forall.xml +0 -9
- forkparser-6.1.0/tests/entities/frac12.xml +0 -9
- forkparser-6.1.0/tests/entities/frac14.xml +0 -9
- forkparser-6.1.0/tests/entities/frac34.xml +0 -9
- forkparser-6.1.0/tests/entities/frasl.xml +0 -9
- forkparser-6.1.0/tests/entities/gamma.xml +0 -9
- forkparser-6.1.0/tests/entities/ge.xml +0 -9
- forkparser-6.1.0/tests/entities/hArr.xml +0 -9
- forkparser-6.1.0/tests/entities/hearts.xml +0 -9
- forkparser-6.1.0/tests/entities/hellip.xml +0 -9
- forkparser-6.1.0/tests/entities/hex_entity_x_lowercase.xml +0 -9
- forkparser-6.1.0/tests/entities/hex_entity_x_uppercase.xml +0 -9
- forkparser-6.1.0/tests/entities/iacute.xml +0 -9
- forkparser-6.1.0/tests/entities/icirc.xml +0 -9
- forkparser-6.1.0/tests/entities/iexcl.xml +0 -9
- forkparser-6.1.0/tests/entities/igrave.xml +0 -9
- forkparser-6.1.0/tests/entities/image.xml +0 -9
- forkparser-6.1.0/tests/entities/infin.xml +0 -9
- forkparser-6.1.0/tests/entities/int.xml +0 -9
- forkparser-6.1.0/tests/entities/iota.xml +0 -9
- forkparser-6.1.0/tests/entities/iquest.xml +0 -9
- forkparser-6.1.0/tests/entities/isin.xml +0 -9
- forkparser-6.1.0/tests/entities/iuml.xml +0 -9
- forkparser-6.1.0/tests/entities/kappa.xml +0 -9
- forkparser-6.1.0/tests/entities/lArr.xml +0 -9
- forkparser-6.1.0/tests/entities/lambda.xml +0 -9
- forkparser-6.1.0/tests/entities/lang.xml +0 -9
- forkparser-6.1.0/tests/entities/laquo.xml +0 -9
- forkparser-6.1.0/tests/entities/lceil.xml +0 -9
- forkparser-6.1.0/tests/entities/ldquo.xml +0 -9
- forkparser-6.1.0/tests/entities/le.xml +0 -9
- forkparser-6.1.0/tests/entities/lfloor.xml +0 -9
- forkparser-6.1.0/tests/entities/lowast.xml +0 -9
- forkparser-6.1.0/tests/entities/loz.xml +0 -9
- forkparser-6.1.0/tests/entities/lrm.xml +0 -9
- forkparser-6.1.0/tests/entities/lsaquo.xml +0 -9
- forkparser-6.1.0/tests/entities/lsquo.xml +0 -9
- forkparser-6.1.0/tests/entities/macr.xml +0 -9
- forkparser-6.1.0/tests/entities/mdash.xml +0 -9
- forkparser-6.1.0/tests/entities/micro.xml +0 -9
- forkparser-6.1.0/tests/entities/middot.xml +0 -9
- forkparser-6.1.0/tests/entities/minus.xml +0 -9
- forkparser-6.1.0/tests/entities/mu.xml +0 -9
- forkparser-6.1.0/tests/entities/nabla.xml +0 -9
- forkparser-6.1.0/tests/entities/nbsp.xml +0 -9
- forkparser-6.1.0/tests/entities/ndash.xml +0 -9
- forkparser-6.1.0/tests/entities/ne.xml +0 -9
- forkparser-6.1.0/tests/entities/ni.xml +0 -9
- forkparser-6.1.0/tests/entities/not.xml +0 -9
- forkparser-6.1.0/tests/entities/notin.xml +0 -9
- forkparser-6.1.0/tests/entities/nsub.xml +0 -9
- forkparser-6.1.0/tests/entities/ntilde.xml +0 -9
- forkparser-6.1.0/tests/entities/nu.xml +0 -9
- forkparser-6.1.0/tests/entities/oacute.xml +0 -9
- forkparser-6.1.0/tests/entities/ocirc.xml +0 -9
- forkparser-6.1.0/tests/entities/oelig.xml +0 -9
- forkparser-6.1.0/tests/entities/ograve.xml +0 -9
- forkparser-6.1.0/tests/entities/oline.xml +0 -9
- forkparser-6.1.0/tests/entities/omega.xml +0 -9
- forkparser-6.1.0/tests/entities/omicron.xml +0 -9
- forkparser-6.1.0/tests/entities/oplus.xml +0 -9
- forkparser-6.1.0/tests/entities/or.xml +0 -9
- forkparser-6.1.0/tests/entities/ordf.xml +0 -9
- forkparser-6.1.0/tests/entities/ordm.xml +0 -9
- forkparser-6.1.0/tests/entities/oslash.xml +0 -9
- forkparser-6.1.0/tests/entities/otilde.xml +0 -9
- forkparser-6.1.0/tests/entities/otimes.xml +0 -9
- forkparser-6.1.0/tests/entities/ouml.xml +0 -9
- forkparser-6.1.0/tests/entities/para.xml +0 -9
- forkparser-6.1.0/tests/entities/part.xml +0 -9
- forkparser-6.1.0/tests/entities/permil.xml +0 -9
- forkparser-6.1.0/tests/entities/perp.xml +0 -9
- forkparser-6.1.0/tests/entities/phi.xml +0 -9
- forkparser-6.1.0/tests/entities/pi.xml +0 -9
- forkparser-6.1.0/tests/entities/piv.xml +0 -9
- forkparser-6.1.0/tests/entities/plusmn.xml +0 -9
- forkparser-6.1.0/tests/entities/pound.xml +0 -9
- forkparser-6.1.0/tests/entities/prime.xml +0 -9
- forkparser-6.1.0/tests/entities/prod.xml +0 -9
- forkparser-6.1.0/tests/entities/prop.xml +0 -9
- forkparser-6.1.0/tests/entities/psi.xml +0 -9
- forkparser-6.1.0/tests/entities/query_variable_entry.xml +0 -11
- forkparser-6.1.0/tests/entities/query_variable_feed.xml +0 -9
- forkparser-6.1.0/tests/entities/radic.xml +0 -9
- forkparser-6.1.0/tests/entities/rang.xml +0 -9
- forkparser-6.1.0/tests/entities/raquo.xml +0 -9
- forkparser-6.1.0/tests/entities/rarr.xml +0 -9
- forkparser-6.1.0/tests/entities/rceil.xml +0 -9
- forkparser-6.1.0/tests/entities/rdquo.xml +0 -9
- forkparser-6.1.0/tests/entities/real.xml +0 -9
- forkparser-6.1.0/tests/entities/reg.xml +0 -9
- forkparser-6.1.0/tests/entities/rfloor.xml +0 -9
- forkparser-6.1.0/tests/entities/rho.xml +0 -9
- forkparser-6.1.0/tests/entities/rlm.xml +0 -9
- forkparser-6.1.0/tests/entities/rsaquo.xml +0 -9
- forkparser-6.1.0/tests/entities/rsquo.xml +0 -9
- forkparser-6.1.0/tests/entities/sbquo.xml +0 -9
- forkparser-6.1.0/tests/entities/scaron.xml +0 -9
- forkparser-6.1.0/tests/entities/sdot.xml +0 -9
- forkparser-6.1.0/tests/entities/sect.xml +0 -9
- forkparser-6.1.0/tests/entities/shy.xml +0 -9
- forkparser-6.1.0/tests/entities/sigma.xml +0 -9
- forkparser-6.1.0/tests/entities/sigmaf.xml +0 -9
- forkparser-6.1.0/tests/entities/sim.xml +0 -9
- forkparser-6.1.0/tests/entities/spades.xml +0 -9
- forkparser-6.1.0/tests/entities/sub.xml +0 -9
- forkparser-6.1.0/tests/entities/sube.xml +0 -9
- forkparser-6.1.0/tests/entities/sum.xml +0 -9
- forkparser-6.1.0/tests/entities/sup.xml +0 -9
- forkparser-6.1.0/tests/entities/sup1.xml +0 -9
- forkparser-6.1.0/tests/entities/sup2.xml +0 -9
- forkparser-6.1.0/tests/entities/sup3.xml +0 -9
- forkparser-6.1.0/tests/entities/supe.xml +0 -9
- forkparser-6.1.0/tests/entities/szlig.xml +0 -9
- forkparser-6.1.0/tests/entities/tau.xml +0 -9
- forkparser-6.1.0/tests/entities/there4.xml +0 -9
- forkparser-6.1.0/tests/entities/theta.xml +0 -9
- forkparser-6.1.0/tests/entities/thetasym.xml +0 -9
- forkparser-6.1.0/tests/entities/thinsp.xml +0 -9
- forkparser-6.1.0/tests/entities/thorn.xml +0 -9
- forkparser-6.1.0/tests/entities/tilde.xml +0 -9
- forkparser-6.1.0/tests/entities/times.xml +0 -9
- forkparser-6.1.0/tests/entities/trade.xml +0 -9
- forkparser-6.1.0/tests/entities/uacute.xml +0 -9
- forkparser-6.1.0/tests/entities/uarr.xml +0 -9
- forkparser-6.1.0/tests/entities/ucirc.xml +0 -9
- forkparser-6.1.0/tests/entities/ugrave.xml +0 -9
- forkparser-6.1.0/tests/entities/uml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_AElig.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Aacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Acirc.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Agrave.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Alpha.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Aring.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Atilde.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Auml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Beta.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ccedil.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Chi.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Dagger.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Delta.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_ETH.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Eacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ecirc.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Egrave.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Epsilon.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Eta.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Euml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Gamma.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Iacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Icirc.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Igrave.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Iota.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Iuml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Kappa.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Lambda.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Mu.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ntilde.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Nu.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_OElig.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Oacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ocirc.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ograve.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Omega.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Omicron.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Oslash.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Otilde.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ouml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Phi.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Pi.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Prime.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Psi.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Rho.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Scaron.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Sigma.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_THORN.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Tau.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Theta.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Uacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ucirc.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Ugrave.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Upsilon.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Uuml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Xi.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Yacute.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Yuml.xml +0 -9
- forkparser-6.1.0/tests/entities/upper_Zeta.xml +0 -9
- forkparser-6.1.0/tests/entities/upsih.xml +0 -9
- forkparser-6.1.0/tests/entities/upsilon.xml +0 -9
- forkparser-6.1.0/tests/entities/uuml.xml +0 -9
- forkparser-6.1.0/tests/entities/weierp.xml +0 -9
- forkparser-6.1.0/tests/entities/xi.xml +0 -9
- forkparser-6.1.0/tests/entities/yacute.xml +0 -9
- forkparser-6.1.0/tests/entities/yen.xml +0 -9
- forkparser-6.1.0/tests/entities/yuml.xml +0 -9
- forkparser-6.1.0/tests/entities/zeta.xml +0 -9
- forkparser-6.1.0/tests/entities/zwj.xml +0 -9
- forkparser-6.1.0/tests/entities/zwnj.xml +0 -9
- forkparser-6.1.0/tests/http/http_redirect_to_304.xml +0 -7
- forkparser-6.1.0/tests/http/http_status_301.xml +0 -7
- forkparser-6.1.0/tests/http/http_status_302.xml +0 -7
- forkparser-6.1.0/tests/http/http_status_303.xml +0 -7
- forkparser-6.1.0/tests/http/http_status_304.xml +0 -9
- forkparser-6.1.0/tests/http/http_status_307.xml +0 -7
- forkparser-6.1.0/tests/http/http_status_404.xml +0 -6
- forkparser-6.1.0/tests/http/target.xml +0 -7
- forkparser-6.1.0/tests/illformed/aaa_illformed.xml +0 -6
- forkparser-6.1.0/tests/illformed/always_strip_doctype.xml +0 -10
- forkparser-6.1.0/tests/illformed/chardet/big5.xml +0 -8
- forkparser-6.1.0/tests/illformed/chardet/eucjp.xml +0 -13
- forkparser-6.1.0/tests/illformed/chardet/euckr.xml +0 -13
- forkparser-6.1.0/tests/illformed/chardet/gb2312.xml +0 -12
- forkparser-6.1.0/tests/illformed/chardet/koi8r.xml +0 -14
- forkparser-6.1.0/tests/illformed/chardet/shiftjis.xml +0 -11
- forkparser-6.1.0/tests/illformed/chardet/tis620.xml +0 -12
- forkparser-6.1.0/tests/illformed/chardet/windows1255.xml +0 -14
- forkparser-6.1.0/tests/illformed/geo/georss_point_no_coords.xml +0 -12
- forkparser-6.1.0/tests/illformed/geo/georss_polygon_insufficient_coords.xml +0 -12
- forkparser-6.1.0/tests/illformed/http_high_bit_date.xml +0 -12
- forkparser-6.1.0/tests/illformed/rdf_channel_empty_textinput.xml +0 -26
- forkparser-6.1.0/tests/illformed/rss_empty_document.xml +0 -4
- forkparser-6.1.0/tests/illformed/rss_incomplete_cdata.xml +0 -13
- forkparser-6.1.0/tests/illformed/rss_item_link_corrupted_ampersands.xml +0 -12
- forkparser-6.1.0/tests/illformed/undeclared_namespace.xml +0 -10
- forkparser-6.1.0/tests/runtests.py +0 -880
- forkparser-6.1.0/tests/wellformed/amp/amp01.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp02.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp03.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp04.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp05.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp06.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp07.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp08.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp09.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp10.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp11.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp12.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp13.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp14.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp15.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp16.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp17.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp18.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp19.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp20.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp21.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp22.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp23.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp24.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp25.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp26.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp27.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp28.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp29.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp30.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp31.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp32.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp33.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp34.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp35.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp36.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp37.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp38.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp39.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp40.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp41.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp42.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp43.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp44.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp45.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp46.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp47.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp48.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp49.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp50.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp51.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp52.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp53.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp54.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp55.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp56.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp57.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp58.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp59.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp60.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp61.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp62.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp63.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/amp64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr01.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr02.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr03.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr04.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr05.xml +0 -9
- forkparser-6.1.0/tests/wellformed/amp/attr06.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/atom_namespace_1.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/atom_namespace_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/atom_namespace_3.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/atom_namespace_4.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/atom_namespace_5.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/entry_author_email.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_author_homepage.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_author_map_author.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_author_map_author_2.xml +0 -12
- forkparser-6.1.0/tests/wellformed/atom/entry_author_name.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_author_uri.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_author_url.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_content_mode_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_content_mode_escaped.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_content_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_content_type_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_email.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_homepage.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_multiple.xml +0 -18
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_name.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_uri.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_contributor_url.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom/entry_created.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_created_multiple_values.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom/entry_created_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_id.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_id_map_guid.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_issued.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_issued_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_alternate_map_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_alternate_map_link_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_href.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_multiple.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom/entry_link_rel.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_link_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_modified.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_modified_map_updated_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_published_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom/entry_source_updated_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_summary.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_base64_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_mode_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_mode_escaped.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_type_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_naked_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_summary_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_title_base64_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_title_content_mode_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/entry_title_content_mode_escaped.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_content_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_content_type_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_naked_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_title_text_plain_brackets.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/entry_updated_multiple_values.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom/entry_updated_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_author_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_author_homepage.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_author_map_author.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_author_map_author_2.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom/feed_author_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_author_uri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_author_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_homepage.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_multiple.xml +0 -16
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_uri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_contributor_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_mode_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_naked_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_copyright_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_generator.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_generator_name.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_generator_url.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_generator_version.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_id.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_id_map_guid.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_info_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_info_content_mode_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_info_content_mode_escaped.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_content_type_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_naked_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_info_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_alternate_map_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_alternate_map_link_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_href.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_multiple.xml +0 -8
- forkparser-6.1.0/tests/wellformed/atom/feed_link_rel.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_title.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_link_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_modified.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_modified_map_updated_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_mode_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_naked_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_tagline_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_title_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_title_content_mode_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom/feed_title_content_mode_escaped.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_content_type_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_naked_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_title_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/feed_updated_parsed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/relative_uri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/relative_uri_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom/relative_uri_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/ampersand_in_attr.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/atom10_namespace.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/atom10_version.xml +0 -6
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_email.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_map_author.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_map_author_2.xml +0 -12
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_name.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_uri.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_author_url.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_authors_email.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_authors_name.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_authors_uri.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_authors_url.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_category_label.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_category_scheme.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_category_term.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_category_term_non_ascii.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_application_xml.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_base64_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_div_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_src.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_text_plain_brackets.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_type_text.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_email.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_multiple.xml +0 -18
- forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_name.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_uri.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_url.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_id.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_map_guid.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_1.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_3.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_4.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_5.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_6.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_7.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_id_with_attributes.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_href.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_hreflang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_length.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_multiple.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_no_rel.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_license.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_other.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_related.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_self.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_via.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_link_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_type_default.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_rights_type_text.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_email.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_map_author.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_map_author_2.xml +0 -14
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_name.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_uri.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_email.xml +0 -17
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_name.xml +0 -17
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_uri.xml +0 -17
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_url.xml +0 -17
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_label.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_scheme.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_term.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_email.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_multiple.xml +0 -20
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_name.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_uri.xml +0 -15
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_uri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_version.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_icon.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_id.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_href.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_hreflang.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_length.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_multiple.xml +0 -12
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_no_rel.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_other.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_related.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_self.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_via.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_title.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_logo.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_base64.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_base64_2.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_type_text.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_value.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_inline_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_text_plain.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_base64.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_content_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_content_value.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_base64.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_base64_2.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_type_text.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_value.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_escaped_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_inline_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_text_plain.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_base64_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_type_default.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_summary_type_text.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_base64.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_base64_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_content_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_inline_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_inline_markup_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_text_plain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_text_plain_brackets.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_type_default.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/entry_title_type_text.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_map_author.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_map_author_2.xml +0 -10
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_uri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_author_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_authors_email.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/feed_authors_name.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/feed_authors_uri.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/feed_authors_url.xml +0 -13
- forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_multiple.xml +0 -16
- forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_uri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/atom10/feed_generator.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_generator_name.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_generator_url.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_generator_version.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_icon.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_id.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_id_map_guid.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_alternate_map_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_href.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_hreflang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_length.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_multiple.xml +0 -8
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_no_rel.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_other.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_related.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_self.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_self_default_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_via.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_title.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_link_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_logo.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_type_text.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_rights_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_type_text.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_base64.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_base64_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_type.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_type_text.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_value.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_escaped_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_inline_markup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_inline_markup_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/feed_title_text_plain.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/missing_quote_in_attr.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/qna.xml +0 -9
- forkparser-6.1.0/tests/wellformed/atom10/quote_in_attr.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/relative_uri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/relative_uri_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/relative_uri_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/atom10/tag_in_attr.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/cdf_item_abstract_xml_base.xml +0 -18
- forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_link_xml_base_iri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_channel_docs_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_channel_docs_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_channel_link_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_channel_link_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_author_url_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_entry_author_url_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_base64_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_base64_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_inline_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_content_inline_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_entry_id_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_id_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_link_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_link_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_base64_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_base64_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_inline_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_entry_title_inline_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_author_url_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_author_url_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_generator_url_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_generator_url_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_id_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_id_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_base64_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_base64_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_inline_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_info_inline_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_link_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_link_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_base64_base_content_location.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_base64_base_docuri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_inline_base_content_location.xml +0 -8
- forkparser-6.1.0/tests/wellformed/base/http_feed_title_inline_base_docuri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/base/http_item_body_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_body_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_comments_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_comments_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_content_encoded_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_content_encoded_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_description_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_description_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_description_spaces.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_fullitem_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_fullitem_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_link_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_link_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml +0 -12
- forkparser-6.1.0/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/http_relative_xml_base.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/http_relative_xml_base_2.xml +0 -10
- forkparser-6.1.0/tests/wellformed/base/malformed_base.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/rel_uri_with_unicode_character.xml +0 -11
- forkparser-6.1.0/tests/wellformed/base/relative_xml_base.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/relative_xml_base_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/base/unsafe_base.xml +0 -10
- forkparser-6.1.0/tests/wellformed/cdf/channel_abstract_map_description.xml +0 -7
- forkparser-6.1.0/tests/wellformed/cdf/channel_abstract_map_tagline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/cdf/channel_href_map_link.xml +0 -6
- forkparser-6.1.0/tests/wellformed/cdf/channel_href_map_links.xml +0 -6
- forkparser-6.1.0/tests/wellformed/cdf/channel_lastmod.xml +0 -6
- forkparser-6.1.0/tests/wellformed/cdf/channel_lastmod_parsed.xml +0 -6
- forkparser-6.1.0/tests/wellformed/cdf/channel_title.xml +0 -7
- forkparser-6.1.0/tests/wellformed/cdf/item_abstract_map_description.xml +0 -9
- forkparser-6.1.0/tests/wellformed/cdf/item_abstract_map_summary.xml +0 -9
- forkparser-6.1.0/tests/wellformed/cdf/item_href_map_link.xml +0 -8
- forkparser-6.1.0/tests/wellformed/cdf/item_href_map_links.xml +0 -8
- forkparser-6.1.0/tests/wellformed/cdf/item_lastmod.xml +0 -8
- forkparser-6.1.0/tests/wellformed/cdf/item_lastmod_parsed.xml +0 -8
- forkparser-6.1.0/tests/wellformed/cdf/item_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/feedburner/feedburner_browserfriendly.xml +0 -9
- forkparser-6.1.0/tests/wellformed/geo/georss_box.xml +0 -12
- forkparser-6.1.0/tests/wellformed/geo/georss_line.xml +0 -14
- forkparser-6.1.0/tests/wellformed/geo/georss_point.xml +0 -13
- forkparser-6.1.0/tests/wellformed/geo/georss_polygon.xml +0 -12
- forkparser-6.1.0/tests/wellformed/geo/gml_linestring.xml +0 -19
- forkparser-6.1.0/tests/wellformed/geo/gml_linestring_utm.xml +0 -19
- forkparser-6.1.0/tests/wellformed/geo/gml_point.xml +0 -18
- forkparser-6.1.0/tests/wellformed/geo/gml_point_3d.xml +0 -18
- forkparser-6.1.0/tests/wellformed/geo/gml_point_utm.xml +0 -17
- forkparser-6.1.0/tests/wellformed/geo/gml_polygon.xml +0 -21
- forkparser-6.1.0/tests/wellformed/http/headers_content_location-relative.xml +0 -8
- forkparser-6.1.0/tests/wellformed/http/headers_content_location-unsafe.xml +0 -9
- forkparser-6.1.0/tests/wellformed/http/headers_etag.xml +0 -7
- forkparser-6.1.0/tests/wellformed/http/headers_foo.xml +0 -7
- forkparser-6.1.0/tests/wellformed/http/headers_no_etag.xml +0 -7
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_false.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_no.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_true.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_uppercase.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_whitespace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category_nested.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category_scheme.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_clean.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_false.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_no.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_true.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image_no_href.xml +0 -12
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image_url.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml +0 -10
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_link_image.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_owner_email.xml +0 -12
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_owner_name.xml +0 -12
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_subtitle.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_summary.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_core_element_uppercase.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_author_map_author.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_false.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_no.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_true.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_uppercase.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_whitespace.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category_nested.xml +0 -13
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category_scheme.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_duration.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_clean.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_false.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_no.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_true.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_image.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_image_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_link_image.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_subtitle.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_item_summary.xml +0 -11
- forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_example.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_lowercase.xml +0 -9
- forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_uppercase.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/channel_dc_language.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/channel_language.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml +0 -12
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_underscore.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_blank.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_blank.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_blank.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_language.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/feed_language_override.xml +0 -9
- forkparser-6.1.0/tests/wellformed/lang/feed_not_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_not_xml_lang_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_blank.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml +0 -8
- forkparser-6.1.0/tests/wellformed/lang/feed_xml_lang.xml +0 -6
- forkparser-6.1.0/tests/wellformed/lang/feed_xml_lang_underscore.xml +0 -6
- forkparser-6.1.0/tests/wellformed/lang/http_content_language.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/http_content_language_entry_title_inherit.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/http_content_language_feed_language.xml +0 -10
- forkparser-6.1.0/tests/wellformed/lang/http_content_language_feed_xml_lang.xml +0 -7
- forkparser-6.1.0/tests/wellformed/lang/item_content_encoded_xml_lang.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/item_dc_language.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/item_fullitem_xml_lang.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/lang/item_xhtml_body_xml_lang.xml +0 -13
- forkparser-6.1.0/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml +0 -13
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_label.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_multiple.xml +0 -12
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_scheme1.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_scheme2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_term.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_title1.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_title2.xml +0 -12
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_title3.xml +0 -12
- forkparser-6.1.0/tests/wellformed/media-rss/item_media_title_type_plain.xml +0 -11
- forkparser-6.1.0/tests/wellformed/media-rss/media_group.xml +0 -17
- forkparser-6.1.0/tests/wellformed/media-rss/media_player1.xml +0 -10
- forkparser-6.1.0/tests/wellformed/media-rss/media_thumbnail.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/atommathml.xml +0 -9
- forkparser-6.1.0/tests/wellformed/namespace/atomsvg.xml +0 -9
- forkparser-6.1.0/tests/wellformed/namespace/atomsvgdctitle.xml +0 -36
- forkparser-6.1.0/tests/wellformed/namespace/atomsvgdesc.xml +0 -9
- forkparser-6.1.0/tests/wellformed/namespace/atomsvgtitle.xml +0 -9
- forkparser-6.1.0/tests/wellformed/namespace/atomthreading.xml +0 -5
- forkparser-6.1.0/tests/wellformed/namespace/atomthreadingwithentry.xml +0 -6
- forkparser-6.1.0/tests/wellformed/namespace/atomxlink.xml +0 -9
- forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModules.xml +0 -47
- forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml +0 -48
- forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml +0 -53
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModules.xml +0 -50
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml +0 -50
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml +0 -58
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0mathml.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0noNSwithModules.xml +0 -49
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml +0 -57
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0svg.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0svg5.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0svgtitle.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0withAtomNS.xml +0 -27
- forkparser-6.1.0/tests/wellformed/namespace/rss2.0xlink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/namespace/unknown-namespace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/node_precedence/atom10_arbitrary_element.xml +0 -18
- forkparser-6.1.0/tests/wellformed/node_precedence/atom10_id.xml +0 -18
- forkparser-6.1.0/tests/wellformed/node_precedence/atom10_title.xml +0 -18
- forkparser-6.1.0/tests/wellformed/psc/atomsimplechapter.xml +0 -34
- forkparser-6.1.0/tests/wellformed/psc/atomsimplechapterexternal.xml +0 -27
- forkparser-6.1.0/tests/wellformed/psc/ignore_multiple_psc_chapters.xml +0 -38
- forkparser-6.1.0/tests/wellformed/psc/rss2.0simplechapter.xml +0 -36
- forkparser-6.1.0/tests/wellformed/psc/rss2.0simplechapter2items.xml +0 -22
- forkparser-6.1.0/tests/wellformed/psc/version_1.0_keyerror.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rdf/doctype_contains_entity_decl.xml +0 -17
- forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_description.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rdf/rdf_item_description.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rdf/rdf_item_link.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rdf/rdf_item_rdf_about.xml +0 -15
- forkparser-6.1.0/tests/wellformed/rdf/rdf_item_title.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rdf/rss090_channel_title.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rdf/rss090_item_title.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rdf/rss_version_10.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rdf/rss_version_10_not_default_ns.xml +0 -8
- forkparser-6.1.0/tests/wellformed/rss/channel_author.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_category.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_category_domain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_category_multiple.xml +0 -10
- forkparser-6.1.0/tests/wellformed/rss/channel_category_multiple_2.xml +0 -10
- forkparser-6.1.0/tests/wellformed/rss/channel_cloud_domain.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_cloud_path.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_cloud_port.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_cloud_protocol.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_cloud_registerProcedure.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_copyright.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_author.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_contributor.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_date.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_date_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_rights.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject_multiple.xml +0 -10
- forkparser-6.1.0/tests/wellformed/rss/channel_dc_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_created.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_created_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_issued.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_issued_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_modified.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_modified_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_end.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_end_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_start.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_start_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_description.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_description_escaped_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_description_map_tagline.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_description_naked_markup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_description_shorttag.xml +0 -10
- forkparser-6.1.0/tests/wellformed/rss/channel_docs.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_generator.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_image_description.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_image_height.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_image_link.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_image_link_bleed.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_image_link_conflict.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_image_title.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_image_title_conflict.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_image_url.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_image_width.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/channel_lastBuildDate.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_lastBuildDate_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_pubDate.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_description.xml +0 -14
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_description_conflict.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link_bleed.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link_conflict.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_title.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_textInput_title_conflict.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/channel_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_title_apos.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_title_gt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_title_lt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_ttl.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_webMaster.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_webMaster_email.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/channel_webMaster_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/entity_in_doctype.xml +0 -16
- forkparser-6.1.0/tests/wellformed/rss/item_author.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email3.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name3.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_category.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_category_domain.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_category_image.xml +0 -17
- forkparser-6.1.0/tests/wellformed/rss/item_category_multiple.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_category_multiple_2.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_cc_license.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_comments.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_content_encoded.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_content_encoded_mode.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_content_encoded_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_creativeCommons_license.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_dc_author.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_contributor.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_creator.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_date.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_date_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_description.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher_email.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher_name.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_rights.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_subject.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_subject_2.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dc_subject_multiple.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_dc_title.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_created.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_created_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_issued.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_issued_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_modified.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_dcterms_modified_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description_and_summary.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_description_br.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description_br_shorttag.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_description_code_br.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_description_escaped_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description_map_summary.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description_naked_markup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_description_not_a_doctype.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/item_description_not_a_doctype2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/item_enclosure_length.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_enclosure_multiple.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rss/item_enclosure_type.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_enclosure_url.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_expirationDate.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_expirationDate_multiple_values.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_expirationDate_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_fullitem.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_fullitem_mode.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_fullitem_type.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_conflict_link.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_guid_guidislink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_ValueError.xml +0 -7
- forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_map_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_image_link_bleed.xml +0 -14
- forkparser-6.1.0/tests/wellformed/rss/item_image_link_conflict.xml +0 -14
- forkparser-6.1.0/tests/wellformed/rss/item_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_madeup_tags_element.xml +0 -8
- forkparser-6.1.0/tests/wellformed/rss/item_multiple_dc_creator.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rss/item_pubDate.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_source.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_source_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_summary_and_description.xml +0 -12
- forkparser-6.1.0/tests/wellformed/rss/item_title.xml +0 -11
- forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body_mode.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body_type.xml +0 -13
- forkparser-6.1.0/tests/wellformed/rss/newlocation.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/rss_namespace_1.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/rss_namespace_2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/rss_namespace_3.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/rss_namespace_4.xml +0 -9
- forkparser-6.1.0/tests/wellformed/rss/rss_version_090.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_091_netscape.xml +0 -7
- forkparser-6.1.0/tests/wellformed/rss/rss_version_091_userland.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_092.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_093.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_094.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_20.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_201.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_21.xml +0 -6
- forkparser-6.1.0/tests/wellformed/rss/rss_version_missing.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_abbr.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accept.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_action.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_align.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_alt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_axis.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_background.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_balance.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_border.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ch.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_challenge.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_char.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_charoff.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_charset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_checked.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_choff.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cite.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_class.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_clear.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_color.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cols.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_colspan.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_compact.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_coords.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_data.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datafld.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datetime.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_default.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_delay.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_dir.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_disabled.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_draggable.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_enctype.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_end.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_face.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_for.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_form.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_frame.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_gutter.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_headers.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_height.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hidden.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_high.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_href.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hspace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_icon.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_id.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ismap.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_keytype.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_label.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_lang.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_list.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loop.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopend.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_low.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_max.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_media.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_method.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_min.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_multiple.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_name.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_nohref.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_noshade.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_open.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_optimum.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_pattern.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ping.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_point-size.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_poster.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_pqg.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_preload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_prompt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_readonly.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rel.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_replace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_required.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rev.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rows.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rules.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_scope.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_selected.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_shape.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_size.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_span.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_src.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_start.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_step.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_summary.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_suppress.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_target.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_template.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_title.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_type.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_urn.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_usemap.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_valign.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_value.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_variable.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_volume.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_vrml.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_vspace.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_width.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_wrap.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_a.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_abbr.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_acronym.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_address.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_area.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_article.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_aside.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_audio.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_b.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_big.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_blockquote.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_br.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_button.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_canvas.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_caption.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_center.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_cite.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_code.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_col.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_colgroup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_command.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_datagrid.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_datalist.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dd.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_del.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_details.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dfn.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dialog.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dir.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_div.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dl.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_em.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_event-source.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_fieldset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_figure.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_font.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_footer.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_form.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h1.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h2.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h3.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h4.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h5.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h6.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_header.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_hr.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_i.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_img.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_input.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ins.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_kbd.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_keygen.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_label.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_legend.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_li.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_m.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_map.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_menu.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_meter.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_multicol.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_nav.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_nextid.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_noscript.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ol.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_optgroup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_option.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_output.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_p.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_pre.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_progress.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_q.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_s.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_samp.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_section.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_select.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_small.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sound.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_source.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_spacer.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_span.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_strike.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_strong.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sub.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_table.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tbody.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_td.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_textarea.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tfoot.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_th.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_thead.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_time.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tr.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tt.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_u.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ul.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_var.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_video.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_applet.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_blink.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_crazy.xml +0 -75
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_embed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_frame.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_iframe.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_meta.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_object.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onabort.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onblur.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onchange.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_ondblclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onerror.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onfocus.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeydown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeypress.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeyup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmousedown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseout.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseover.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onreset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onresize.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onsubmit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onunload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_base64.xml +0 -12
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_cdata.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_inline.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_style.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_content_style_tag.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_applet.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_blink.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_crazy.xml +0 -75
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_embed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_frame.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_iframe.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_meta.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_object.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onabort.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onblur.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onchange.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_ondblclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onerror.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onfocus.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeydown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeypress.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeyup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmousedown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseout.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseover.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onreset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onresize.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onsubmit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onunload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_base64.xml +0 -12
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_cdata.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_inline.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_map_description.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_style.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_applet.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_blink.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_crazy.xml +0 -75
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_embed.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_frame.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_iframe.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_link.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_meta.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_object.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onabort.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onblur.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onchange.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_ondblclick.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onerror.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onfocus.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeydown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeypress.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeyup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmousedown.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseout.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseover.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseup.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onreset.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onresize.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onsubmit.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onunload.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script_cdata.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script_inline.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/entry_title_style.xml +0 -9
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_applet.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_blink.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_crazy.xml +0 -73
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_embed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_frame.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_iframe.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_meta.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_object.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onabort.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onblur.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onchange.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_ondblclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onerror.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onfocus.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeydown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeypress.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeyup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmousedown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseout.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseover.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onreset.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onresize.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onsubmit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onunload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script_cdata.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script_inline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_style.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_applet.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_blink.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_crazy.xml +0 -73
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_embed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_frame.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_iframe.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_meta.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_object.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onabort.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onblur.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onchange.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_ondblclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onerror.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onfocus.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeydown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeypress.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeyup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmousedown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseout.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseover.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onreset.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onresize.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onsubmit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onunload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script_cdata.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script_inline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_info_style.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_applet.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_blink.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_crazy.xml +0 -73
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_embed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_frame.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_iframe.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_meta.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_object.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onabort.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onblur.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onchange.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onerror.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onfocus.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onreset.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onresize.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onunload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script_inline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_style.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_applet.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_blink.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_crazy.xml +0 -73
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_embed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_frame.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_iframe.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_meta.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_object.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onabort.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onblur.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onchange.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_ondblclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onerror.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onfocus.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeydown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeypress.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeyup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmousedown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseout.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseover.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onreset.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onresize.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onsubmit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onunload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_cdata.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_inline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_map_description.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_style.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_applet.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_blink.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_crazy.xml +0 -73
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_embed.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_frame.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_iframe.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_link.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_meta.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_object.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onabort.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onblur.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onchange.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_ondblclick.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onerror.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onfocus.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeydown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeypress.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeyup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmousedown.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseout.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseover.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseup.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onreset.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onresize.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onsubmit.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onunload.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script_cdata.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script_inline.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_style.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_applet.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_blink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_embed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_frame.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_iframe.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_meta.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_object.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onabort.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onblur.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onchange.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_ondblclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onerror.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onfocus.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeydown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeypress.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeyup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmousedown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseout.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseover.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onreset.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onresize.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onsubmit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_onunload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_script.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_script_map_content.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_body_style.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_applet.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_blink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_crazy.xml +0 -77
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_embed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_frame.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_iframe.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_map_content.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_meta.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_object.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onabort.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onblur.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onchange.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_ondblclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onerror.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onfocus.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeydown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeypress.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeyup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmousedown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseout.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseover.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onreset.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onresize.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onsubmit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onunload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_cdata.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_map_content.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_nested_cdata.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_style.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_applet.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_blink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_crazy.xml +0 -81
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_embed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_frame.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_iframe.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_meta.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_object.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onabort.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onblur.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onchange.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_ondblclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onerror.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onfocus.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeydown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeypress.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeyup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmousedown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseout.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseover.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onreset.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onresize.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onsubmit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_onunload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_script.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_script_cdata.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_script_map_summary.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_description_style.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_applet.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_blink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_crazy.xml +0 -77
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_embed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_frame.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_iframe.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_meta.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_object.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onabort.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onblur.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onchange.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_ondblclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onerror.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onfocus.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeydown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeypress.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeyup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmousedown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseout.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseover.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onreset.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onresize.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onsubmit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onunload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script_cdata.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script_map_summary.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_style.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_applet.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_blink.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_embed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_frame.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_iframe.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_link.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_meta.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_object.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onabort.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onblur.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onchange.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_ondblclick.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onerror.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onfocus.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeydown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeypress.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeyup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmousedown.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseout.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseover.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseup.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onreset.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onresize.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onsubmit.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onunload.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_script.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_script_map_content.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_style.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/large_atom_feed_that_needs_css_sanitisation.xml +0 -528
- forkparser-6.1.0/tests/wellformed/sanitize/style_background_repeat_repeat_x.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_background_url.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_background_yellow.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_0.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_1px_solid_rgb_0_0_0_.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_3px_solid_ccc.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_0pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_dashed.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_dotted.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_collapse_collapse.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_left_0pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_medium_none_.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_none_important.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_right_0pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_solid_2px_000000.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_border_top_0pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_clear_both.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_000080.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_008.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_999999.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_blue.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_maroon.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_red.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_rgb_0_128_0_.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_color_teal.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_cursor_pointer.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_display_block.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_float_left.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_float_right.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_family__comic_sans_ms.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_arial_sans_serif.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_lucida_console_.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_symbol.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_0_9em.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_10pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_10px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_smaller.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_style_italic.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_font_weight_bold.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_height_100px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_height_2px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_letter_spacing_1px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_line_height_normal.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0_15px_0_0.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0px_important.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_5px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_99999em.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_bottom_0pt.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_bottom_10px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_left_5px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_right_0px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_top_0in.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_margin_top_10px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_moz_background_clip_initial.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_ansi_language_nl.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_bidi_font_weight_normal.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_highlight_yellow.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_layout_grid_align_none.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_list_l0_level1_lfo1.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_no_proof_yes.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_spacerun_yes.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_mso_tab_count_3.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_overflow_auto.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_0.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_0_0_12px_12px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_2ex.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_99999em.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_left_4px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_padding_right_0in.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_position_absolute.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_tab_stops_list_5in.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_center.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_left.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_right.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_text_decoration_underline.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_text_indent_0_5in.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_vertical_align_bottom.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_vertical_align_top.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_white_space_nowrap.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_white_space_top.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/style_width_300px.xml +0 -11
- forkparser-6.1.0/tests/wellformed/sanitize/xml_declaration_unexpected_character.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/xml_malicious_comment.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sanitize/xml_unclosed_comment.xml +0 -7
- forkparser-6.1.0/tests/wellformed/sgml/charref_uppercase_x.xml +0 -9
- forkparser-6.1.0/tests/wellformed/xml/empty_xmlns_uri.xml +0 -9
- forkparser-6.1.0/tests/wellformed/xml/escaped_apos.xml +0 -10
- forkparser-6.1.0/tests/wellformed/xml/xlink_ns_no_prefix.xml +0 -10
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/__init__.py +0 -0
- {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/parsers/__init__.py +0 -0
|
@@ -2,18 +2,18 @@ feedparser and its unit tests are released under the following license:
|
|
|
2
2
|
|
|
3
3
|
----- begin license block -----
|
|
4
4
|
|
|
5
|
-
Copyright (C) 2010-
|
|
5
|
+
Copyright (C) 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
6
6
|
Copyright (C) 2002-2008 Mark Pilgrim
|
|
7
7
|
All rights reserved.
|
|
8
8
|
|
|
9
9
|
Redistribution and use in source and binary forms, with or without modification,
|
|
10
10
|
are permitted provided that the following conditions are met:
|
|
11
11
|
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
* Redistributions of source code must retain the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer.
|
|
14
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
15
|
+
this list of conditions and the following disclaimer in the documentation
|
|
16
|
+
and/or other materials provided with the distribution.
|
|
17
17
|
|
|
18
18
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
|
|
19
19
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
@@ -38,19 +38,19 @@ released under the following license:
|
|
|
38
38
|
|
|
39
39
|
----- begin license block -----
|
|
40
40
|
|
|
41
|
-
Copyright (C) 2010-
|
|
41
|
+
Copyright (C) 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
42
42
|
Copyright (C) 2004-2008 Mark Pilgrim. All rights reserved.
|
|
43
43
|
|
|
44
44
|
Redistribution and use in source (Sphinx ReST) and "compiled" forms (HTML, PDF,
|
|
45
45
|
PostScript, RTF and so forth) with or without modification, are permitted
|
|
46
46
|
provided that the following conditions are met:
|
|
47
47
|
|
|
48
|
-
*
|
|
49
|
-
|
|
50
|
-
*
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
* Redistributions of source code (Sphinx ReST) must retain the above copyright
|
|
49
|
+
notice, this list of conditions and the following disclaimer.
|
|
50
|
+
* Redistributions in compiled form (converted to HTML, PDF, PostScript, RTF and
|
|
51
|
+
other formats) must reproduce the above copyright notice, this list of
|
|
52
|
+
conditions and the following disclaimer in the documentation and/or other
|
|
53
|
+
materials provided with the distribution.
|
|
54
54
|
|
|
55
55
|
THIS DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
|
|
56
56
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forkparser
|
|
3
|
+
Version: 2026.7.0
|
|
4
|
+
Summary: Parse Atom/RSS/JSON feeds in Python
|
|
5
|
+
License-Expression: BSD-2-Clause
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: atom,feed,json,rdf,rss
|
|
8
|
+
Author: Kurt McKee
|
|
9
|
+
Author-email: contactme@kurtmckee.org
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Topic :: Text Processing :: Markup
|
|
14
|
+
Requires-Dist: requests (>=2.20.0)
|
|
15
|
+
Requires-Dist: sgmllib3k (==1.0.0)
|
|
16
|
+
Project-URL: Changelog, https://feedparser.readthedocs.io/en/latest/changelog/
|
|
17
|
+
Project-URL: Documentation, https://feedparser.readthedocs.io/en/latest/
|
|
18
|
+
Project-URL: Source, https://github.com/kurtmckee/feedparser
|
|
19
|
+
Description-Content-Type: text/x-rst
|
|
20
|
+
|
|
21
|
+
..
|
|
22
|
+
This file is part of feedparser.
|
|
23
|
+
Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
24
|
+
Copyright 2002-2008 Mark Pilgrim
|
|
25
|
+
Released under the BSD 2-clause license.
|
|
26
|
+
|
|
27
|
+
feedparser
|
|
28
|
+
##########
|
|
29
|
+
|
|
30
|
+
Parse Atom and RSS feeds in Python.
|
|
31
|
+
|
|
32
|
+
----
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Installation
|
|
36
|
+
============
|
|
37
|
+
|
|
38
|
+
feedparser can be installed by running pip:
|
|
39
|
+
|
|
40
|
+
.. code-block:: console
|
|
41
|
+
|
|
42
|
+
$ pip install feedparser
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Documentation
|
|
46
|
+
=============
|
|
47
|
+
|
|
48
|
+
The feedparser documentation is available on the web at:
|
|
49
|
+
|
|
50
|
+
https://feedparser.readthedocs.io/en/latest/
|
|
51
|
+
|
|
52
|
+
It can also be built and browsed locally using `tox`_:
|
|
53
|
+
|
|
54
|
+
.. code-block:: console
|
|
55
|
+
|
|
56
|
+
$ tox run -e docs
|
|
57
|
+
|
|
58
|
+
This will produce HTML documentation in the ``build/docs/`` directory.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
Testing
|
|
62
|
+
=======
|
|
63
|
+
|
|
64
|
+
Feedparser has an extensive test suite, powered by `tox`_:
|
|
65
|
+
|
|
66
|
+
.. code-block:: console
|
|
67
|
+
|
|
68
|
+
$ tox run-parallel
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
.. Links
|
|
72
|
+
.. =====
|
|
73
|
+
..
|
|
74
|
+
.. _tox: https://tox.wiki/
|
|
75
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
..
|
|
2
|
+
This file is part of feedparser.
|
|
3
|
+
Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
4
|
+
Copyright 2002-2008 Mark Pilgrim
|
|
5
|
+
Released under the BSD 2-clause license.
|
|
6
|
+
|
|
7
|
+
feedparser
|
|
8
|
+
##########
|
|
9
|
+
|
|
10
|
+
Parse Atom and RSS feeds in Python.
|
|
11
|
+
|
|
12
|
+
----
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
Installation
|
|
16
|
+
============
|
|
17
|
+
|
|
18
|
+
feedparser can be installed by running pip:
|
|
19
|
+
|
|
20
|
+
.. code-block:: console
|
|
21
|
+
|
|
22
|
+
$ pip install feedparser
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Documentation
|
|
26
|
+
=============
|
|
27
|
+
|
|
28
|
+
The feedparser documentation is available on the web at:
|
|
29
|
+
|
|
30
|
+
https://feedparser.readthedocs.io/en/latest/
|
|
31
|
+
|
|
32
|
+
It can also be built and browsed locally using `tox`_:
|
|
33
|
+
|
|
34
|
+
.. code-block:: console
|
|
35
|
+
|
|
36
|
+
$ tox run -e docs
|
|
37
|
+
|
|
38
|
+
This will produce HTML documentation in the ``build/docs/`` directory.
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
Testing
|
|
42
|
+
=======
|
|
43
|
+
|
|
44
|
+
Feedparser has an extensive test suite, powered by `tox`_:
|
|
45
|
+
|
|
46
|
+
.. code-block:: console
|
|
47
|
+
|
|
48
|
+
$ tox run-parallel
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
.. Links
|
|
52
|
+
.. =====
|
|
53
|
+
..
|
|
54
|
+
.. _tox: https://tox.wiki/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright 2010-
|
|
1
|
+
# Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
2
2
|
# Copyright 2002-2008 Mark Pilgrim
|
|
3
3
|
# All rights reserved.
|
|
4
4
|
#
|
|
@@ -25,21 +25,20 @@
|
|
|
25
25
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
26
26
|
# POSSIBILITY OF SUCH DAMAGE."""
|
|
27
27
|
|
|
28
|
-
from __future__ import absolute_import, unicode_literals
|
|
29
|
-
|
|
30
|
-
__author__ = 'Kurt McKee <contactme@kurtmckee.org>'
|
|
31
|
-
__license__ = 'BSD 2-clause'
|
|
32
|
-
__version__ = '6.1.0+forkparser'
|
|
33
|
-
|
|
34
|
-
# HTTP "User-Agent" header to send to servers when downloading feeds.
|
|
35
|
-
# If you are embedding feedparser in a larger application, you should
|
|
36
|
-
# change this to your application name and URL.
|
|
37
|
-
USER_AGENT = "feedparser/%s +https://github.com/kurtmckee/feedparser/" % __version__
|
|
38
|
-
|
|
39
|
-
from . import api
|
|
40
28
|
from .api import parse
|
|
41
29
|
from .datetimes import registerDateHandler
|
|
42
|
-
from .exceptions import
|
|
30
|
+
from .exceptions import (
|
|
31
|
+
CharacterEncodingOverride,
|
|
32
|
+
CharacterEncodingUnknown,
|
|
33
|
+
FeedparserError,
|
|
34
|
+
NonXMLContentType,
|
|
35
|
+
UndeclaredNamespace,
|
|
36
|
+
)
|
|
37
|
+
from .util import FeedParserDict
|
|
38
|
+
|
|
39
|
+
__author__ = "Kurt McKee <contactme@kurtmckee.org>"
|
|
40
|
+
__license__ = "BSD 2-clause"
|
|
41
|
+
__version__ = "6.0.12"
|
|
43
42
|
|
|
44
43
|
# If you want feedparser to automatically resolve all relative URIs, set this
|
|
45
44
|
# to 1.
|
|
@@ -48,3 +47,20 @@ RESOLVE_RELATIVE_URIS = 1
|
|
|
48
47
|
# If you want feedparser to automatically sanitize all potentially unsafe
|
|
49
48
|
# HTML content, set this to 1.
|
|
50
49
|
SANITIZE_HTML = 1
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
# If you want feedparser to use only a prefix of the feed to detect encodings
|
|
53
|
+
# (uses less memory), set this to 1.
|
|
54
|
+
OPTIMISTIC_ENCODING_DETECTION = 1
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
__all__ = (
|
|
58
|
+
"parse",
|
|
59
|
+
"registerDateHandler",
|
|
60
|
+
"FeedParserDict",
|
|
61
|
+
"FeedparserError",
|
|
62
|
+
"CharacterEncodingOverride",
|
|
63
|
+
"CharacterEncodingUnknown",
|
|
64
|
+
"NonXMLContentType",
|
|
65
|
+
"UndeclaredNamespace",
|
|
66
|
+
)
|
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
# The public API for feedparser
|
|
2
|
+
# Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
3
|
+
# Copyright 2002-2008 Mark Pilgrim
|
|
4
|
+
# All rights reserved.
|
|
5
|
+
#
|
|
6
|
+
# This file is a part of feedparser.
|
|
7
|
+
#
|
|
8
|
+
# Redistribution and use in source and binary forms, with or without modification,
|
|
9
|
+
# are permitted provided that the following conditions are met:
|
|
10
|
+
#
|
|
11
|
+
# * Redistributions of source code must retain the above copyright notice,
|
|
12
|
+
# this list of conditions and the following disclaimer.
|
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
|
15
|
+
# and/or other materials provided with the distribution.
|
|
16
|
+
#
|
|
17
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
|
|
18
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
19
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
20
|
+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
21
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
22
|
+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
23
|
+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
24
|
+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
25
|
+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
26
|
+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
27
|
+
# POSSIBILITY OF SUCH DAMAGE.
|
|
28
|
+
|
|
29
|
+
import io
|
|
30
|
+
import urllib.error
|
|
31
|
+
import urllib.parse
|
|
32
|
+
import xml.sax
|
|
33
|
+
from typing import IO
|
|
34
|
+
|
|
35
|
+
from . import http
|
|
36
|
+
from .encodings import MissingEncoding, convert_file_to_utf8
|
|
37
|
+
from .html import BaseHTMLProcessor
|
|
38
|
+
from .mixin import XMLParserMixin
|
|
39
|
+
from .parsers.json import JSONParser
|
|
40
|
+
from .parsers.loose import LooseXMLParser
|
|
41
|
+
from .parsers.strict import StrictXMLParser
|
|
42
|
+
from .sanitizer import replace_doctype
|
|
43
|
+
from .urls import make_safe_absolute_uri
|
|
44
|
+
from .util import FeedParserDict
|
|
45
|
+
|
|
46
|
+
# List of preferred XML parsers, by SAX driver name. These will be tried first,
|
|
47
|
+
# but if they're not installed, Python will keep searching through its own list
|
|
48
|
+
# of pre-installed parsers until it finds one that supports everything we need.
|
|
49
|
+
PREFERRED_XML_PARSERS = ["drv_libxml2"]
|
|
50
|
+
|
|
51
|
+
_XML_AVAILABLE = True
|
|
52
|
+
|
|
53
|
+
SUPPORTED_VERSIONS = {
|
|
54
|
+
"": "unknown",
|
|
55
|
+
"rss090": "RSS 0.90",
|
|
56
|
+
"rss091n": "RSS 0.91 (Netscape)",
|
|
57
|
+
"rss091u": "RSS 0.91 (Userland)",
|
|
58
|
+
"rss092": "RSS 0.92",
|
|
59
|
+
"rss093": "RSS 0.93",
|
|
60
|
+
"rss094": "RSS 0.94",
|
|
61
|
+
"rss20": "RSS 2.0",
|
|
62
|
+
"rss10": "RSS 1.0",
|
|
63
|
+
"rss": "RSS (unknown version)",
|
|
64
|
+
"atom01": "Atom 0.1",
|
|
65
|
+
"atom02": "Atom 0.2",
|
|
66
|
+
"atom03": "Atom 0.3",
|
|
67
|
+
"atom10": "Atom 1.0",
|
|
68
|
+
"atom": "Atom (unknown version)",
|
|
69
|
+
"cdf": "CDF",
|
|
70
|
+
"json1": "JSON feed 1",
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def _open_resource(
|
|
75
|
+
url_file_stream_or_string,
|
|
76
|
+
result,
|
|
77
|
+
):
|
|
78
|
+
"""URL, filename, or string --> stream
|
|
79
|
+
|
|
80
|
+
This function lets you define parsers that take any input source
|
|
81
|
+
(URL, pathname to local or network file, or actual data as a string)
|
|
82
|
+
and deal with it in a uniform manner. Returned object is guaranteed
|
|
83
|
+
to have all the basic stdio read methods (read, readline, readlines).
|
|
84
|
+
Just .close() the object when you're done with it.
|
|
85
|
+
|
|
86
|
+
:return: A seekable, readable file object.
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
# Some notes on the history of the implementation of _open_resource().
|
|
90
|
+
#
|
|
91
|
+
# parse() might need to go over the feed content twice:
|
|
92
|
+
# if the strict parser fails, it tries again with the loose parser.
|
|
93
|
+
#
|
|
94
|
+
# In 5.2.0, this returned an open file, to be read() by parse().
|
|
95
|
+
# By 6.0.8, this returned bytes directly.
|
|
96
|
+
#
|
|
97
|
+
# Since #296 (>6.0.8), this once again returns an open file
|
|
98
|
+
# (to reduce memory usage, see convert_file_to_utf8() for details).
|
|
99
|
+
# However, to accommodate parse() needing the content twice,
|
|
100
|
+
# the returned file is guaranteed to be seekable.
|
|
101
|
+
# (If the underlying resource is not seekable,
|
|
102
|
+
# the content is read and wrapped in a io.BytesIO/StringIO.)
|
|
103
|
+
|
|
104
|
+
if callable(getattr(url_file_stream_or_string, "read", None)):
|
|
105
|
+
if callable(getattr(url_file_stream_or_string, "seekable", None)):
|
|
106
|
+
if url_file_stream_or_string.seekable():
|
|
107
|
+
return url_file_stream_or_string
|
|
108
|
+
return _to_in_memory_file(url_file_stream_or_string.read())
|
|
109
|
+
|
|
110
|
+
looks_like_url = isinstance(
|
|
111
|
+
url_file_stream_or_string, str
|
|
112
|
+
) and urllib.parse.urlparse(url_file_stream_or_string)[0] in (
|
|
113
|
+
"http",
|
|
114
|
+
"https",
|
|
115
|
+
)
|
|
116
|
+
if looks_like_url:
|
|
117
|
+
data = http.get(url_file_stream_or_string, result)
|
|
118
|
+
return io.BytesIO(data)
|
|
119
|
+
|
|
120
|
+
# try to open with native open function (if url_file_stream_or_string is a filename)
|
|
121
|
+
try:
|
|
122
|
+
return open(url_file_stream_or_string, "rb")
|
|
123
|
+
except (OSError, TypeError, ValueError):
|
|
124
|
+
# if url_file_stream_or_string is a str object that
|
|
125
|
+
# cannot be converted to the encoding returned by
|
|
126
|
+
# sys.getfilesystemencoding(), a UnicodeEncodeError
|
|
127
|
+
# will be thrown
|
|
128
|
+
# If url_file_stream_or_string is a string that contains NULL
|
|
129
|
+
# (such as an XML document encoded in UTF-32), TypeError will
|
|
130
|
+
# be thrown.
|
|
131
|
+
pass
|
|
132
|
+
|
|
133
|
+
# treat url_file_stream_or_string as bytes/string
|
|
134
|
+
return _to_in_memory_file(url_file_stream_or_string)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
def _to_in_memory_file(data):
|
|
138
|
+
if isinstance(data, str):
|
|
139
|
+
return io.StringIO(data)
|
|
140
|
+
return io.BytesIO(data)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class LooseFeedParser(LooseXMLParser, XMLParserMixin, BaseHTMLProcessor):
|
|
144
|
+
pass
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class StrictFeedParser(StrictXMLParser, XMLParserMixin, xml.sax.handler.ContentHandler):
|
|
148
|
+
pass
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def parse(
|
|
152
|
+
url_file_stream_or_string,
|
|
153
|
+
response_headers: dict[str, str] | None = None,
|
|
154
|
+
resolve_relative_uris: bool | None = None,
|
|
155
|
+
sanitize_html: bool | None = None,
|
|
156
|
+
optimistic_encoding_detection: bool | None = None,
|
|
157
|
+
) -> FeedParserDict:
|
|
158
|
+
"""Parse a feed from a URL, file, stream, or string.
|
|
159
|
+
|
|
160
|
+
:param url_file_stream_or_string:
|
|
161
|
+
File-like object, URL, file path, or string. Both byte and text strings
|
|
162
|
+
are accepted. If necessary, encoding will be derived from the response
|
|
163
|
+
headers or automatically detected.
|
|
164
|
+
|
|
165
|
+
Note that strings may trigger network I/O or filesystem access
|
|
166
|
+
depending on the value. Wrap an untrusted string in
|
|
167
|
+
a :class:`io.StringIO` or :class:`io.BytesIO` to avoid this. Do not
|
|
168
|
+
pass untrusted strings to this function.
|
|
169
|
+
|
|
170
|
+
When a URL is not passed the feed location to use in relative URL
|
|
171
|
+
resolution should be passed in the ``Content-Location`` response header
|
|
172
|
+
(see ``response_headers`` below).
|
|
173
|
+
:param response_headers:
|
|
174
|
+
A mapping of HTTP header name to HTTP header value. Multiple values may
|
|
175
|
+
be joined with a comma. If a HTTP request was made, these headers
|
|
176
|
+
override any matching headers in the response. Otherwise this specifies
|
|
177
|
+
the entirety of the response headers.
|
|
178
|
+
:param resolve_relative_uris:
|
|
179
|
+
Should feedparser attempt to resolve relative URIs absolute ones within
|
|
180
|
+
HTML content? Defaults to the value of
|
|
181
|
+
:data:`feedparser.RESOLVE_RELATIVE_URIS`, which is ``True``.
|
|
182
|
+
:param sanitize_html:
|
|
183
|
+
Should feedparser skip HTML sanitization? Only disable this if you know
|
|
184
|
+
what you are doing! Defaults to the value of
|
|
185
|
+
:data:`feedparser.SANITIZE_HTML`, which is ``True``.
|
|
186
|
+
:param optimistic_encoding_detection:
|
|
187
|
+
Should feedparser use only a prefix of the feed to detect encodings
|
|
188
|
+
(uses less memory, but the wrong encoding may be detected in rare cases).
|
|
189
|
+
Defaults to the value of
|
|
190
|
+
:data:`feedparser.OPTIMISTIC_ENCODING_DETECTION`, which is ``True``.
|
|
191
|
+
|
|
192
|
+
"""
|
|
193
|
+
|
|
194
|
+
result = FeedParserDict(
|
|
195
|
+
bozo=False,
|
|
196
|
+
entries=[],
|
|
197
|
+
feed=FeedParserDict(),
|
|
198
|
+
headers={},
|
|
199
|
+
)
|
|
200
|
+
|
|
201
|
+
try:
|
|
202
|
+
file = _open_resource(
|
|
203
|
+
url_file_stream_or_string,
|
|
204
|
+
result,
|
|
205
|
+
)
|
|
206
|
+
except urllib.error.URLError as error:
|
|
207
|
+
result.update(
|
|
208
|
+
{
|
|
209
|
+
"bozo": True,
|
|
210
|
+
"bozo_exception": error,
|
|
211
|
+
}
|
|
212
|
+
)
|
|
213
|
+
return result
|
|
214
|
+
|
|
215
|
+
# at this point, the file is guaranteed to be seekable;
|
|
216
|
+
# we read 1 byte/character to see if it's empty and return early
|
|
217
|
+
# (this preserves the behavior in 6.0.8)
|
|
218
|
+
initial_file_offset = file.tell()
|
|
219
|
+
if not file.read(1):
|
|
220
|
+
return result
|
|
221
|
+
file.seek(initial_file_offset)
|
|
222
|
+
|
|
223
|
+
# overwrite existing headers using response_headers
|
|
224
|
+
result["headers"].update(response_headers or {})
|
|
225
|
+
|
|
226
|
+
try:
|
|
227
|
+
_parse_file_inplace(
|
|
228
|
+
file,
|
|
229
|
+
result,
|
|
230
|
+
resolve_relative_uris=resolve_relative_uris,
|
|
231
|
+
sanitize_html=sanitize_html,
|
|
232
|
+
optimistic_encoding_detection=optimistic_encoding_detection,
|
|
233
|
+
)
|
|
234
|
+
finally:
|
|
235
|
+
if not hasattr(url_file_stream_or_string, "read"):
|
|
236
|
+
# the file does not come from the user, close it
|
|
237
|
+
file.close()
|
|
238
|
+
|
|
239
|
+
return result
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
def _parse_file_inplace(
|
|
243
|
+
file: IO[bytes] | IO[str],
|
|
244
|
+
result: dict,
|
|
245
|
+
*,
|
|
246
|
+
resolve_relative_uris: bool | None = None,
|
|
247
|
+
sanitize_html: bool | None = None,
|
|
248
|
+
optimistic_encoding_detection: bool | None = None,
|
|
249
|
+
) -> None:
|
|
250
|
+
# Avoid a cyclic import.
|
|
251
|
+
import feedparser
|
|
252
|
+
|
|
253
|
+
if sanitize_html is None:
|
|
254
|
+
sanitize_html = bool(feedparser.SANITIZE_HTML)
|
|
255
|
+
if resolve_relative_uris is None:
|
|
256
|
+
resolve_relative_uris = bool(feedparser.RESOLVE_RELATIVE_URIS)
|
|
257
|
+
if optimistic_encoding_detection is None:
|
|
258
|
+
optimistic_encoding_detection = bool(feedparser.OPTIMISTIC_ENCODING_DETECTION)
|
|
259
|
+
|
|
260
|
+
stream_factory = convert_file_to_utf8(
|
|
261
|
+
result["headers"], file, result, optimistic_encoding_detection
|
|
262
|
+
)
|
|
263
|
+
# We're done with file, all access must happen through stream_factory.
|
|
264
|
+
del file
|
|
265
|
+
|
|
266
|
+
# Some notes about the stream_factory.get_{text,binary}_file() methods:
|
|
267
|
+
#
|
|
268
|
+
# Calling them a second time will raise io.UnsupportedOperation
|
|
269
|
+
# if the underlying file was not seekable.
|
|
270
|
+
#
|
|
271
|
+
# Calling close() on the returned file is ignored
|
|
272
|
+
# (that is, the underlying file is *not* closed),
|
|
273
|
+
# because the SAX parser closes the file when done;
|
|
274
|
+
# we don't want that, since we might try again with the loose parser.
|
|
275
|
+
|
|
276
|
+
use_json_parser = False
|
|
277
|
+
if result["content-type"] in {"application/json", "application/feed+json"}:
|
|
278
|
+
use_json_parser = True
|
|
279
|
+
use_strict_parser = bool(result["encoding"])
|
|
280
|
+
|
|
281
|
+
result["version"], stream_factory.prefix, entities = replace_doctype(
|
|
282
|
+
stream_factory.prefix
|
|
283
|
+
)
|
|
284
|
+
|
|
285
|
+
# Ensure that baseuri is an absolute URI using an acceptable URI scheme.
|
|
286
|
+
contentloc = result["headers"].get("content-location", "")
|
|
287
|
+
href = result.get("href", "")
|
|
288
|
+
baseuri = (
|
|
289
|
+
make_safe_absolute_uri(href, contentloc)
|
|
290
|
+
or make_safe_absolute_uri(contentloc)
|
|
291
|
+
or href
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
baselang = result["headers"].get("content-language", None)
|
|
295
|
+
if isinstance(baselang, bytes) and baselang is not None:
|
|
296
|
+
baselang = baselang.decode("utf-8", "ignore")
|
|
297
|
+
|
|
298
|
+
if not _XML_AVAILABLE:
|
|
299
|
+
use_strict_parser = False
|
|
300
|
+
|
|
301
|
+
feed_parser: JSONParser | StrictFeedParser | LooseFeedParser
|
|
302
|
+
|
|
303
|
+
if use_strict_parser and not use_json_parser:
|
|
304
|
+
# Initialize the SAX parser.
|
|
305
|
+
feed_parser = StrictFeedParser(baseuri, baselang, "utf-8")
|
|
306
|
+
feed_parser.resolve_relative_uris = resolve_relative_uris
|
|
307
|
+
feed_parser.sanitize_html = sanitize_html
|
|
308
|
+
saxparser = xml.sax.make_parser(PREFERRED_XML_PARSERS)
|
|
309
|
+
saxparser.setFeature(xml.sax.handler.feature_namespaces, 1)
|
|
310
|
+
try:
|
|
311
|
+
# Disable downloading external doctype references, if possible.
|
|
312
|
+
saxparser.setFeature(xml.sax.handler.feature_external_ges, 0)
|
|
313
|
+
except xml.sax.SAXNotSupportedException:
|
|
314
|
+
pass
|
|
315
|
+
saxparser.setContentHandler(feed_parser)
|
|
316
|
+
saxparser.setErrorHandler(feed_parser) # type: ignore[arg-type]
|
|
317
|
+
source = xml.sax.xmlreader.InputSource()
|
|
318
|
+
|
|
319
|
+
# If an encoding was detected, decode the file on the fly;
|
|
320
|
+
# otherwise, pass it as-is and let the SAX parser deal with it.
|
|
321
|
+
try:
|
|
322
|
+
source.setCharacterStream(stream_factory.get_text_file())
|
|
323
|
+
except MissingEncoding:
|
|
324
|
+
source.setByteStream(stream_factory.get_binary_file())
|
|
325
|
+
|
|
326
|
+
try:
|
|
327
|
+
saxparser.parse(source)
|
|
328
|
+
except xml.sax.SAXException as e:
|
|
329
|
+
result["bozo"] = 1
|
|
330
|
+
result["bozo_exception"] = feed_parser.exc or e
|
|
331
|
+
use_strict_parser = False
|
|
332
|
+
|
|
333
|
+
# The loose XML parser will be tried if the strict XML parser was not used
|
|
334
|
+
# (or if it failed to parse the feed).
|
|
335
|
+
if not use_strict_parser and not use_json_parser:
|
|
336
|
+
feed_parser = LooseFeedParser(baseuri, baselang, "utf-8", entities)
|
|
337
|
+
feed_parser.resolve_relative_uris = resolve_relative_uris
|
|
338
|
+
feed_parser.sanitize_html = sanitize_html
|
|
339
|
+
|
|
340
|
+
# If an encoding was detected, use it; otherwise, assume utf-8 and do your best.
|
|
341
|
+
# Will raise io.UnsupportedOperation if the underlying file is not seekable.
|
|
342
|
+
data = stream_factory.get_text_file("utf-8", "replace").read()
|
|
343
|
+
|
|
344
|
+
# As of 6.0.8, LooseFeedParser.feed() can be called exactly once
|
|
345
|
+
# with the entire data (it does some re.sub() and str.replace() on it).
|
|
346
|
+
#
|
|
347
|
+
# SGMLParser (of which LooseFeedParser is a subclass)
|
|
348
|
+
# *can* be fed in a streaming fashion,
|
|
349
|
+
# by calling feed() repeatedly with chunks of text.
|
|
350
|
+
#
|
|
351
|
+
# When/if LooseFeedParser will support being fed chunks,
|
|
352
|
+
# replace the read() call above with read(size)/feed() calls in a loop.
|
|
353
|
+
|
|
354
|
+
feed_parser.feed(data)
|
|
355
|
+
|
|
356
|
+
# If parsing with the loose XML parser resulted in no information,
|
|
357
|
+
# flag that the JSON parser should be tried.
|
|
358
|
+
if not (feed_parser.entries or feed_parser.feeddata or feed_parser.version):
|
|
359
|
+
use_json_parser = True
|
|
360
|
+
|
|
361
|
+
if use_json_parser:
|
|
362
|
+
result["version"] = None
|
|
363
|
+
feed_parser = JSONParser(baseuri, baselang, "utf-8")
|
|
364
|
+
try:
|
|
365
|
+
feed_parser.feed(stream_factory.get_file())
|
|
366
|
+
except Exception as e:
|
|
367
|
+
result["bozo"] = 1
|
|
368
|
+
result["bozo_exception"] = e
|
|
369
|
+
|
|
370
|
+
result["feed"] = feed_parser.feeddata
|
|
371
|
+
result["entries"] = feed_parser.entries
|
|
372
|
+
result["version"] = result["version"] or feed_parser.version
|
|
373
|
+
if isinstance(feed_parser, JSONParser):
|
|
374
|
+
result["namespaces"] = {}
|
|
375
|
+
else:
|
|
376
|
+
result["namespaces"] = feed_parser.namespaces_in_use
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Copyright 2010-2025 Kurt McKee <contactme@kurtmckee.org>
|
|
2
|
+
# Copyright 2002-2008 Mark Pilgrim
|
|
3
|
+
# All rights reserved.
|
|
4
|
+
#
|
|
5
|
+
# This file is a part of feedparser.
|
|
6
|
+
#
|
|
7
|
+
# Redistribution and use in source and binary forms, with or without
|
|
8
|
+
# modification, are permitted provided that the following conditions are met:
|
|
9
|
+
#
|
|
10
|
+
# * Redistributions of source code must retain the above copyright notice,
|
|
11
|
+
# this list of conditions and the following disclaimer.
|
|
12
|
+
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
# this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
# and/or other materials provided with the distribution.
|
|
15
|
+
#
|
|
16
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
|
|
17
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
18
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
19
|
+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
20
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
21
|
+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
22
|
+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
23
|
+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
24
|
+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
25
|
+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
26
|
+
# POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
|
|
28
|
+
from collections.abc import Callable
|
|
29
|
+
from time import struct_time
|
|
30
|
+
|
|
31
|
+
from .asctime import _parse_date_asctime
|
|
32
|
+
from .greek import _parse_date_greek
|
|
33
|
+
from .hungarian import _parse_date_hungarian
|
|
34
|
+
from .iso8601 import _parse_date_iso8601
|
|
35
|
+
from .korean import _parse_date_nate, _parse_date_onblog
|
|
36
|
+
from .perforce import _parse_date_perforce
|
|
37
|
+
from .rfc822 import _parse_date_rfc822
|
|
38
|
+
from .w3dtf import _parse_date_w3dtf
|
|
39
|
+
|
|
40
|
+
_date_handlers: list[Callable[[str], struct_time | None]] = []
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def registerDateHandler(func):
|
|
44
|
+
"""Register a date handler function (takes string, returns 9-tuple date in GMT)"""
|
|
45
|
+
_date_handlers.insert(0, func)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def _parse_date(date_string):
|
|
49
|
+
"""Parses a variety of date formats into a 9-tuple in GMT"""
|
|
50
|
+
if not date_string:
|
|
51
|
+
return None
|
|
52
|
+
for handler in _date_handlers:
|
|
53
|
+
try:
|
|
54
|
+
date9tuple = handler(date_string)
|
|
55
|
+
except (KeyError, OverflowError, ValueError, AttributeError):
|
|
56
|
+
continue
|
|
57
|
+
if not date9tuple:
|
|
58
|
+
continue
|
|
59
|
+
if len(date9tuple) != 9:
|
|
60
|
+
continue
|
|
61
|
+
return date9tuple
|
|
62
|
+
return None
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
registerDateHandler(_parse_date_onblog)
|
|
66
|
+
registerDateHandler(_parse_date_nate)
|
|
67
|
+
registerDateHandler(_parse_date_greek)
|
|
68
|
+
registerDateHandler(_parse_date_hungarian)
|
|
69
|
+
registerDateHandler(_parse_date_perforce)
|
|
70
|
+
registerDateHandler(_parse_date_asctime)
|
|
71
|
+
registerDateHandler(_parse_date_iso8601)
|
|
72
|
+
registerDateHandler(_parse_date_rfc822)
|
|
73
|
+
registerDateHandler(_parse_date_w3dtf)
|