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.
Files changed (2434) hide show
  1. {forkparser-6.1.0 → forkparser-2026.7.0}/LICENSE +13 -13
  2. forkparser-2026.7.0/PKG-INFO +75 -0
  3. forkparser-2026.7.0/README.rst +54 -0
  4. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/__init__.py +30 -14
  5. forkparser-2026.7.0/feedparser/api.py +376 -0
  6. forkparser-2026.7.0/feedparser/datetimes/__init__.py +73 -0
  7. forkparser-2026.7.0/feedparser/datetimes/asctime.py +80 -0
  8. forkparser-2026.7.0/feedparser/datetimes/greek.py +90 -0
  9. forkparser-2026.7.0/feedparser/datetimes/hungarian.py +66 -0
  10. forkparser-2026.7.0/feedparser/datetimes/iso8601.py +160 -0
  11. forkparser-2026.7.0/feedparser/datetimes/korean.py +94 -0
  12. forkparser-2026.7.0/feedparser/datetimes/perforce.py +63 -0
  13. forkparser-2026.7.0/feedparser/datetimes/rfc822.py +179 -0
  14. forkparser-2026.7.0/feedparser/datetimes/w3dtf.py +128 -0
  15. forkparser-2026.7.0/feedparser/encodings.py +649 -0
  16. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/exceptions.py +15 -12
  17. forkparser-2026.7.0/feedparser/html.py +350 -0
  18. forkparser-2026.7.0/feedparser/http.py +74 -0
  19. forkparser-2026.7.0/feedparser/mixin.py +838 -0
  20. forkparser-2026.7.0/feedparser/namespaces/_base.py +547 -0
  21. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/admin.py +15 -17
  22. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/cc.py +29 -30
  23. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/dc.py +53 -51
  24. forkparser-2026.7.0/feedparser/namespaces/georss.py +682 -0
  25. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/itunes.py +48 -44
  26. forkparser-2026.7.0/feedparser/namespaces/mediarss.py +142 -0
  27. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/psc.py +24 -22
  28. forkparser-2026.7.0/feedparser/parsers/json.py +135 -0
  29. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/parsers/loose.py +36 -33
  30. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/parsers/strict.py +44 -38
  31. forkparser-2026.7.0/feedparser/py.typed +0 -0
  32. forkparser-2026.7.0/feedparser/sanitizer.py +977 -0
  33. forkparser-2026.7.0/feedparser/sgml.py +98 -0
  34. forkparser-2026.7.0/feedparser/urls.py +174 -0
  35. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/util.py +74 -61
  36. forkparser-2026.7.0/pyproject.toml +116 -0
  37. forkparser-6.1.0/MANIFEST.in +0 -4
  38. forkparser-6.1.0/NEWS +0 -431
  39. forkparser-6.1.0/PKG-INFO +0 -28
  40. forkparser-6.1.0/README.rst +0 -66
  41. forkparser-6.1.0/docs/_static/feedparser.css +0 -5
  42. forkparser-6.1.0/docs/add_custom_css.py +0 -3
  43. forkparser-6.1.0/docs/advanced.rst +0 -38
  44. forkparser-6.1.0/docs/annotated-atom03.rst +0 -87
  45. forkparser-6.1.0/docs/annotated-atom10.rst +0 -87
  46. forkparser-6.1.0/docs/annotated-examples.rst +0 -14
  47. forkparser-6.1.0/docs/annotated-rss10.rst +0 -55
  48. forkparser-6.1.0/docs/annotated-rss20-dc.rst +0 -54
  49. forkparser-6.1.0/docs/annotated-rss20.rst +0 -68
  50. forkparser-6.1.0/docs/atom-detail.rst +0 -49
  51. forkparser-6.1.0/docs/basic-existence.rst +0 -26
  52. forkparser-6.1.0/docs/basic.rst +0 -14
  53. forkparser-6.1.0/docs/bozo.rst +0 -36
  54. forkparser-6.1.0/docs/changes-26.rst +0 -36
  55. forkparser-6.1.0/docs/changes-27.rst +0 -70
  56. forkparser-6.1.0/docs/changes-30.rst +0 -226
  57. forkparser-6.1.0/docs/changes-301.rst +0 -23
  58. forkparser-6.1.0/docs/changes-31.rst +0 -25
  59. forkparser-6.1.0/docs/changes-32.rst +0 -33
  60. forkparser-6.1.0/docs/changes-33.rst +0 -35
  61. forkparser-6.1.0/docs/changes-40.rst +0 -27
  62. forkparser-6.1.0/docs/changes-401.rst +0 -9
  63. forkparser-6.1.0/docs/changes-402.rst +0 -9
  64. forkparser-6.1.0/docs/changes-41.rst +0 -8
  65. forkparser-6.1.0/docs/changes-42.rst +0 -22
  66. forkparser-6.1.0/docs/changes-early.rst +0 -113
  67. forkparser-6.1.0/docs/character-encoding.rst +0 -124
  68. forkparser-6.1.0/docs/common-atom-elements.rst +0 -130
  69. forkparser-6.1.0/docs/common-rss-elements.rst +0 -81
  70. forkparser-6.1.0/docs/conf.py +0 -19
  71. forkparser-6.1.0/docs/content-normalization.rst +0 -74
  72. forkparser-6.1.0/docs/date-parsing.rst +0 -178
  73. forkparser-6.1.0/docs/history.rst +0 -19
  74. forkparser-6.1.0/docs/html-sanitization.rst +0 -822
  75. forkparser-6.1.0/docs/http-authentication.rst +0 -135
  76. forkparser-6.1.0/docs/http-etag.rst +0 -92
  77. forkparser-6.1.0/docs/http-other.rst +0 -40
  78. forkparser-6.1.0/docs/http-redirect.rst +0 -82
  79. forkparser-6.1.0/docs/http-useragent.rst +0 -57
  80. forkparser-6.1.0/docs/http.rst +0 -11
  81. forkparser-6.1.0/docs/index.rst +0 -24
  82. forkparser-6.1.0/docs/introduction.rst +0 -78
  83. forkparser-6.1.0/docs/license.rst +0 -28
  84. forkparser-6.1.0/docs/namespace-handling.rst +0 -137
  85. forkparser-6.1.0/docs/reference-bozo.rst +0 -18
  86. forkparser-6.1.0/docs/reference-bozo_exception.rst +0 -10
  87. forkparser-6.1.0/docs/reference-encoding.rst +0 -16
  88. forkparser-6.1.0/docs/reference-entry-author.rst +0 -20
  89. forkparser-6.1.0/docs/reference-entry-author_detail.rst +0 -48
  90. forkparser-6.1.0/docs/reference-entry-comments.rst +0 -14
  91. forkparser-6.1.0/docs/reference-entry-content.rst +0 -103
  92. forkparser-6.1.0/docs/reference-entry-contributors.rst +0 -39
  93. forkparser-6.1.0/docs/reference-entry-created.rst +0 -22
  94. forkparser-6.1.0/docs/reference-entry-created_parsed.rst +0 -19
  95. forkparser-6.1.0/docs/reference-entry-enclosures.rst +0 -47
  96. forkparser-6.1.0/docs/reference-entry-expired.rst +0 -24
  97. forkparser-6.1.0/docs/reference-entry-expired_parsed.rst +0 -20
  98. forkparser-6.1.0/docs/reference-entry-id.rst +0 -17
  99. forkparser-6.1.0/docs/reference-entry-license.rst +0 -16
  100. forkparser-6.1.0/docs/reference-entry-link.rst +0 -33
  101. forkparser-6.1.0/docs/reference-entry-links.rst +0 -67
  102. forkparser-6.1.0/docs/reference-entry-published.rst +0 -24
  103. forkparser-6.1.0/docs/reference-entry-published_parsed.rst +0 -21
  104. forkparser-6.1.0/docs/reference-entry-publisher.rst +0 -18
  105. forkparser-6.1.0/docs/reference-entry-publisher_detail.rst +0 -42
  106. forkparser-6.1.0/docs/reference-entry-source.rst +0 -482
  107. forkparser-6.1.0/docs/reference-entry-summary.rst +0 -43
  108. forkparser-6.1.0/docs/reference-entry-summary_detail.rst +0 -101
  109. forkparser-6.1.0/docs/reference-entry-tags.rst +0 -46
  110. forkparser-6.1.0/docs/reference-entry-title.rst +0 -30
  111. forkparser-6.1.0/docs/reference-entry-title_detail.rst +0 -98
  112. forkparser-6.1.0/docs/reference-entry-updated.rst +0 -41
  113. forkparser-6.1.0/docs/reference-entry-updated_parsed.rst +0 -38
  114. forkparser-6.1.0/docs/reference-entry.rst +0 -18
  115. forkparser-6.1.0/docs/reference-etag.rst +0 -13
  116. forkparser-6.1.0/docs/reference-feed-author.rst +0 -23
  117. forkparser-6.1.0/docs/reference-feed-author_detail.rst +0 -51
  118. forkparser-6.1.0/docs/reference-feed-cloud.rst +0 -65
  119. forkparser-6.1.0/docs/reference-feed-contributors.rst +0 -35
  120. forkparser-6.1.0/docs/reference-feed-docs.rst +0 -20
  121. forkparser-6.1.0/docs/reference-feed-errorreportsto.rst +0 -10
  122. forkparser-6.1.0/docs/reference-feed-generator.rst +0 -19
  123. forkparser-6.1.0/docs/reference-feed-generator_detail.rst +0 -48
  124. forkparser-6.1.0/docs/reference-feed-icon.rst +0 -12
  125. forkparser-6.1.0/docs/reference-feed-id.rst +0 -15
  126. forkparser-6.1.0/docs/reference-feed-image.rst +0 -107
  127. forkparser-6.1.0/docs/reference-feed-info-detail.rst +0 -94
  128. forkparser-6.1.0/docs/reference-feed-info.rst +0 -28
  129. forkparser-6.1.0/docs/reference-feed-language.rst +0 -15
  130. forkparser-6.1.0/docs/reference-feed-license.rst +0 -17
  131. forkparser-6.1.0/docs/reference-feed-link.rst +0 -29
  132. forkparser-6.1.0/docs/reference-feed-links.rst +0 -65
  133. forkparser-6.1.0/docs/reference-feed-logo.rst +0 -12
  134. forkparser-6.1.0/docs/reference-feed-published.rst +0 -20
  135. forkparser-6.1.0/docs/reference-feed-published_parsed.rst +0 -16
  136. forkparser-6.1.0/docs/reference-feed-publisher.rst +0 -19
  137. forkparser-6.1.0/docs/reference-feed-publisher_detail.rst +0 -43
  138. forkparser-6.1.0/docs/reference-feed-rights.rst +0 -34
  139. forkparser-6.1.0/docs/reference-feed-rights_detail.rst +0 -99
  140. forkparser-6.1.0/docs/reference-feed-subtitle.rst +0 -31
  141. forkparser-6.1.0/docs/reference-feed-subtitle_detail.rst +0 -100
  142. forkparser-6.1.0/docs/reference-feed-tags.rst +0 -46
  143. forkparser-6.1.0/docs/reference-feed-textinput.rst +0 -75
  144. forkparser-6.1.0/docs/reference-feed-title.rst +0 -30
  145. forkparser-6.1.0/docs/reference-feed-title_detail.rst +0 -101
  146. forkparser-6.1.0/docs/reference-feed-ttl.rst +0 -22
  147. forkparser-6.1.0/docs/reference-feed-updated.rst +0 -41
  148. forkparser-6.1.0/docs/reference-feed-updated_parsed.rst +0 -37
  149. forkparser-6.1.0/docs/reference-feed.rst +0 -17
  150. forkparser-6.1.0/docs/reference-headers.rst +0 -11
  151. forkparser-6.1.0/docs/reference-href.rst +0 -13
  152. forkparser-6.1.0/docs/reference-modified.rst +0 -15
  153. forkparser-6.1.0/docs/reference-namespaces.rst +0 -19
  154. forkparser-6.1.0/docs/reference-status.rst +0 -22
  155. forkparser-6.1.0/docs/reference-version.rst +0 -39
  156. forkparser-6.1.0/docs/reference.rst +0 -10
  157. forkparser-6.1.0/docs/resolving-relative-links.rst +0 -274
  158. forkparser-6.1.0/docs/uncommon-atom.rst +0 -67
  159. forkparser-6.1.0/docs/uncommon-rss.rst +0 -93
  160. forkparser-6.1.0/docs/version-detection.rst +0 -78
  161. forkparser-6.1.0/feedparser/api.py +0 -285
  162. forkparser-6.1.0/feedparser/datetimes/__init__.py +0 -41
  163. forkparser-6.1.0/feedparser/datetimes/asctime.py +0 -32
  164. forkparser-6.1.0/feedparser/datetimes/greek.py +0 -56
  165. forkparser-6.1.0/feedparser/datetimes/hungarian.py +0 -43
  166. forkparser-6.1.0/feedparser/datetimes/iso8601.py +0 -120
  167. forkparser-6.1.0/feedparser/datetimes/korean.py +0 -47
  168. forkparser-6.1.0/feedparser/datetimes/perforce.py +0 -25
  169. forkparser-6.1.0/feedparser/datetimes/rfc822.py +0 -121
  170. forkparser-6.1.0/feedparser/datetimes/w3dtf.py +0 -88
  171. forkparser-6.1.0/feedparser/encodings.py +0 -279
  172. forkparser-6.1.0/feedparser/html.py +0 -213
  173. forkparser-6.1.0/feedparser/http.py +0 -231
  174. forkparser-6.1.0/feedparser/mixin.py +0 -754
  175. forkparser-6.1.0/feedparser/namespaces/_base.py +0 -499
  176. forkparser-6.1.0/feedparser/namespaces/georss.py +0 -264
  177. forkparser-6.1.0/feedparser/namespaces/mediarss.py +0 -142
  178. forkparser-6.1.0/feedparser/sanitizer.py +0 -466
  179. forkparser-6.1.0/feedparser/sgml.py +0 -76
  180. forkparser-6.1.0/feedparser/urls.py +0 -131
  181. forkparser-6.1.0/forkparser.egg-info/PKG-INFO +0 -28
  182. forkparser-6.1.0/forkparser.egg-info/SOURCES.txt +0 -2408
  183. forkparser-6.1.0/forkparser.egg-info/dependency_links.txt +0 -1
  184. forkparser-6.1.0/forkparser.egg-info/requires.txt +0 -3
  185. forkparser-6.1.0/forkparser.egg-info/top_level.txt +0 -1
  186. forkparser-6.1.0/setup.cfg +0 -7
  187. forkparser-6.1.0/setup.py +0 -36
  188. forkparser-6.1.0/tests/compression/deflate-no-headers.z +0 -0
  189. forkparser-6.1.0/tests/compression/deflate-not-compressed.z +0 -1
  190. forkparser-6.1.0/tests/compression/deflate.z +0 -0
  191. forkparser-6.1.0/tests/compression/gzip-not-compressed.gz +0 -1
  192. forkparser-6.1.0/tests/compression/gzip-struct-error.gz +0 -0
  193. forkparser-6.1.0/tests/compression/gzip.gz +0 -0
  194. forkparser-6.1.0/tests/encoding/big5.xml +0 -8
  195. forkparser-6.1.0/tests/encoding/bozo_bogus_encoding.xml +0 -7
  196. forkparser-6.1.0/tests/encoding/bozo_double-encoded-html.xml +0 -13
  197. forkparser-6.1.0/tests/encoding/bozo_encoding_mismatch_crash.xml +0 -10
  198. forkparser-6.1.0/tests/encoding/bozo_http_i18n.xml +0 -11
  199. forkparser-6.1.0/tests/encoding/bozo_http_text_plain.xml +0 -8
  200. forkparser-6.1.0/tests/encoding/bozo_http_text_plain_charset.xml +0 -8
  201. forkparser-6.1.0/tests/encoding/bozo_invalid-bytes-with-bom.xml +0 -10
  202. forkparser-6.1.0/tests/encoding/bozo_linenoise.xml +0 -13
  203. forkparser-6.1.0/tests/encoding/csucs4.xml +0 -0
  204. forkparser-6.1.0/tests/encoding/csunicode.xml +0 -0
  205. forkparser-6.1.0/tests/encoding/demoronize-1.xml +0 -13
  206. forkparser-6.1.0/tests/encoding/demoronize-2.xml +0 -13
  207. forkparser-6.1.0/tests/encoding/demoronize-3.xml +0 -13
  208. forkparser-6.1.0/tests/encoding/double-encoded-html.xml +0 -13
  209. forkparser-6.1.0/tests/encoding/encoding_attribute_crash.xml +0 -9
  210. forkparser-6.1.0/tests/encoding/encoding_attribute_crash_2.xml +0 -9
  211. forkparser-6.1.0/tests/encoding/euc-kr-attribute.xml +0 -14
  212. forkparser-6.1.0/tests/encoding/euc-kr-item.xml +0 -14
  213. forkparser-6.1.0/tests/encoding/euc-kr.xml +0 -12
  214. forkparser-6.1.0/tests/encoding/http_application_atom_xml_charset.xml +0 -8
  215. forkparser-6.1.0/tests/encoding/http_application_atom_xml_charset_overrides_encoding.xml +0 -8
  216. forkparser-6.1.0/tests/encoding/http_application_atom_xml_default.xml +0 -8
  217. forkparser-6.1.0/tests/encoding/http_application_atom_xml_encoding.xml +0 -8
  218. forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_charset.xml +0 -9
  219. forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_charset_overrides_encoding.xml +0 -9
  220. forkparser-6.1.0/tests/encoding/http_application_atom_xml_gb2312_encoding.xml +0 -9
  221. forkparser-6.1.0/tests/encoding/http_application_rss_xml_charset.xml +0 -8
  222. forkparser-6.1.0/tests/encoding/http_application_rss_xml_charset_overrides_encoding.xml +0 -8
  223. forkparser-6.1.0/tests/encoding/http_application_rss_xml_default.xml +0 -8
  224. forkparser-6.1.0/tests/encoding/http_application_rss_xml_encoding.xml +0 -8
  225. forkparser-6.1.0/tests/encoding/http_application_xml_charset.xml +0 -8
  226. forkparser-6.1.0/tests/encoding/http_application_xml_charset_overrides_encoding.xml +0 -8
  227. forkparser-6.1.0/tests/encoding/http_application_xml_default.xml +0 -8
  228. forkparser-6.1.0/tests/encoding/http_application_xml_dtd_charset.xml +0 -8
  229. forkparser-6.1.0/tests/encoding/http_application_xml_dtd_charset_overrides_encoding.xml +0 -8
  230. forkparser-6.1.0/tests/encoding/http_application_xml_dtd_default.xml +0 -8
  231. forkparser-6.1.0/tests/encoding/http_application_xml_dtd_encoding.xml +0 -8
  232. forkparser-6.1.0/tests/encoding/http_application_xml_encoding.xml +0 -8
  233. forkparser-6.1.0/tests/encoding/http_application_xml_epe_charset.xml +0 -8
  234. forkparser-6.1.0/tests/encoding/http_application_xml_epe_charset_overrides_encoding.xml +0 -8
  235. forkparser-6.1.0/tests/encoding/http_application_xml_epe_default.xml +0 -8
  236. forkparser-6.1.0/tests/encoding/http_application_xml_epe_encoding.xml +0 -8
  237. forkparser-6.1.0/tests/encoding/http_encoding_attribute_crash.xml +0 -13
  238. forkparser-6.1.0/tests/encoding/http_i18n.xml +0 -13
  239. forkparser-6.1.0/tests/encoding/http_text_atom_xml_charset.xml +0 -8
  240. forkparser-6.1.0/tests/encoding/http_text_atom_xml_charset_overrides_encoding.xml +0 -8
  241. forkparser-6.1.0/tests/encoding/http_text_atom_xml_default.xml +0 -8
  242. forkparser-6.1.0/tests/encoding/http_text_atom_xml_encoding.xml +0 -8
  243. forkparser-6.1.0/tests/encoding/http_text_rss_xml_charset.xml +0 -8
  244. forkparser-6.1.0/tests/encoding/http_text_rss_xml_charset_overrides_encoding.xml +0 -8
  245. forkparser-6.1.0/tests/encoding/http_text_rss_xml_default.xml +0 -8
  246. forkparser-6.1.0/tests/encoding/http_text_rss_xml_encoding.xml +0 -8
  247. forkparser-6.1.0/tests/encoding/http_text_xml_bogus_charset.xml +0 -8
  248. forkparser-6.1.0/tests/encoding/http_text_xml_bogus_param.xml +0 -8
  249. forkparser-6.1.0/tests/encoding/http_text_xml_charset.xml +0 -8
  250. forkparser-6.1.0/tests/encoding/http_text_xml_charset_2.xml +0 -16
  251. forkparser-6.1.0/tests/encoding/http_text_xml_charset_overrides_encoding.xml +0 -8
  252. forkparser-6.1.0/tests/encoding/http_text_xml_charset_overrides_encoding_2.xml +0 -17
  253. forkparser-6.1.0/tests/encoding/http_text_xml_default.xml +0 -8
  254. forkparser-6.1.0/tests/encoding/http_text_xml_epe_charset.xml +0 -8
  255. forkparser-6.1.0/tests/encoding/http_text_xml_epe_charset_overrides_encoding.xml +0 -8
  256. forkparser-6.1.0/tests/encoding/http_text_xml_epe_default.xml +0 -8
  257. forkparser-6.1.0/tests/encoding/http_text_xml_epe_encoding.xml +0 -8
  258. forkparser-6.1.0/tests/encoding/http_text_xml_qs.xml +0 -8
  259. forkparser-6.1.0/tests/encoding/iso-10646-ucs-2.xml +0 -0
  260. forkparser-6.1.0/tests/encoding/iso-10646-ucs-4.xml +0 -0
  261. forkparser-6.1.0/tests/encoding/no_content_type_default.xml +0 -7
  262. forkparser-6.1.0/tests/encoding/no_content_type_encoding.xml +0 -7
  263. forkparser-6.1.0/tests/encoding/u16.xml +0 -0
  264. forkparser-6.1.0/tests/encoding/ucs-2.xml +0 -0
  265. forkparser-6.1.0/tests/encoding/ucs-4.xml +0 -0
  266. forkparser-6.1.0/tests/encoding/utf-16be-autodetect.xml +0 -0
  267. forkparser-6.1.0/tests/encoding/utf-16be-bom.xml +0 -0
  268. forkparser-6.1.0/tests/encoding/utf-16be.xml +0 -0
  269. forkparser-6.1.0/tests/encoding/utf-16le-autodetect.xml +0 -0
  270. forkparser-6.1.0/tests/encoding/utf-16le-bom.xml +0 -0
  271. forkparser-6.1.0/tests/encoding/utf-16le.xml +0 -0
  272. forkparser-6.1.0/tests/encoding/utf-32be-autodetect.xml +0 -0
  273. forkparser-6.1.0/tests/encoding/utf-32be-bom.xml +0 -0
  274. forkparser-6.1.0/tests/encoding/utf-32be.xml +0 -0
  275. forkparser-6.1.0/tests/encoding/utf-32le-autodetect.xml +0 -0
  276. forkparser-6.1.0/tests/encoding/utf-32le-bom.xml +0 -0
  277. forkparser-6.1.0/tests/encoding/utf-32le.xml +0 -0
  278. forkparser-6.1.0/tests/encoding/utf-8-bom.xml +0 -8
  279. forkparser-6.1.0/tests/encoding/utf16.xml +0 -0
  280. forkparser-6.1.0/tests/encoding/utf_16.xml +0 -0
  281. forkparser-6.1.0/tests/encoding/utf_32.xml +0 -0
  282. forkparser-6.1.0/tests/encoding/x80_437.xml +0 -9
  283. forkparser-6.1.0/tests/encoding/x80_850.xml +0 -9
  284. forkparser-6.1.0/tests/encoding/x80_852.xml +0 -9
  285. forkparser-6.1.0/tests/encoding/x80_855.xml +0 -9
  286. forkparser-6.1.0/tests/encoding/x80_857.xml +0 -9
  287. forkparser-6.1.0/tests/encoding/x80_860.xml +0 -9
  288. forkparser-6.1.0/tests/encoding/x80_861.xml +0 -9
  289. forkparser-6.1.0/tests/encoding/x80_862.xml +0 -9
  290. forkparser-6.1.0/tests/encoding/x80_863.xml +0 -9
  291. forkparser-6.1.0/tests/encoding/x80_865.xml +0 -9
  292. forkparser-6.1.0/tests/encoding/x80_866.xml +0 -9
  293. forkparser-6.1.0/tests/encoding/x80_cp037.xml +0 -1
  294. forkparser-6.1.0/tests/encoding/x80_cp1125.xml +0 -9
  295. forkparser-6.1.0/tests/encoding/x80_cp1250.xml +0 -9
  296. forkparser-6.1.0/tests/encoding/x80_cp1251.xml +0 -9
  297. forkparser-6.1.0/tests/encoding/x80_cp1252.xml +0 -9
  298. forkparser-6.1.0/tests/encoding/x80_cp1253.xml +0 -9
  299. forkparser-6.1.0/tests/encoding/x80_cp1254.xml +0 -9
  300. forkparser-6.1.0/tests/encoding/x80_cp1255.xml +0 -9
  301. forkparser-6.1.0/tests/encoding/x80_cp1256.xml +0 -9
  302. forkparser-6.1.0/tests/encoding/x80_cp1257.xml +0 -9
  303. forkparser-6.1.0/tests/encoding/x80_cp1258.xml +0 -9
  304. forkparser-6.1.0/tests/encoding/x80_cp437.xml +0 -9
  305. forkparser-6.1.0/tests/encoding/x80_cp500.xml +0 -1
  306. forkparser-6.1.0/tests/encoding/x80_cp737.xml +0 -9
  307. forkparser-6.1.0/tests/encoding/x80_cp775.xml +0 -9
  308. forkparser-6.1.0/tests/encoding/x80_cp850.xml +0 -9
  309. forkparser-6.1.0/tests/encoding/x80_cp852.xml +0 -9
  310. forkparser-6.1.0/tests/encoding/x80_cp855.xml +0 -9
  311. forkparser-6.1.0/tests/encoding/x80_cp856.xml +0 -9
  312. forkparser-6.1.0/tests/encoding/x80_cp857.xml +0 -9
  313. forkparser-6.1.0/tests/encoding/x80_cp860.xml +0 -9
  314. forkparser-6.1.0/tests/encoding/x80_cp861.xml +0 -9
  315. forkparser-6.1.0/tests/encoding/x80_cp862.xml +0 -9
  316. forkparser-6.1.0/tests/encoding/x80_cp863.xml +0 -9
  317. forkparser-6.1.0/tests/encoding/x80_cp864.xml +0 -9
  318. forkparser-6.1.0/tests/encoding/x80_cp865.xml +0 -9
  319. forkparser-6.1.0/tests/encoding/x80_cp866.xml +0 -9
  320. forkparser-6.1.0/tests/encoding/x80_cp874.xml +0 -9
  321. forkparser-6.1.0/tests/encoding/x80_cp875.xml +0 -1
  322. forkparser-6.1.0/tests/encoding/x80_cp_is.xml +0 -9
  323. forkparser-6.1.0/tests/encoding/x80_csibm037.xml +0 -1
  324. forkparser-6.1.0/tests/encoding/x80_csibm500.xml +0 -1
  325. forkparser-6.1.0/tests/encoding/x80_csibm855.xml +0 -9
  326. forkparser-6.1.0/tests/encoding/x80_csibm857.xml +0 -9
  327. forkparser-6.1.0/tests/encoding/x80_csibm860.xml +0 -9
  328. forkparser-6.1.0/tests/encoding/x80_csibm861.xml +0 -9
  329. forkparser-6.1.0/tests/encoding/x80_csibm863.xml +0 -9
  330. forkparser-6.1.0/tests/encoding/x80_csibm864.xml +0 -9
  331. forkparser-6.1.0/tests/encoding/x80_csibm865.xml +0 -9
  332. forkparser-6.1.0/tests/encoding/x80_csibm866.xml +0 -9
  333. forkparser-6.1.0/tests/encoding/x80_cskoi8r.xml +0 -9
  334. forkparser-6.1.0/tests/encoding/x80_csmacintosh.xml +0 -9
  335. forkparser-6.1.0/tests/encoding/x80_cspc775baltic.xml +0 -9
  336. forkparser-6.1.0/tests/encoding/x80_cspc850multilingual.xml +0 -9
  337. forkparser-6.1.0/tests/encoding/x80_cspc862latinhebrew.xml +0 -9
  338. forkparser-6.1.0/tests/encoding/x80_cspc8codepage437.xml +0 -9
  339. forkparser-6.1.0/tests/encoding/x80_cspcp852.xml +0 -9
  340. forkparser-6.1.0/tests/encoding/x80_dbcs.xml +0 -9
  341. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-be.xml +0 -1
  342. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-ca.xml +0 -1
  343. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-ch.xml +0 -1
  344. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-nl.xml +0 -1
  345. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-us.xml +0 -1
  346. forkparser-6.1.0/tests/encoding/x80_ebcdic-cp-wt.xml +0 -1
  347. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_be.xml +0 -1
  348. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_ca.xml +0 -1
  349. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_ch.xml +0 -1
  350. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_nl.xml +0 -1
  351. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_us.xml +0 -1
  352. forkparser-6.1.0/tests/encoding/x80_ebcdic_cp_wt.xml +0 -1
  353. forkparser-6.1.0/tests/encoding/x80_ibm037.xml +0 -1
  354. forkparser-6.1.0/tests/encoding/x80_ibm039.xml +0 -1
  355. forkparser-6.1.0/tests/encoding/x80_ibm1140.xml +0 -1
  356. forkparser-6.1.0/tests/encoding/x80_ibm437.xml +0 -9
  357. forkparser-6.1.0/tests/encoding/x80_ibm500.xml +0 -1
  358. forkparser-6.1.0/tests/encoding/x80_ibm775.xml +0 -9
  359. forkparser-6.1.0/tests/encoding/x80_ibm850.xml +0 -9
  360. forkparser-6.1.0/tests/encoding/x80_ibm852.xml +0 -9
  361. forkparser-6.1.0/tests/encoding/x80_ibm855.xml +0 -9
  362. forkparser-6.1.0/tests/encoding/x80_ibm857.xml +0 -9
  363. forkparser-6.1.0/tests/encoding/x80_ibm860.xml +0 -9
  364. forkparser-6.1.0/tests/encoding/x80_ibm861.xml +0 -9
  365. forkparser-6.1.0/tests/encoding/x80_ibm862.xml +0 -9
  366. forkparser-6.1.0/tests/encoding/x80_ibm863.xml +0 -9
  367. forkparser-6.1.0/tests/encoding/x80_ibm864.xml +0 -9
  368. forkparser-6.1.0/tests/encoding/x80_ibm865.xml +0 -9
  369. forkparser-6.1.0/tests/encoding/x80_ibm866.xml +0 -9
  370. forkparser-6.1.0/tests/encoding/x80_koi8-r.xml +0 -9
  371. forkparser-6.1.0/tests/encoding/x80_koi8-t.xml +0 -9
  372. forkparser-6.1.0/tests/encoding/x80_koi8-u.xml +0 -9
  373. forkparser-6.1.0/tests/encoding/x80_mac-cyrillic.xml +0 -9
  374. forkparser-6.1.0/tests/encoding/x80_mac.xml +0 -9
  375. forkparser-6.1.0/tests/encoding/x80_maccentraleurope.xml +0 -9
  376. forkparser-6.1.0/tests/encoding/x80_maccyrillic.xml +0 -9
  377. forkparser-6.1.0/tests/encoding/x80_macgreek.xml +0 -9
  378. forkparser-6.1.0/tests/encoding/x80_maciceland.xml +0 -9
  379. forkparser-6.1.0/tests/encoding/x80_macintosh.xml +0 -9
  380. forkparser-6.1.0/tests/encoding/x80_maclatin2.xml +0 -9
  381. forkparser-6.1.0/tests/encoding/x80_macroman.xml +0 -9
  382. forkparser-6.1.0/tests/encoding/x80_macturkish.xml +0 -9
  383. forkparser-6.1.0/tests/encoding/x80_ms-ansi.xml +0 -9
  384. forkparser-6.1.0/tests/encoding/x80_ms-arab.xml +0 -9
  385. forkparser-6.1.0/tests/encoding/x80_ms-cyrl.xml +0 -9
  386. forkparser-6.1.0/tests/encoding/x80_ms-ee.xml +0 -9
  387. forkparser-6.1.0/tests/encoding/x80_ms-greek.xml +0 -9
  388. forkparser-6.1.0/tests/encoding/x80_ms-hebr.xml +0 -9
  389. forkparser-6.1.0/tests/encoding/x80_ms-turk.xml +0 -9
  390. forkparser-6.1.0/tests/encoding/x80_tcvn-5712.xml +0 -9
  391. forkparser-6.1.0/tests/encoding/x80_tcvn.xml +0 -9
  392. forkparser-6.1.0/tests/encoding/x80_tcvn5712-1.xml +0 -9
  393. forkparser-6.1.0/tests/encoding/x80_viscii.xml +0 -9
  394. forkparser-6.1.0/tests/encoding/x80_winbaltrim.xml +0 -9
  395. forkparser-6.1.0/tests/encoding/x80_windows-1250.xml +0 -9
  396. forkparser-6.1.0/tests/encoding/x80_windows-1251.xml +0 -9
  397. forkparser-6.1.0/tests/encoding/x80_windows-1252.xml +0 -9
  398. forkparser-6.1.0/tests/encoding/x80_windows-1253.xml +0 -9
  399. forkparser-6.1.0/tests/encoding/x80_windows-1254.xml +0 -9
  400. forkparser-6.1.0/tests/encoding/x80_windows-1255.xml +0 -9
  401. forkparser-6.1.0/tests/encoding/x80_windows-1256.xml +0 -9
  402. forkparser-6.1.0/tests/encoding/x80_windows-1257.xml +0 -9
  403. forkparser-6.1.0/tests/encoding/x80_windows-1258.xml +0 -9
  404. forkparser-6.1.0/tests/encoding/x80_windows_1250.xml +0 -9
  405. forkparser-6.1.0/tests/encoding/x80_windows_1251.xml +0 -9
  406. forkparser-6.1.0/tests/encoding/x80_windows_1252.xml +0 -9
  407. forkparser-6.1.0/tests/encoding/x80_windows_1253.xml +0 -9
  408. forkparser-6.1.0/tests/encoding/x80_windows_1254.xml +0 -9
  409. forkparser-6.1.0/tests/encoding/x80_windows_1255.xml +0 -9
  410. forkparser-6.1.0/tests/encoding/x80_windows_1256.xml +0 -9
  411. forkparser-6.1.0/tests/encoding/x80_windows_1257.xml +0 -9
  412. forkparser-6.1.0/tests/encoding/x80_windows_1258.xml +0 -9
  413. forkparser-6.1.0/tests/entities/160.xml +0 -9
  414. forkparser-6.1.0/tests/entities/732.xml +0 -9
  415. forkparser-6.1.0/tests/entities/8216.xml +0 -9
  416. forkparser-6.1.0/tests/entities/8217.xml +0 -9
  417. forkparser-6.1.0/tests/entities/8220.xml +0 -9
  418. forkparser-6.1.0/tests/entities/8221.xml +0 -9
  419. forkparser-6.1.0/tests/entities/9830.xml +0 -9
  420. forkparser-6.1.0/tests/entities/aacute.xml +0 -9
  421. forkparser-6.1.0/tests/entities/acirc.xml +0 -9
  422. forkparser-6.1.0/tests/entities/acute.xml +0 -9
  423. forkparser-6.1.0/tests/entities/aelig.xml +0 -9
  424. forkparser-6.1.0/tests/entities/agrave.xml +0 -9
  425. forkparser-6.1.0/tests/entities/alefsym.xml +0 -9
  426. forkparser-6.1.0/tests/entities/alpha.xml +0 -9
  427. forkparser-6.1.0/tests/entities/and.xml +0 -9
  428. forkparser-6.1.0/tests/entities/ang.xml +0 -9
  429. forkparser-6.1.0/tests/entities/aring.xml +0 -9
  430. forkparser-6.1.0/tests/entities/asymp.xml +0 -9
  431. forkparser-6.1.0/tests/entities/atilde.xml +0 -9
  432. forkparser-6.1.0/tests/entities/attr_amp.xml +0 -7
  433. forkparser-6.1.0/tests/entities/auml.xml +0 -9
  434. forkparser-6.1.0/tests/entities/bdquo.xml +0 -9
  435. forkparser-6.1.0/tests/entities/beta.xml +0 -9
  436. forkparser-6.1.0/tests/entities/brvbar.xml +0 -9
  437. forkparser-6.1.0/tests/entities/bull.xml +0 -9
  438. forkparser-6.1.0/tests/entities/cap.xml +0 -9
  439. forkparser-6.1.0/tests/entities/ccedil.xml +0 -9
  440. forkparser-6.1.0/tests/entities/cedil.xml +0 -9
  441. forkparser-6.1.0/tests/entities/cent.xml +0 -9
  442. forkparser-6.1.0/tests/entities/chi.xml +0 -9
  443. forkparser-6.1.0/tests/entities/circ.xml +0 -9
  444. forkparser-6.1.0/tests/entities/clubs.xml +0 -9
  445. forkparser-6.1.0/tests/entities/cong.xml +0 -9
  446. forkparser-6.1.0/tests/entities/copy.xml +0 -9
  447. forkparser-6.1.0/tests/entities/crarr.xml +0 -9
  448. forkparser-6.1.0/tests/entities/cup.xml +0 -9
  449. forkparser-6.1.0/tests/entities/curren.xml +0 -9
  450. forkparser-6.1.0/tests/entities/dagger.xml +0 -9
  451. forkparser-6.1.0/tests/entities/darr.xml +0 -9
  452. forkparser-6.1.0/tests/entities/deg.xml +0 -9
  453. forkparser-6.1.0/tests/entities/delta.xml +0 -9
  454. forkparser-6.1.0/tests/entities/diams.xml +0 -9
  455. forkparser-6.1.0/tests/entities/divide.xml +0 -9
  456. forkparser-6.1.0/tests/entities/doesnotexist.xml +0 -9
  457. forkparser-6.1.0/tests/entities/eacute.xml +0 -9
  458. forkparser-6.1.0/tests/entities/ecirc.xml +0 -9
  459. forkparser-6.1.0/tests/entities/egrave.xml +0 -9
  460. forkparser-6.1.0/tests/entities/empty.xml +0 -9
  461. forkparser-6.1.0/tests/entities/emsp.xml +0 -9
  462. forkparser-6.1.0/tests/entities/ensp.xml +0 -9
  463. forkparser-6.1.0/tests/entities/epsilon.xml +0 -9
  464. forkparser-6.1.0/tests/entities/equiv.xml +0 -9
  465. forkparser-6.1.0/tests/entities/eta.xml +0 -9
  466. forkparser-6.1.0/tests/entities/eth.xml +0 -9
  467. forkparser-6.1.0/tests/entities/euml.xml +0 -9
  468. forkparser-6.1.0/tests/entities/euro.xml +0 -9
  469. forkparser-6.1.0/tests/entities/exist.xml +0 -9
  470. forkparser-6.1.0/tests/entities/fnof.xml +0 -9
  471. forkparser-6.1.0/tests/entities/forall.xml +0 -9
  472. forkparser-6.1.0/tests/entities/frac12.xml +0 -9
  473. forkparser-6.1.0/tests/entities/frac14.xml +0 -9
  474. forkparser-6.1.0/tests/entities/frac34.xml +0 -9
  475. forkparser-6.1.0/tests/entities/frasl.xml +0 -9
  476. forkparser-6.1.0/tests/entities/gamma.xml +0 -9
  477. forkparser-6.1.0/tests/entities/ge.xml +0 -9
  478. forkparser-6.1.0/tests/entities/hArr.xml +0 -9
  479. forkparser-6.1.0/tests/entities/hearts.xml +0 -9
  480. forkparser-6.1.0/tests/entities/hellip.xml +0 -9
  481. forkparser-6.1.0/tests/entities/hex_entity_x_lowercase.xml +0 -9
  482. forkparser-6.1.0/tests/entities/hex_entity_x_uppercase.xml +0 -9
  483. forkparser-6.1.0/tests/entities/iacute.xml +0 -9
  484. forkparser-6.1.0/tests/entities/icirc.xml +0 -9
  485. forkparser-6.1.0/tests/entities/iexcl.xml +0 -9
  486. forkparser-6.1.0/tests/entities/igrave.xml +0 -9
  487. forkparser-6.1.0/tests/entities/image.xml +0 -9
  488. forkparser-6.1.0/tests/entities/infin.xml +0 -9
  489. forkparser-6.1.0/tests/entities/int.xml +0 -9
  490. forkparser-6.1.0/tests/entities/iota.xml +0 -9
  491. forkparser-6.1.0/tests/entities/iquest.xml +0 -9
  492. forkparser-6.1.0/tests/entities/isin.xml +0 -9
  493. forkparser-6.1.0/tests/entities/iuml.xml +0 -9
  494. forkparser-6.1.0/tests/entities/kappa.xml +0 -9
  495. forkparser-6.1.0/tests/entities/lArr.xml +0 -9
  496. forkparser-6.1.0/tests/entities/lambda.xml +0 -9
  497. forkparser-6.1.0/tests/entities/lang.xml +0 -9
  498. forkparser-6.1.0/tests/entities/laquo.xml +0 -9
  499. forkparser-6.1.0/tests/entities/lceil.xml +0 -9
  500. forkparser-6.1.0/tests/entities/ldquo.xml +0 -9
  501. forkparser-6.1.0/tests/entities/le.xml +0 -9
  502. forkparser-6.1.0/tests/entities/lfloor.xml +0 -9
  503. forkparser-6.1.0/tests/entities/lowast.xml +0 -9
  504. forkparser-6.1.0/tests/entities/loz.xml +0 -9
  505. forkparser-6.1.0/tests/entities/lrm.xml +0 -9
  506. forkparser-6.1.0/tests/entities/lsaquo.xml +0 -9
  507. forkparser-6.1.0/tests/entities/lsquo.xml +0 -9
  508. forkparser-6.1.0/tests/entities/macr.xml +0 -9
  509. forkparser-6.1.0/tests/entities/mdash.xml +0 -9
  510. forkparser-6.1.0/tests/entities/micro.xml +0 -9
  511. forkparser-6.1.0/tests/entities/middot.xml +0 -9
  512. forkparser-6.1.0/tests/entities/minus.xml +0 -9
  513. forkparser-6.1.0/tests/entities/mu.xml +0 -9
  514. forkparser-6.1.0/tests/entities/nabla.xml +0 -9
  515. forkparser-6.1.0/tests/entities/nbsp.xml +0 -9
  516. forkparser-6.1.0/tests/entities/ndash.xml +0 -9
  517. forkparser-6.1.0/tests/entities/ne.xml +0 -9
  518. forkparser-6.1.0/tests/entities/ni.xml +0 -9
  519. forkparser-6.1.0/tests/entities/not.xml +0 -9
  520. forkparser-6.1.0/tests/entities/notin.xml +0 -9
  521. forkparser-6.1.0/tests/entities/nsub.xml +0 -9
  522. forkparser-6.1.0/tests/entities/ntilde.xml +0 -9
  523. forkparser-6.1.0/tests/entities/nu.xml +0 -9
  524. forkparser-6.1.0/tests/entities/oacute.xml +0 -9
  525. forkparser-6.1.0/tests/entities/ocirc.xml +0 -9
  526. forkparser-6.1.0/tests/entities/oelig.xml +0 -9
  527. forkparser-6.1.0/tests/entities/ograve.xml +0 -9
  528. forkparser-6.1.0/tests/entities/oline.xml +0 -9
  529. forkparser-6.1.0/tests/entities/omega.xml +0 -9
  530. forkparser-6.1.0/tests/entities/omicron.xml +0 -9
  531. forkparser-6.1.0/tests/entities/oplus.xml +0 -9
  532. forkparser-6.1.0/tests/entities/or.xml +0 -9
  533. forkparser-6.1.0/tests/entities/ordf.xml +0 -9
  534. forkparser-6.1.0/tests/entities/ordm.xml +0 -9
  535. forkparser-6.1.0/tests/entities/oslash.xml +0 -9
  536. forkparser-6.1.0/tests/entities/otilde.xml +0 -9
  537. forkparser-6.1.0/tests/entities/otimes.xml +0 -9
  538. forkparser-6.1.0/tests/entities/ouml.xml +0 -9
  539. forkparser-6.1.0/tests/entities/para.xml +0 -9
  540. forkparser-6.1.0/tests/entities/part.xml +0 -9
  541. forkparser-6.1.0/tests/entities/permil.xml +0 -9
  542. forkparser-6.1.0/tests/entities/perp.xml +0 -9
  543. forkparser-6.1.0/tests/entities/phi.xml +0 -9
  544. forkparser-6.1.0/tests/entities/pi.xml +0 -9
  545. forkparser-6.1.0/tests/entities/piv.xml +0 -9
  546. forkparser-6.1.0/tests/entities/plusmn.xml +0 -9
  547. forkparser-6.1.0/tests/entities/pound.xml +0 -9
  548. forkparser-6.1.0/tests/entities/prime.xml +0 -9
  549. forkparser-6.1.0/tests/entities/prod.xml +0 -9
  550. forkparser-6.1.0/tests/entities/prop.xml +0 -9
  551. forkparser-6.1.0/tests/entities/psi.xml +0 -9
  552. forkparser-6.1.0/tests/entities/query_variable_entry.xml +0 -11
  553. forkparser-6.1.0/tests/entities/query_variable_feed.xml +0 -9
  554. forkparser-6.1.0/tests/entities/radic.xml +0 -9
  555. forkparser-6.1.0/tests/entities/rang.xml +0 -9
  556. forkparser-6.1.0/tests/entities/raquo.xml +0 -9
  557. forkparser-6.1.0/tests/entities/rarr.xml +0 -9
  558. forkparser-6.1.0/tests/entities/rceil.xml +0 -9
  559. forkparser-6.1.0/tests/entities/rdquo.xml +0 -9
  560. forkparser-6.1.0/tests/entities/real.xml +0 -9
  561. forkparser-6.1.0/tests/entities/reg.xml +0 -9
  562. forkparser-6.1.0/tests/entities/rfloor.xml +0 -9
  563. forkparser-6.1.0/tests/entities/rho.xml +0 -9
  564. forkparser-6.1.0/tests/entities/rlm.xml +0 -9
  565. forkparser-6.1.0/tests/entities/rsaquo.xml +0 -9
  566. forkparser-6.1.0/tests/entities/rsquo.xml +0 -9
  567. forkparser-6.1.0/tests/entities/sbquo.xml +0 -9
  568. forkparser-6.1.0/tests/entities/scaron.xml +0 -9
  569. forkparser-6.1.0/tests/entities/sdot.xml +0 -9
  570. forkparser-6.1.0/tests/entities/sect.xml +0 -9
  571. forkparser-6.1.0/tests/entities/shy.xml +0 -9
  572. forkparser-6.1.0/tests/entities/sigma.xml +0 -9
  573. forkparser-6.1.0/tests/entities/sigmaf.xml +0 -9
  574. forkparser-6.1.0/tests/entities/sim.xml +0 -9
  575. forkparser-6.1.0/tests/entities/spades.xml +0 -9
  576. forkparser-6.1.0/tests/entities/sub.xml +0 -9
  577. forkparser-6.1.0/tests/entities/sube.xml +0 -9
  578. forkparser-6.1.0/tests/entities/sum.xml +0 -9
  579. forkparser-6.1.0/tests/entities/sup.xml +0 -9
  580. forkparser-6.1.0/tests/entities/sup1.xml +0 -9
  581. forkparser-6.1.0/tests/entities/sup2.xml +0 -9
  582. forkparser-6.1.0/tests/entities/sup3.xml +0 -9
  583. forkparser-6.1.0/tests/entities/supe.xml +0 -9
  584. forkparser-6.1.0/tests/entities/szlig.xml +0 -9
  585. forkparser-6.1.0/tests/entities/tau.xml +0 -9
  586. forkparser-6.1.0/tests/entities/there4.xml +0 -9
  587. forkparser-6.1.0/tests/entities/theta.xml +0 -9
  588. forkparser-6.1.0/tests/entities/thetasym.xml +0 -9
  589. forkparser-6.1.0/tests/entities/thinsp.xml +0 -9
  590. forkparser-6.1.0/tests/entities/thorn.xml +0 -9
  591. forkparser-6.1.0/tests/entities/tilde.xml +0 -9
  592. forkparser-6.1.0/tests/entities/times.xml +0 -9
  593. forkparser-6.1.0/tests/entities/trade.xml +0 -9
  594. forkparser-6.1.0/tests/entities/uacute.xml +0 -9
  595. forkparser-6.1.0/tests/entities/uarr.xml +0 -9
  596. forkparser-6.1.0/tests/entities/ucirc.xml +0 -9
  597. forkparser-6.1.0/tests/entities/ugrave.xml +0 -9
  598. forkparser-6.1.0/tests/entities/uml.xml +0 -9
  599. forkparser-6.1.0/tests/entities/upper_AElig.xml +0 -9
  600. forkparser-6.1.0/tests/entities/upper_Aacute.xml +0 -9
  601. forkparser-6.1.0/tests/entities/upper_Acirc.xml +0 -9
  602. forkparser-6.1.0/tests/entities/upper_Agrave.xml +0 -9
  603. forkparser-6.1.0/tests/entities/upper_Alpha.xml +0 -9
  604. forkparser-6.1.0/tests/entities/upper_Aring.xml +0 -9
  605. forkparser-6.1.0/tests/entities/upper_Atilde.xml +0 -9
  606. forkparser-6.1.0/tests/entities/upper_Auml.xml +0 -9
  607. forkparser-6.1.0/tests/entities/upper_Beta.xml +0 -9
  608. forkparser-6.1.0/tests/entities/upper_Ccedil.xml +0 -9
  609. forkparser-6.1.0/tests/entities/upper_Chi.xml +0 -9
  610. forkparser-6.1.0/tests/entities/upper_Dagger.xml +0 -9
  611. forkparser-6.1.0/tests/entities/upper_Delta.xml +0 -9
  612. forkparser-6.1.0/tests/entities/upper_ETH.xml +0 -9
  613. forkparser-6.1.0/tests/entities/upper_Eacute.xml +0 -9
  614. forkparser-6.1.0/tests/entities/upper_Ecirc.xml +0 -9
  615. forkparser-6.1.0/tests/entities/upper_Egrave.xml +0 -9
  616. forkparser-6.1.0/tests/entities/upper_Epsilon.xml +0 -9
  617. forkparser-6.1.0/tests/entities/upper_Eta.xml +0 -9
  618. forkparser-6.1.0/tests/entities/upper_Euml.xml +0 -9
  619. forkparser-6.1.0/tests/entities/upper_Gamma.xml +0 -9
  620. forkparser-6.1.0/tests/entities/upper_Iacute.xml +0 -9
  621. forkparser-6.1.0/tests/entities/upper_Icirc.xml +0 -9
  622. forkparser-6.1.0/tests/entities/upper_Igrave.xml +0 -9
  623. forkparser-6.1.0/tests/entities/upper_Iota.xml +0 -9
  624. forkparser-6.1.0/tests/entities/upper_Iuml.xml +0 -9
  625. forkparser-6.1.0/tests/entities/upper_Kappa.xml +0 -9
  626. forkparser-6.1.0/tests/entities/upper_Lambda.xml +0 -9
  627. forkparser-6.1.0/tests/entities/upper_Mu.xml +0 -9
  628. forkparser-6.1.0/tests/entities/upper_Ntilde.xml +0 -9
  629. forkparser-6.1.0/tests/entities/upper_Nu.xml +0 -9
  630. forkparser-6.1.0/tests/entities/upper_OElig.xml +0 -9
  631. forkparser-6.1.0/tests/entities/upper_Oacute.xml +0 -9
  632. forkparser-6.1.0/tests/entities/upper_Ocirc.xml +0 -9
  633. forkparser-6.1.0/tests/entities/upper_Ograve.xml +0 -9
  634. forkparser-6.1.0/tests/entities/upper_Omega.xml +0 -9
  635. forkparser-6.1.0/tests/entities/upper_Omicron.xml +0 -9
  636. forkparser-6.1.0/tests/entities/upper_Oslash.xml +0 -9
  637. forkparser-6.1.0/tests/entities/upper_Otilde.xml +0 -9
  638. forkparser-6.1.0/tests/entities/upper_Ouml.xml +0 -9
  639. forkparser-6.1.0/tests/entities/upper_Phi.xml +0 -9
  640. forkparser-6.1.0/tests/entities/upper_Pi.xml +0 -9
  641. forkparser-6.1.0/tests/entities/upper_Prime.xml +0 -9
  642. forkparser-6.1.0/tests/entities/upper_Psi.xml +0 -9
  643. forkparser-6.1.0/tests/entities/upper_Rho.xml +0 -9
  644. forkparser-6.1.0/tests/entities/upper_Scaron.xml +0 -9
  645. forkparser-6.1.0/tests/entities/upper_Sigma.xml +0 -9
  646. forkparser-6.1.0/tests/entities/upper_THORN.xml +0 -9
  647. forkparser-6.1.0/tests/entities/upper_Tau.xml +0 -9
  648. forkparser-6.1.0/tests/entities/upper_Theta.xml +0 -9
  649. forkparser-6.1.0/tests/entities/upper_Uacute.xml +0 -9
  650. forkparser-6.1.0/tests/entities/upper_Ucirc.xml +0 -9
  651. forkparser-6.1.0/tests/entities/upper_Ugrave.xml +0 -9
  652. forkparser-6.1.0/tests/entities/upper_Upsilon.xml +0 -9
  653. forkparser-6.1.0/tests/entities/upper_Uuml.xml +0 -9
  654. forkparser-6.1.0/tests/entities/upper_Xi.xml +0 -9
  655. forkparser-6.1.0/tests/entities/upper_Yacute.xml +0 -9
  656. forkparser-6.1.0/tests/entities/upper_Yuml.xml +0 -9
  657. forkparser-6.1.0/tests/entities/upper_Zeta.xml +0 -9
  658. forkparser-6.1.0/tests/entities/upsih.xml +0 -9
  659. forkparser-6.1.0/tests/entities/upsilon.xml +0 -9
  660. forkparser-6.1.0/tests/entities/uuml.xml +0 -9
  661. forkparser-6.1.0/tests/entities/weierp.xml +0 -9
  662. forkparser-6.1.0/tests/entities/xi.xml +0 -9
  663. forkparser-6.1.0/tests/entities/yacute.xml +0 -9
  664. forkparser-6.1.0/tests/entities/yen.xml +0 -9
  665. forkparser-6.1.0/tests/entities/yuml.xml +0 -9
  666. forkparser-6.1.0/tests/entities/zeta.xml +0 -9
  667. forkparser-6.1.0/tests/entities/zwj.xml +0 -9
  668. forkparser-6.1.0/tests/entities/zwnj.xml +0 -9
  669. forkparser-6.1.0/tests/http/http_redirect_to_304.xml +0 -7
  670. forkparser-6.1.0/tests/http/http_status_301.xml +0 -7
  671. forkparser-6.1.0/tests/http/http_status_302.xml +0 -7
  672. forkparser-6.1.0/tests/http/http_status_303.xml +0 -7
  673. forkparser-6.1.0/tests/http/http_status_304.xml +0 -9
  674. forkparser-6.1.0/tests/http/http_status_307.xml +0 -7
  675. forkparser-6.1.0/tests/http/http_status_404.xml +0 -6
  676. forkparser-6.1.0/tests/http/target.xml +0 -7
  677. forkparser-6.1.0/tests/illformed/aaa_illformed.xml +0 -6
  678. forkparser-6.1.0/tests/illformed/always_strip_doctype.xml +0 -10
  679. forkparser-6.1.0/tests/illformed/chardet/big5.xml +0 -8
  680. forkparser-6.1.0/tests/illformed/chardet/eucjp.xml +0 -13
  681. forkparser-6.1.0/tests/illformed/chardet/euckr.xml +0 -13
  682. forkparser-6.1.0/tests/illformed/chardet/gb2312.xml +0 -12
  683. forkparser-6.1.0/tests/illformed/chardet/koi8r.xml +0 -14
  684. forkparser-6.1.0/tests/illformed/chardet/shiftjis.xml +0 -11
  685. forkparser-6.1.0/tests/illformed/chardet/tis620.xml +0 -12
  686. forkparser-6.1.0/tests/illformed/chardet/windows1255.xml +0 -14
  687. forkparser-6.1.0/tests/illformed/geo/georss_point_no_coords.xml +0 -12
  688. forkparser-6.1.0/tests/illformed/geo/georss_polygon_insufficient_coords.xml +0 -12
  689. forkparser-6.1.0/tests/illformed/http_high_bit_date.xml +0 -12
  690. forkparser-6.1.0/tests/illformed/rdf_channel_empty_textinput.xml +0 -26
  691. forkparser-6.1.0/tests/illformed/rss_empty_document.xml +0 -4
  692. forkparser-6.1.0/tests/illformed/rss_incomplete_cdata.xml +0 -13
  693. forkparser-6.1.0/tests/illformed/rss_item_link_corrupted_ampersands.xml +0 -12
  694. forkparser-6.1.0/tests/illformed/undeclared_namespace.xml +0 -10
  695. forkparser-6.1.0/tests/runtests.py +0 -880
  696. forkparser-6.1.0/tests/wellformed/amp/amp01.xml +0 -9
  697. forkparser-6.1.0/tests/wellformed/amp/amp02.xml +0 -9
  698. forkparser-6.1.0/tests/wellformed/amp/amp03.xml +0 -9
  699. forkparser-6.1.0/tests/wellformed/amp/amp04.xml +0 -9
  700. forkparser-6.1.0/tests/wellformed/amp/amp05.xml +0 -9
  701. forkparser-6.1.0/tests/wellformed/amp/amp06.xml +0 -9
  702. forkparser-6.1.0/tests/wellformed/amp/amp07.xml +0 -9
  703. forkparser-6.1.0/tests/wellformed/amp/amp08.xml +0 -9
  704. forkparser-6.1.0/tests/wellformed/amp/amp09.xml +0 -9
  705. forkparser-6.1.0/tests/wellformed/amp/amp10.xml +0 -9
  706. forkparser-6.1.0/tests/wellformed/amp/amp11.xml +0 -9
  707. forkparser-6.1.0/tests/wellformed/amp/amp12.xml +0 -9
  708. forkparser-6.1.0/tests/wellformed/amp/amp13.xml +0 -9
  709. forkparser-6.1.0/tests/wellformed/amp/amp14.xml +0 -9
  710. forkparser-6.1.0/tests/wellformed/amp/amp15.xml +0 -9
  711. forkparser-6.1.0/tests/wellformed/amp/amp16.xml +0 -9
  712. forkparser-6.1.0/tests/wellformed/amp/amp17.xml +0 -9
  713. forkparser-6.1.0/tests/wellformed/amp/amp18.xml +0 -9
  714. forkparser-6.1.0/tests/wellformed/amp/amp19.xml +0 -9
  715. forkparser-6.1.0/tests/wellformed/amp/amp20.xml +0 -9
  716. forkparser-6.1.0/tests/wellformed/amp/amp21.xml +0 -9
  717. forkparser-6.1.0/tests/wellformed/amp/amp22.xml +0 -9
  718. forkparser-6.1.0/tests/wellformed/amp/amp23.xml +0 -9
  719. forkparser-6.1.0/tests/wellformed/amp/amp24.xml +0 -9
  720. forkparser-6.1.0/tests/wellformed/amp/amp25.xml +0 -9
  721. forkparser-6.1.0/tests/wellformed/amp/amp26.xml +0 -9
  722. forkparser-6.1.0/tests/wellformed/amp/amp27.xml +0 -9
  723. forkparser-6.1.0/tests/wellformed/amp/amp28.xml +0 -9
  724. forkparser-6.1.0/tests/wellformed/amp/amp29.xml +0 -9
  725. forkparser-6.1.0/tests/wellformed/amp/amp30.xml +0 -9
  726. forkparser-6.1.0/tests/wellformed/amp/amp31.xml +0 -9
  727. forkparser-6.1.0/tests/wellformed/amp/amp32.xml +0 -9
  728. forkparser-6.1.0/tests/wellformed/amp/amp33.xml +0 -9
  729. forkparser-6.1.0/tests/wellformed/amp/amp34.xml +0 -9
  730. forkparser-6.1.0/tests/wellformed/amp/amp35.xml +0 -9
  731. forkparser-6.1.0/tests/wellformed/amp/amp36.xml +0 -9
  732. forkparser-6.1.0/tests/wellformed/amp/amp37.xml +0 -9
  733. forkparser-6.1.0/tests/wellformed/amp/amp38.xml +0 -9
  734. forkparser-6.1.0/tests/wellformed/amp/amp39.xml +0 -9
  735. forkparser-6.1.0/tests/wellformed/amp/amp40.xml +0 -9
  736. forkparser-6.1.0/tests/wellformed/amp/amp41.xml +0 -9
  737. forkparser-6.1.0/tests/wellformed/amp/amp42.xml +0 -9
  738. forkparser-6.1.0/tests/wellformed/amp/amp43.xml +0 -9
  739. forkparser-6.1.0/tests/wellformed/amp/amp44.xml +0 -9
  740. forkparser-6.1.0/tests/wellformed/amp/amp45.xml +0 -9
  741. forkparser-6.1.0/tests/wellformed/amp/amp46.xml +0 -9
  742. forkparser-6.1.0/tests/wellformed/amp/amp47.xml +0 -9
  743. forkparser-6.1.0/tests/wellformed/amp/amp48.xml +0 -9
  744. forkparser-6.1.0/tests/wellformed/amp/amp49.xml +0 -9
  745. forkparser-6.1.0/tests/wellformed/amp/amp50.xml +0 -9
  746. forkparser-6.1.0/tests/wellformed/amp/amp51.xml +0 -9
  747. forkparser-6.1.0/tests/wellformed/amp/amp52.xml +0 -9
  748. forkparser-6.1.0/tests/wellformed/amp/amp53.xml +0 -9
  749. forkparser-6.1.0/tests/wellformed/amp/amp54.xml +0 -9
  750. forkparser-6.1.0/tests/wellformed/amp/amp55.xml +0 -9
  751. forkparser-6.1.0/tests/wellformed/amp/amp56.xml +0 -9
  752. forkparser-6.1.0/tests/wellformed/amp/amp57.xml +0 -9
  753. forkparser-6.1.0/tests/wellformed/amp/amp58.xml +0 -9
  754. forkparser-6.1.0/tests/wellformed/amp/amp59.xml +0 -9
  755. forkparser-6.1.0/tests/wellformed/amp/amp60.xml +0 -9
  756. forkparser-6.1.0/tests/wellformed/amp/amp61.xml +0 -9
  757. forkparser-6.1.0/tests/wellformed/amp/amp62.xml +0 -9
  758. forkparser-6.1.0/tests/wellformed/amp/amp63.xml +0 -9
  759. forkparser-6.1.0/tests/wellformed/amp/amp64.xml +0 -9
  760. forkparser-6.1.0/tests/wellformed/amp/attr01.xml +0 -9
  761. forkparser-6.1.0/tests/wellformed/amp/attr02.xml +0 -9
  762. forkparser-6.1.0/tests/wellformed/amp/attr03.xml +0 -9
  763. forkparser-6.1.0/tests/wellformed/amp/attr04.xml +0 -9
  764. forkparser-6.1.0/tests/wellformed/amp/attr05.xml +0 -9
  765. forkparser-6.1.0/tests/wellformed/amp/attr06.xml +0 -9
  766. forkparser-6.1.0/tests/wellformed/atom/atom_namespace_1.xml +0 -7
  767. forkparser-6.1.0/tests/wellformed/atom/atom_namespace_2.xml +0 -7
  768. forkparser-6.1.0/tests/wellformed/atom/atom_namespace_3.xml +0 -7
  769. forkparser-6.1.0/tests/wellformed/atom/atom_namespace_4.xml +0 -7
  770. forkparser-6.1.0/tests/wellformed/atom/atom_namespace_5.xml +0 -7
  771. forkparser-6.1.0/tests/wellformed/atom/entry_author_email.xml +0 -13
  772. forkparser-6.1.0/tests/wellformed/atom/entry_author_homepage.xml +0 -13
  773. forkparser-6.1.0/tests/wellformed/atom/entry_author_map_author.xml +0 -13
  774. forkparser-6.1.0/tests/wellformed/atom/entry_author_map_author_2.xml +0 -12
  775. forkparser-6.1.0/tests/wellformed/atom/entry_author_name.xml +0 -13
  776. forkparser-6.1.0/tests/wellformed/atom/entry_author_uri.xml +0 -13
  777. forkparser-6.1.0/tests/wellformed/atom/entry_author_url.xml +0 -13
  778. forkparser-6.1.0/tests/wellformed/atom/entry_content_mode_base64.xml +0 -11
  779. forkparser-6.1.0/tests/wellformed/atom/entry_content_mode_escaped.xml +0 -9
  780. forkparser-6.1.0/tests/wellformed/atom/entry_content_type.xml +0 -9
  781. forkparser-6.1.0/tests/wellformed/atom/entry_content_type_text_plain.xml +0 -9
  782. forkparser-6.1.0/tests/wellformed/atom/entry_content_value.xml +0 -9
  783. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_email.xml +0 -13
  784. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_homepage.xml +0 -13
  785. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_multiple.xml +0 -18
  786. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_name.xml +0 -13
  787. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_uri.xml +0 -13
  788. forkparser-6.1.0/tests/wellformed/atom/entry_contributor_url.xml +0 -13
  789. forkparser-6.1.0/tests/wellformed/atom/entry_created.xml +0 -9
  790. forkparser-6.1.0/tests/wellformed/atom/entry_created_multiple_values.xml +0 -10
  791. forkparser-6.1.0/tests/wellformed/atom/entry_created_parsed.xml +0 -9
  792. forkparser-6.1.0/tests/wellformed/atom/entry_id.xml +0 -9
  793. forkparser-6.1.0/tests/wellformed/atom/entry_id_map_guid.xml +0 -9
  794. forkparser-6.1.0/tests/wellformed/atom/entry_issued.xml +0 -9
  795. forkparser-6.1.0/tests/wellformed/atom/entry_issued_parsed.xml +0 -9
  796. forkparser-6.1.0/tests/wellformed/atom/entry_link_alternate_map_link.xml +0 -9
  797. forkparser-6.1.0/tests/wellformed/atom/entry_link_alternate_map_link_2.xml +0 -9
  798. forkparser-6.1.0/tests/wellformed/atom/entry_link_href.xml +0 -9
  799. forkparser-6.1.0/tests/wellformed/atom/entry_link_multiple.xml +0 -10
  800. forkparser-6.1.0/tests/wellformed/atom/entry_link_rel.xml +0 -9
  801. forkparser-6.1.0/tests/wellformed/atom/entry_link_title.xml +0 -9
  802. forkparser-6.1.0/tests/wellformed/atom/entry_link_type.xml +0 -9
  803. forkparser-6.1.0/tests/wellformed/atom/entry_modified.xml +0 -9
  804. forkparser-6.1.0/tests/wellformed/atom/entry_modified_map_updated_parsed.xml +0 -9
  805. forkparser-6.1.0/tests/wellformed/atom/entry_published_parsed.xml +0 -9
  806. forkparser-6.1.0/tests/wellformed/atom/entry_published_parsed_date_overwriting.xml +0 -10
  807. forkparser-6.1.0/tests/wellformed/atom/entry_source_updated_parsed.xml +0 -11
  808. forkparser-6.1.0/tests/wellformed/atom/entry_summary.xml +0 -9
  809. forkparser-6.1.0/tests/wellformed/atom/entry_summary_base64.xml +0 -11
  810. forkparser-6.1.0/tests/wellformed/atom/entry_summary_base64_2.xml +0 -11
  811. forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_mode_base64.xml +0 -11
  812. forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_mode_escaped.xml +0 -9
  813. forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_type.xml +0 -9
  814. forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_type_text_plain.xml +0 -9
  815. forkparser-6.1.0/tests/wellformed/atom/entry_summary_content_value.xml +0 -9
  816. forkparser-6.1.0/tests/wellformed/atom/entry_summary_escaped_markup.xml +0 -9
  817. forkparser-6.1.0/tests/wellformed/atom/entry_summary_inline_markup.xml +0 -9
  818. forkparser-6.1.0/tests/wellformed/atom/entry_summary_inline_markup_2.xml +0 -9
  819. forkparser-6.1.0/tests/wellformed/atom/entry_summary_naked_markup.xml +0 -9
  820. forkparser-6.1.0/tests/wellformed/atom/entry_summary_text_plain.xml +0 -9
  821. forkparser-6.1.0/tests/wellformed/atom/entry_title.xml +0 -9
  822. forkparser-6.1.0/tests/wellformed/atom/entry_title_base64.xml +0 -11
  823. forkparser-6.1.0/tests/wellformed/atom/entry_title_base64_2.xml +0 -11
  824. forkparser-6.1.0/tests/wellformed/atom/entry_title_content_mode_base64.xml +0 -11
  825. forkparser-6.1.0/tests/wellformed/atom/entry_title_content_mode_escaped.xml +0 -9
  826. forkparser-6.1.0/tests/wellformed/atom/entry_title_content_type.xml +0 -9
  827. forkparser-6.1.0/tests/wellformed/atom/entry_title_content_type_text_plain.xml +0 -9
  828. forkparser-6.1.0/tests/wellformed/atom/entry_title_content_value.xml +0 -9
  829. forkparser-6.1.0/tests/wellformed/atom/entry_title_escaped_markup.xml +0 -9
  830. forkparser-6.1.0/tests/wellformed/atom/entry_title_inline_markup.xml +0 -9
  831. forkparser-6.1.0/tests/wellformed/atom/entry_title_inline_markup_2.xml +0 -9
  832. forkparser-6.1.0/tests/wellformed/atom/entry_title_naked_markup.xml +0 -9
  833. forkparser-6.1.0/tests/wellformed/atom/entry_title_text_plain.xml +0 -9
  834. forkparser-6.1.0/tests/wellformed/atom/entry_title_text_plain_brackets.xml +0 -9
  835. forkparser-6.1.0/tests/wellformed/atom/entry_updated_multiple_values.xml +0 -10
  836. forkparser-6.1.0/tests/wellformed/atom/entry_updated_parsed.xml +0 -9
  837. forkparser-6.1.0/tests/wellformed/atom/feed_author_email.xml +0 -11
  838. forkparser-6.1.0/tests/wellformed/atom/feed_author_homepage.xml +0 -11
  839. forkparser-6.1.0/tests/wellformed/atom/feed_author_map_author.xml +0 -11
  840. forkparser-6.1.0/tests/wellformed/atom/feed_author_map_author_2.xml +0 -10
  841. forkparser-6.1.0/tests/wellformed/atom/feed_author_name.xml +0 -11
  842. forkparser-6.1.0/tests/wellformed/atom/feed_author_uri.xml +0 -11
  843. forkparser-6.1.0/tests/wellformed/atom/feed_author_url.xml +0 -11
  844. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_email.xml +0 -11
  845. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_homepage.xml +0 -11
  846. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_multiple.xml +0 -16
  847. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_name.xml +0 -11
  848. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_uri.xml +0 -11
  849. forkparser-6.1.0/tests/wellformed/atom/feed_contributor_url.xml +0 -11
  850. forkparser-6.1.0/tests/wellformed/atom/feed_copyright.xml +0 -7
  851. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_base64.xml +0 -9
  852. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_base64_2.xml +0 -9
  853. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_mode_base64.xml +0 -9
  854. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_mode_escaped.xml +0 -7
  855. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_type.xml +0 -7
  856. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_type_text_plain.xml +0 -7
  857. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_content_value.xml +0 -7
  858. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_escaped_markup.xml +0 -7
  859. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_inline_markup.xml +0 -7
  860. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_inline_markup_2.xml +0 -7
  861. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_naked_markup.xml +0 -7
  862. forkparser-6.1.0/tests/wellformed/atom/feed_copyright_text_plain.xml +0 -7
  863. forkparser-6.1.0/tests/wellformed/atom/feed_generator.xml +0 -7
  864. forkparser-6.1.0/tests/wellformed/atom/feed_generator_name.xml +0 -7
  865. forkparser-6.1.0/tests/wellformed/atom/feed_generator_url.xml +0 -7
  866. forkparser-6.1.0/tests/wellformed/atom/feed_generator_version.xml +0 -7
  867. forkparser-6.1.0/tests/wellformed/atom/feed_id.xml +0 -7
  868. forkparser-6.1.0/tests/wellformed/atom/feed_id_map_guid.xml +0 -7
  869. forkparser-6.1.0/tests/wellformed/atom/feed_info.xml +0 -7
  870. forkparser-6.1.0/tests/wellformed/atom/feed_info_base64.xml +0 -9
  871. forkparser-6.1.0/tests/wellformed/atom/feed_info_base64_2.xml +0 -9
  872. forkparser-6.1.0/tests/wellformed/atom/feed_info_content_mode_base64.xml +0 -9
  873. forkparser-6.1.0/tests/wellformed/atom/feed_info_content_mode_escaped.xml +0 -7
  874. forkparser-6.1.0/tests/wellformed/atom/feed_info_content_type.xml +0 -7
  875. forkparser-6.1.0/tests/wellformed/atom/feed_info_content_type_text_plain.xml +0 -7
  876. forkparser-6.1.0/tests/wellformed/atom/feed_info_content_value.xml +0 -7
  877. forkparser-6.1.0/tests/wellformed/atom/feed_info_escaped_markup.xml +0 -7
  878. forkparser-6.1.0/tests/wellformed/atom/feed_info_inline_markup.xml +0 -7
  879. forkparser-6.1.0/tests/wellformed/atom/feed_info_inline_markup_2.xml +0 -7
  880. forkparser-6.1.0/tests/wellformed/atom/feed_info_naked_markup.xml +0 -7
  881. forkparser-6.1.0/tests/wellformed/atom/feed_info_text_plain.xml +0 -7
  882. forkparser-6.1.0/tests/wellformed/atom/feed_link_alternate_map_link.xml +0 -7
  883. forkparser-6.1.0/tests/wellformed/atom/feed_link_alternate_map_link_2.xml +0 -7
  884. forkparser-6.1.0/tests/wellformed/atom/feed_link_href.xml +0 -7
  885. forkparser-6.1.0/tests/wellformed/atom/feed_link_multiple.xml +0 -8
  886. forkparser-6.1.0/tests/wellformed/atom/feed_link_rel.xml +0 -7
  887. forkparser-6.1.0/tests/wellformed/atom/feed_link_title.xml +0 -7
  888. forkparser-6.1.0/tests/wellformed/atom/feed_link_type.xml +0 -7
  889. forkparser-6.1.0/tests/wellformed/atom/feed_modified.xml +0 -9
  890. forkparser-6.1.0/tests/wellformed/atom/feed_modified_map_updated_parsed.xml +0 -9
  891. forkparser-6.1.0/tests/wellformed/atom/feed_tagline.xml +0 -7
  892. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_base64.xml +0 -9
  893. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_base64_2.xml +0 -9
  894. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_mode_base64.xml +0 -9
  895. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_mode_escaped.xml +0 -7
  896. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_type.xml +0 -7
  897. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_type_text_plain.xml +0 -7
  898. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_content_value.xml +0 -7
  899. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_escaped_markup.xml +0 -7
  900. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_inline_markup.xml +0 -7
  901. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_inline_markup_2.xml +0 -7
  902. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_naked_markup.xml +0 -7
  903. forkparser-6.1.0/tests/wellformed/atom/feed_tagline_text_plain.xml +0 -7
  904. forkparser-6.1.0/tests/wellformed/atom/feed_title.xml +0 -7
  905. forkparser-6.1.0/tests/wellformed/atom/feed_title_base64.xml +0 -9
  906. forkparser-6.1.0/tests/wellformed/atom/feed_title_base64_2.xml +0 -9
  907. forkparser-6.1.0/tests/wellformed/atom/feed_title_content_mode_base64.xml +0 -9
  908. forkparser-6.1.0/tests/wellformed/atom/feed_title_content_mode_escaped.xml +0 -7
  909. forkparser-6.1.0/tests/wellformed/atom/feed_title_content_type.xml +0 -7
  910. forkparser-6.1.0/tests/wellformed/atom/feed_title_content_type_text_plain.xml +0 -7
  911. forkparser-6.1.0/tests/wellformed/atom/feed_title_content_value.xml +0 -7
  912. forkparser-6.1.0/tests/wellformed/atom/feed_title_escaped_markup.xml +0 -7
  913. forkparser-6.1.0/tests/wellformed/atom/feed_title_inline_markup.xml +0 -7
  914. forkparser-6.1.0/tests/wellformed/atom/feed_title_inline_markup_2.xml +0 -7
  915. forkparser-6.1.0/tests/wellformed/atom/feed_title_naked_markup.xml +0 -7
  916. forkparser-6.1.0/tests/wellformed/atom/feed_title_text_plain.xml +0 -7
  917. forkparser-6.1.0/tests/wellformed/atom/feed_updated_parsed.xml +0 -7
  918. forkparser-6.1.0/tests/wellformed/atom/relative_uri.xml +0 -7
  919. forkparser-6.1.0/tests/wellformed/atom/relative_uri_inherit.xml +0 -7
  920. forkparser-6.1.0/tests/wellformed/atom/relative_uri_inherit_2.xml +0 -7
  921. forkparser-6.1.0/tests/wellformed/atom10/ampersand_in_attr.xml +0 -7
  922. forkparser-6.1.0/tests/wellformed/atom10/atom10_namespace.xml +0 -7
  923. forkparser-6.1.0/tests/wellformed/atom10/atom10_version.xml +0 -6
  924. forkparser-6.1.0/tests/wellformed/atom10/entry_author_email.xml +0 -13
  925. forkparser-6.1.0/tests/wellformed/atom10/entry_author_map_author.xml +0 -13
  926. forkparser-6.1.0/tests/wellformed/atom10/entry_author_map_author_2.xml +0 -12
  927. forkparser-6.1.0/tests/wellformed/atom10/entry_author_name.xml +0 -13
  928. forkparser-6.1.0/tests/wellformed/atom10/entry_author_uri.xml +0 -13
  929. forkparser-6.1.0/tests/wellformed/atom10/entry_author_url.xml +0 -13
  930. forkparser-6.1.0/tests/wellformed/atom10/entry_authors_email.xml +0 -15
  931. forkparser-6.1.0/tests/wellformed/atom10/entry_authors_name.xml +0 -15
  932. forkparser-6.1.0/tests/wellformed/atom10/entry_authors_uri.xml +0 -15
  933. forkparser-6.1.0/tests/wellformed/atom10/entry_authors_url.xml +0 -15
  934. forkparser-6.1.0/tests/wellformed/atom10/entry_category_label.xml +0 -9
  935. forkparser-6.1.0/tests/wellformed/atom10/entry_category_scheme.xml +0 -9
  936. forkparser-6.1.0/tests/wellformed/atom10/entry_category_term.xml +0 -9
  937. forkparser-6.1.0/tests/wellformed/atom10/entry_category_term_non_ascii.xml +0 -9
  938. forkparser-6.1.0/tests/wellformed/atom10/entry_content_application_xml.xml +0 -9
  939. forkparser-6.1.0/tests/wellformed/atom10/entry_content_base64.xml +0 -11
  940. forkparser-6.1.0/tests/wellformed/atom10/entry_content_base64_2.xml +0 -11
  941. forkparser-6.1.0/tests/wellformed/atom10/entry_content_div_escaped_markup.xml +0 -9
  942. forkparser-6.1.0/tests/wellformed/atom10/entry_content_escaped_markup.xml +0 -9
  943. forkparser-6.1.0/tests/wellformed/atom10/entry_content_inline_markup.xml +0 -9
  944. forkparser-6.1.0/tests/wellformed/atom10/entry_content_inline_markup_2.xml +0 -9
  945. forkparser-6.1.0/tests/wellformed/atom10/entry_content_src.xml +0 -9
  946. forkparser-6.1.0/tests/wellformed/atom10/entry_content_text_plain.xml +0 -9
  947. forkparser-6.1.0/tests/wellformed/atom10/entry_content_text_plain_brackets.xml +0 -9
  948. forkparser-6.1.0/tests/wellformed/atom10/entry_content_type.xml +0 -9
  949. forkparser-6.1.0/tests/wellformed/atom10/entry_content_type_text.xml +0 -9
  950. forkparser-6.1.0/tests/wellformed/atom10/entry_content_value.xml +0 -9
  951. forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_email.xml +0 -13
  952. forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_multiple.xml +0 -18
  953. forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_name.xml +0 -13
  954. forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_uri.xml +0 -13
  955. forkparser-6.1.0/tests/wellformed/atom10/entry_contributor_url.xml +0 -13
  956. forkparser-6.1.0/tests/wellformed/atom10/entry_id.xml +0 -9
  957. forkparser-6.1.0/tests/wellformed/atom10/entry_id_map_guid.xml +0 -9
  958. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_1.xml +0 -9
  959. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_2.xml +0 -9
  960. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_3.xml +0 -9
  961. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_4.xml +0 -9
  962. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_5.xml +0 -9
  963. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_6.xml +0 -9
  964. forkparser-6.1.0/tests/wellformed/atom10/entry_id_no_normalization_7.xml +0 -9
  965. forkparser-6.1.0/tests/wellformed/atom10/entry_id_with_attributes.xml +0 -9
  966. forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link.xml +0 -9
  967. forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link_2.xml +0 -9
  968. forkparser-6.1.0/tests/wellformed/atom10/entry_link_alternate_map_link_3.xml +0 -11
  969. forkparser-6.1.0/tests/wellformed/atom10/entry_link_href.xml +0 -9
  970. forkparser-6.1.0/tests/wellformed/atom10/entry_link_hreflang.xml +0 -9
  971. forkparser-6.1.0/tests/wellformed/atom10/entry_link_length.xml +0 -9
  972. forkparser-6.1.0/tests/wellformed/atom10/entry_link_multiple.xml +0 -10
  973. forkparser-6.1.0/tests/wellformed/atom10/entry_link_no_rel.xml +0 -9
  974. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel.xml +0 -9
  975. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure.xml +0 -9
  976. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_length.xml +0 -9
  977. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_type.xml +0 -9
  978. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_enclosure_map_enclosure_url.xml +0 -9
  979. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_license.xml +0 -9
  980. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_other.xml +0 -9
  981. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_related.xml +0 -9
  982. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_self.xml +0 -9
  983. forkparser-6.1.0/tests/wellformed/atom10/entry_link_rel_via.xml +0 -9
  984. forkparser-6.1.0/tests/wellformed/atom10/entry_link_title.xml +0 -9
  985. forkparser-6.1.0/tests/wellformed/atom10/entry_link_type.xml +0 -9
  986. forkparser-6.1.0/tests/wellformed/atom10/entry_rights.xml +0 -9
  987. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_content_value.xml +0 -9
  988. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_escaped_markup.xml +0 -9
  989. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_inline_markup.xml +0 -9
  990. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_inline_markup_2.xml +0 -9
  991. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_text_plain.xml +0 -9
  992. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_text_plain_brackets.xml +0 -9
  993. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_type_default.xml +0 -9
  994. forkparser-6.1.0/tests/wellformed/atom10/entry_rights_type_text.xml +0 -9
  995. forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_email.xml +0 -15
  996. forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_map_author.xml +0 -15
  997. forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_map_author_2.xml +0 -14
  998. forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_name.xml +0 -15
  999. forkparser-6.1.0/tests/wellformed/atom10/entry_source_author_uri.xml +0 -15
  1000. forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_email.xml +0 -17
  1001. forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_name.xml +0 -17
  1002. forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_uri.xml +0 -17
  1003. forkparser-6.1.0/tests/wellformed/atom10/entry_source_authors_url.xml +0 -17
  1004. forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_label.xml +0 -11
  1005. forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_scheme.xml +0 -11
  1006. forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_term.xml +0 -11
  1007. forkparser-6.1.0/tests/wellformed/atom10/entry_source_category_term_non_ascii.xml +0 -11
  1008. forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_email.xml +0 -15
  1009. forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_multiple.xml +0 -20
  1010. forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_name.xml +0 -15
  1011. forkparser-6.1.0/tests/wellformed/atom10/entry_source_contributor_uri.xml +0 -15
  1012. forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator.xml +0 -11
  1013. forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_name.xml +0 -11
  1014. forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_uri.xml +0 -11
  1015. forkparser-6.1.0/tests/wellformed/atom10/entry_source_generator_version.xml +0 -11
  1016. forkparser-6.1.0/tests/wellformed/atom10/entry_source_icon.xml +0 -11
  1017. forkparser-6.1.0/tests/wellformed/atom10/entry_source_id.xml +0 -11
  1018. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_alternate_map_link.xml +0 -11
  1019. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_alternate_map_link_2.xml +0 -11
  1020. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_href.xml +0 -11
  1021. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_hreflang.xml +0 -11
  1022. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_length.xml +0 -11
  1023. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_multiple.xml +0 -12
  1024. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_no_rel.xml +0 -11
  1025. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel.xml +0 -11
  1026. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_other.xml +0 -11
  1027. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_related.xml +0 -11
  1028. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_self.xml +0 -11
  1029. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_rel_via.xml +0 -11
  1030. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_title.xml +0 -11
  1031. forkparser-6.1.0/tests/wellformed/atom10/entry_source_link_type.xml +0 -11
  1032. forkparser-6.1.0/tests/wellformed/atom10/entry_source_logo.xml +0 -11
  1033. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights.xml +0 -11
  1034. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_base64.xml +0 -13
  1035. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_base64_2.xml +0 -13
  1036. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_type.xml +0 -11
  1037. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_type_text.xml +0 -11
  1038. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_content_value.xml +0 -11
  1039. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_escaped_markup.xml +0 -11
  1040. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_inline_markup.xml +0 -11
  1041. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_inline_markup_2.xml +0 -11
  1042. forkparser-6.1.0/tests/wellformed/atom10/entry_source_rights_text_plain.xml +0 -11
  1043. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subittle_content_type_text.xml +0 -11
  1044. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle.xml +0 -11
  1045. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_base64.xml +0 -13
  1046. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_base64_2.xml +0 -13
  1047. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_content_type.xml +0 -11
  1048. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_content_value.xml +0 -11
  1049. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_escaped_markup.xml +0 -11
  1050. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_inline_markup.xml +0 -11
  1051. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_inline_markup_2.xml +0 -11
  1052. forkparser-6.1.0/tests/wellformed/atom10/entry_source_subtitle_text_plain.xml +0 -11
  1053. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title.xml +0 -11
  1054. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_base64.xml +0 -13
  1055. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_base64_2.xml +0 -13
  1056. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_type.xml +0 -11
  1057. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_type_text.xml +0 -11
  1058. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_content_value.xml +0 -11
  1059. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_escaped_markup.xml +0 -11
  1060. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_inline_markup.xml +0 -11
  1061. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_inline_markup_2.xml +0 -11
  1062. forkparser-6.1.0/tests/wellformed/atom10/entry_source_title_text_plain.xml +0 -11
  1063. forkparser-6.1.0/tests/wellformed/atom10/entry_summary.xml +0 -9
  1064. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_base64.xml +0 -11
  1065. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_base64_2.xml +0 -11
  1066. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_content_value.xml +0 -9
  1067. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_escaped_markup.xml +0 -9
  1068. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_inline_markup.xml +0 -9
  1069. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_inline_markup_2.xml +0 -9
  1070. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_text_plain.xml +0 -9
  1071. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_type_default.xml +0 -9
  1072. forkparser-6.1.0/tests/wellformed/atom10/entry_summary_type_text.xml +0 -9
  1073. forkparser-6.1.0/tests/wellformed/atom10/entry_title.xml +0 -9
  1074. forkparser-6.1.0/tests/wellformed/atom10/entry_title_base64.xml +0 -11
  1075. forkparser-6.1.0/tests/wellformed/atom10/entry_title_base64_2.xml +0 -11
  1076. forkparser-6.1.0/tests/wellformed/atom10/entry_title_content_value.xml +0 -9
  1077. forkparser-6.1.0/tests/wellformed/atom10/entry_title_escaped_markup.xml +0 -9
  1078. forkparser-6.1.0/tests/wellformed/atom10/entry_title_inline_markup.xml +0 -9
  1079. forkparser-6.1.0/tests/wellformed/atom10/entry_title_inline_markup_2.xml +0 -9
  1080. forkparser-6.1.0/tests/wellformed/atom10/entry_title_text_plain.xml +0 -9
  1081. forkparser-6.1.0/tests/wellformed/atom10/entry_title_text_plain_brackets.xml +0 -9
  1082. forkparser-6.1.0/tests/wellformed/atom10/entry_title_type_default.xml +0 -9
  1083. forkparser-6.1.0/tests/wellformed/atom10/entry_title_type_text.xml +0 -9
  1084. forkparser-6.1.0/tests/wellformed/atom10/feed_author_email.xml +0 -11
  1085. forkparser-6.1.0/tests/wellformed/atom10/feed_author_map_author.xml +0 -11
  1086. forkparser-6.1.0/tests/wellformed/atom10/feed_author_map_author_2.xml +0 -10
  1087. forkparser-6.1.0/tests/wellformed/atom10/feed_author_name.xml +0 -11
  1088. forkparser-6.1.0/tests/wellformed/atom10/feed_author_uri.xml +0 -11
  1089. forkparser-6.1.0/tests/wellformed/atom10/feed_author_url.xml +0 -11
  1090. forkparser-6.1.0/tests/wellformed/atom10/feed_authors_email.xml +0 -13
  1091. forkparser-6.1.0/tests/wellformed/atom10/feed_authors_name.xml +0 -13
  1092. forkparser-6.1.0/tests/wellformed/atom10/feed_authors_uri.xml +0 -13
  1093. forkparser-6.1.0/tests/wellformed/atom10/feed_authors_url.xml +0 -13
  1094. forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_email.xml +0 -11
  1095. forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_multiple.xml +0 -16
  1096. forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_name.xml +0 -11
  1097. forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_uri.xml +0 -11
  1098. forkparser-6.1.0/tests/wellformed/atom10/feed_contributor_url.xml +0 -11
  1099. forkparser-6.1.0/tests/wellformed/atom10/feed_generator.xml +0 -7
  1100. forkparser-6.1.0/tests/wellformed/atom10/feed_generator_name.xml +0 -7
  1101. forkparser-6.1.0/tests/wellformed/atom10/feed_generator_url.xml +0 -7
  1102. forkparser-6.1.0/tests/wellformed/atom10/feed_generator_version.xml +0 -7
  1103. forkparser-6.1.0/tests/wellformed/atom10/feed_icon.xml +0 -7
  1104. forkparser-6.1.0/tests/wellformed/atom10/feed_id.xml +0 -7
  1105. forkparser-6.1.0/tests/wellformed/atom10/feed_id_map_guid.xml +0 -7
  1106. forkparser-6.1.0/tests/wellformed/atom10/feed_link_alternate_map_link.xml +0 -7
  1107. forkparser-6.1.0/tests/wellformed/atom10/feed_link_alternate_map_link_2.xml +0 -7
  1108. forkparser-6.1.0/tests/wellformed/atom10/feed_link_href.xml +0 -7
  1109. forkparser-6.1.0/tests/wellformed/atom10/feed_link_hreflang.xml +0 -7
  1110. forkparser-6.1.0/tests/wellformed/atom10/feed_link_length.xml +0 -7
  1111. forkparser-6.1.0/tests/wellformed/atom10/feed_link_multiple.xml +0 -8
  1112. forkparser-6.1.0/tests/wellformed/atom10/feed_link_no_rel.xml +0 -7
  1113. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel.xml +0 -7
  1114. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_other.xml +0 -7
  1115. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_related.xml +0 -7
  1116. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_self.xml +0 -7
  1117. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_self_default_type.xml +0 -7
  1118. forkparser-6.1.0/tests/wellformed/atom10/feed_link_rel_via.xml +0 -7
  1119. forkparser-6.1.0/tests/wellformed/atom10/feed_link_title.xml +0 -7
  1120. forkparser-6.1.0/tests/wellformed/atom10/feed_link_type.xml +0 -7
  1121. forkparser-6.1.0/tests/wellformed/atom10/feed_logo.xml +0 -7
  1122. forkparser-6.1.0/tests/wellformed/atom10/feed_rights.xml +0 -7
  1123. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_base64.xml +0 -9
  1124. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_base64_2.xml +0 -9
  1125. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_type.xml +0 -7
  1126. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_type_text.xml +0 -7
  1127. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_content_value.xml +0 -7
  1128. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_escaped_markup.xml +0 -7
  1129. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_inline_markup.xml +0 -7
  1130. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_inline_markup_2.xml +0 -7
  1131. forkparser-6.1.0/tests/wellformed/atom10/feed_rights_text_plain.xml +0 -7
  1132. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle.xml +0 -7
  1133. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_base64.xml +0 -9
  1134. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_base64_2.xml +0 -9
  1135. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_type.xml +0 -7
  1136. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_type_text.xml +0 -7
  1137. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_content_value.xml +0 -7
  1138. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_escaped_markup.xml +0 -7
  1139. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_inline_markup.xml +0 -7
  1140. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_inline_markup_2.xml +0 -7
  1141. forkparser-6.1.0/tests/wellformed/atom10/feed_subtitle_text_plain.xml +0 -7
  1142. forkparser-6.1.0/tests/wellformed/atom10/feed_title.xml +0 -7
  1143. forkparser-6.1.0/tests/wellformed/atom10/feed_title_base64.xml +0 -9
  1144. forkparser-6.1.0/tests/wellformed/atom10/feed_title_base64_2.xml +0 -9
  1145. forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_type.xml +0 -7
  1146. forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_type_text.xml +0 -7
  1147. forkparser-6.1.0/tests/wellformed/atom10/feed_title_content_value.xml +0 -7
  1148. forkparser-6.1.0/tests/wellformed/atom10/feed_title_escaped_markup.xml +0 -7
  1149. forkparser-6.1.0/tests/wellformed/atom10/feed_title_inline_markup.xml +0 -7
  1150. forkparser-6.1.0/tests/wellformed/atom10/feed_title_inline_markup_2.xml +0 -7
  1151. forkparser-6.1.0/tests/wellformed/atom10/feed_title_text_plain.xml +0 -7
  1152. forkparser-6.1.0/tests/wellformed/atom10/missing_quote_in_attr.xml +0 -7
  1153. forkparser-6.1.0/tests/wellformed/atom10/qna.xml +0 -9
  1154. forkparser-6.1.0/tests/wellformed/atom10/quote_in_attr.xml +0 -7
  1155. forkparser-6.1.0/tests/wellformed/atom10/relative_uri.xml +0 -7
  1156. forkparser-6.1.0/tests/wellformed/atom10/relative_uri_inherit.xml +0 -7
  1157. forkparser-6.1.0/tests/wellformed/atom10/relative_uri_inherit_2.xml +0 -7
  1158. forkparser-6.1.0/tests/wellformed/atom10/tag_in_attr.xml +0 -7
  1159. forkparser-6.1.0/tests/wellformed/base/cdf_item_abstract_xml_base.xml +0 -18
  1160. forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base.xml +0 -9
  1161. forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit.xml +0 -9
  1162. forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_2.xml +0 -9
  1163. forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_3.xml +0 -10
  1164. forkparser-6.1.0/tests/wellformed/base/entry_content_xml_base_inherit_4.xml +0 -10
  1165. forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base.xml +0 -9
  1166. forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit.xml +0 -9
  1167. forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_2.xml +0 -9
  1168. forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_3.xml +0 -10
  1169. forkparser-6.1.0/tests/wellformed/base/entry_summary_xml_base_inherit_4.xml +0 -10
  1170. forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base.xml +0 -9
  1171. forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit.xml +0 -9
  1172. forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_2.xml +0 -9
  1173. forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_3.xml +0 -10
  1174. forkparser-6.1.0/tests/wellformed/base/entry_title_xml_base_inherit_4.xml +0 -10
  1175. forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base.xml +0 -7
  1176. forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit.xml +0 -7
  1177. forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_2.xml +0 -7
  1178. forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_3.xml +0 -8
  1179. forkparser-6.1.0/tests/wellformed/base/feed_copyright_xml_base_inherit_4.xml +0 -8
  1180. forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base.xml +0 -7
  1181. forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit.xml +0 -7
  1182. forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_2.xml +0 -7
  1183. forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_3.xml +0 -8
  1184. forkparser-6.1.0/tests/wellformed/base/feed_info_xml_base_inherit_4.xml +0 -8
  1185. forkparser-6.1.0/tests/wellformed/base/feed_link_xml_base_iri.xml +0 -7
  1186. forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base.xml +0 -7
  1187. forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit.xml +0 -7
  1188. forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_2.xml +0 -7
  1189. forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_3.xml +0 -8
  1190. forkparser-6.1.0/tests/wellformed/base/feed_tagline_xml_base_inherit_4.xml +0 -8
  1191. forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base.xml +0 -7
  1192. forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit.xml +0 -7
  1193. forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_2.xml +0 -7
  1194. forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_3.xml +0 -8
  1195. forkparser-6.1.0/tests/wellformed/base/feed_title_xml_base_inherit_4.xml +0 -8
  1196. forkparser-6.1.0/tests/wellformed/base/http_channel_docs_base_content_location.xml +0 -10
  1197. forkparser-6.1.0/tests/wellformed/base/http_channel_docs_base_docuri.xml +0 -9
  1198. forkparser-6.1.0/tests/wellformed/base/http_channel_link_base_content_location.xml +0 -10
  1199. forkparser-6.1.0/tests/wellformed/base/http_channel_link_base_docuri.xml +0 -9
  1200. forkparser-6.1.0/tests/wellformed/base/http_entry_author_url_base_content_location.xml +0 -12
  1201. forkparser-6.1.0/tests/wellformed/base/http_entry_author_url_base_docuri.xml +0 -11
  1202. forkparser-6.1.0/tests/wellformed/base/http_entry_content_base64_base_content_location.xml +0 -12
  1203. forkparser-6.1.0/tests/wellformed/base/http_entry_content_base64_base_docuri.xml +0 -11
  1204. forkparser-6.1.0/tests/wellformed/base/http_entry_content_base_content_location.xml +0 -10
  1205. forkparser-6.1.0/tests/wellformed/base/http_entry_content_base_docuri.xml +0 -9
  1206. forkparser-6.1.0/tests/wellformed/base/http_entry_content_inline_base_content_location.xml +0 -10
  1207. forkparser-6.1.0/tests/wellformed/base/http_entry_content_inline_base_docuri.xml +0 -9
  1208. forkparser-6.1.0/tests/wellformed/base/http_entry_contributor_url_base_content_location.xml +0 -12
  1209. forkparser-6.1.0/tests/wellformed/base/http_entry_contributor_url_base_docuri.xml +0 -11
  1210. forkparser-6.1.0/tests/wellformed/base/http_entry_id_base_content_location.xml +0 -10
  1211. forkparser-6.1.0/tests/wellformed/base/http_entry_id_base_docuri.xml +0 -9
  1212. forkparser-6.1.0/tests/wellformed/base/http_entry_link_base_content_location.xml +0 -10
  1213. forkparser-6.1.0/tests/wellformed/base/http_entry_link_base_docuri.xml +0 -9
  1214. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base64_base_content_location.xml +0 -12
  1215. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base64_base_docuri.xml +0 -11
  1216. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base_content_location.xml +0 -10
  1217. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_base_docuri.xml +0 -9
  1218. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_inline_base_content_location.xml +0 -10
  1219. forkparser-6.1.0/tests/wellformed/base/http_entry_summary_inline_base_docuri.xml +0 -9
  1220. forkparser-6.1.0/tests/wellformed/base/http_entry_title_base64_base_content_location.xml +0 -12
  1221. forkparser-6.1.0/tests/wellformed/base/http_entry_title_base64_base_docuri.xml +0 -11
  1222. forkparser-6.1.0/tests/wellformed/base/http_entry_title_base_content_location.xml +0 -10
  1223. forkparser-6.1.0/tests/wellformed/base/http_entry_title_base_docuri.xml +0 -9
  1224. forkparser-6.1.0/tests/wellformed/base/http_entry_title_inline_base_content_location.xml +0 -10
  1225. forkparser-6.1.0/tests/wellformed/base/http_entry_title_inline_base_docuri.xml +0 -9
  1226. forkparser-6.1.0/tests/wellformed/base/http_feed_author_url_base_content_location.xml +0 -10
  1227. forkparser-6.1.0/tests/wellformed/base/http_feed_author_url_base_docuri.xml +0 -9
  1228. forkparser-6.1.0/tests/wellformed/base/http_feed_contributor_url_base_content_location.xml +0 -10
  1229. forkparser-6.1.0/tests/wellformed/base/http_feed_contributor_url_base_docuri.xml +0 -9
  1230. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base64_base_content_location.xml +0 -10
  1231. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base64_base_docuri.xml +0 -9
  1232. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base_content_location.xml +0 -8
  1233. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_base_docuri.xml +0 -7
  1234. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_inline_base_content_location.xml +0 -8
  1235. forkparser-6.1.0/tests/wellformed/base/http_feed_copyright_inline_base_docuri.xml +0 -7
  1236. forkparser-6.1.0/tests/wellformed/base/http_feed_generator_url_base_content_location.xml +0 -8
  1237. forkparser-6.1.0/tests/wellformed/base/http_feed_generator_url_base_docuri.xml +0 -7
  1238. forkparser-6.1.0/tests/wellformed/base/http_feed_id_base_content_location.xml +0 -8
  1239. forkparser-6.1.0/tests/wellformed/base/http_feed_id_base_docuri.xml +0 -7
  1240. forkparser-6.1.0/tests/wellformed/base/http_feed_info_base64_base_content_location.xml +0 -10
  1241. forkparser-6.1.0/tests/wellformed/base/http_feed_info_base64_base_docuri.xml +0 -9
  1242. forkparser-6.1.0/tests/wellformed/base/http_feed_info_base_content_location.xml +0 -8
  1243. forkparser-6.1.0/tests/wellformed/base/http_feed_info_base_docuri.xml +0 -7
  1244. forkparser-6.1.0/tests/wellformed/base/http_feed_info_inline_base_content_location.xml +0 -8
  1245. forkparser-6.1.0/tests/wellformed/base/http_feed_info_inline_base_docuri.xml +0 -7
  1246. forkparser-6.1.0/tests/wellformed/base/http_feed_link_base_content_location.xml +0 -8
  1247. forkparser-6.1.0/tests/wellformed/base/http_feed_link_base_docuri.xml +0 -7
  1248. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base64_base_content_location.xml +0 -10
  1249. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base64_base_docuri.xml +0 -9
  1250. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base_content_location.xml +0 -8
  1251. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_base_docuri.xml +0 -7
  1252. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_inline_base_content_location.xml +0 -8
  1253. forkparser-6.1.0/tests/wellformed/base/http_feed_tagline_inline_base_docuri.xml +0 -7
  1254. forkparser-6.1.0/tests/wellformed/base/http_feed_title_base64_base_content_location.xml +0 -10
  1255. forkparser-6.1.0/tests/wellformed/base/http_feed_title_base64_base_docuri.xml +0 -9
  1256. forkparser-6.1.0/tests/wellformed/base/http_feed_title_base_content_location.xml +0 -8
  1257. forkparser-6.1.0/tests/wellformed/base/http_feed_title_base_docuri.xml +0 -7
  1258. forkparser-6.1.0/tests/wellformed/base/http_feed_title_inline_base_content_location.xml +0 -8
  1259. forkparser-6.1.0/tests/wellformed/base/http_feed_title_inline_base_docuri.xml +0 -7
  1260. forkparser-6.1.0/tests/wellformed/base/http_item_body_base_content_location.xml +0 -12
  1261. forkparser-6.1.0/tests/wellformed/base/http_item_body_base_docuri.xml +0 -11
  1262. forkparser-6.1.0/tests/wellformed/base/http_item_comments_base_content_location.xml +0 -12
  1263. forkparser-6.1.0/tests/wellformed/base/http_item_comments_base_docuri.xml +0 -11
  1264. forkparser-6.1.0/tests/wellformed/base/http_item_content_encoded_base_content_location.xml +0 -12
  1265. forkparser-6.1.0/tests/wellformed/base/http_item_content_encoded_base_docuri.xml +0 -11
  1266. forkparser-6.1.0/tests/wellformed/base/http_item_description_base_content_location.xml +0 -12
  1267. forkparser-6.1.0/tests/wellformed/base/http_item_description_base_docuri.xml +0 -11
  1268. forkparser-6.1.0/tests/wellformed/base/http_item_description_spaces.xml +0 -11
  1269. forkparser-6.1.0/tests/wellformed/base/http_item_fullitem_base_content_location.xml +0 -12
  1270. forkparser-6.1.0/tests/wellformed/base/http_item_fullitem_base_docuri.xml +0 -11
  1271. forkparser-6.1.0/tests/wellformed/base/http_item_link_base_content_location.xml +0 -12
  1272. forkparser-6.1.0/tests/wellformed/base/http_item_link_base_docuri.xml +0 -11
  1273. forkparser-6.1.0/tests/wellformed/base/http_item_wfw_commentRSS_base_content_location.xml +0 -12
  1274. forkparser-6.1.0/tests/wellformed/base/http_item_wfw_commentRSS_base_docuri.xml +0 -11
  1275. forkparser-6.1.0/tests/wellformed/base/http_item_wfw_comment_base_content_location.xml +0 -12
  1276. forkparser-6.1.0/tests/wellformed/base/http_item_wfw_comment_base_docuri.xml +0 -11
  1277. forkparser-6.1.0/tests/wellformed/base/http_item_xhtml_body_base_content_location.xml +0 -12
  1278. forkparser-6.1.0/tests/wellformed/base/http_item_xhtml_body_base_docuri.xml +0 -11
  1279. forkparser-6.1.0/tests/wellformed/base/http_relative_xml_base.xml +0 -10
  1280. forkparser-6.1.0/tests/wellformed/base/http_relative_xml_base_2.xml +0 -10
  1281. forkparser-6.1.0/tests/wellformed/base/malformed_base.xml +0 -9
  1282. forkparser-6.1.0/tests/wellformed/base/rel_uri_with_unicode_character.xml +0 -11
  1283. forkparser-6.1.0/tests/wellformed/base/relative_xml_base.xml +0 -9
  1284. forkparser-6.1.0/tests/wellformed/base/relative_xml_base_2.xml +0 -9
  1285. forkparser-6.1.0/tests/wellformed/base/unsafe_base.xml +0 -10
  1286. forkparser-6.1.0/tests/wellformed/cdf/channel_abstract_map_description.xml +0 -7
  1287. forkparser-6.1.0/tests/wellformed/cdf/channel_abstract_map_tagline.xml +0 -7
  1288. forkparser-6.1.0/tests/wellformed/cdf/channel_href_map_link.xml +0 -6
  1289. forkparser-6.1.0/tests/wellformed/cdf/channel_href_map_links.xml +0 -6
  1290. forkparser-6.1.0/tests/wellformed/cdf/channel_lastmod.xml +0 -6
  1291. forkparser-6.1.0/tests/wellformed/cdf/channel_lastmod_parsed.xml +0 -6
  1292. forkparser-6.1.0/tests/wellformed/cdf/channel_title.xml +0 -7
  1293. forkparser-6.1.0/tests/wellformed/cdf/item_abstract_map_description.xml +0 -9
  1294. forkparser-6.1.0/tests/wellformed/cdf/item_abstract_map_summary.xml +0 -9
  1295. forkparser-6.1.0/tests/wellformed/cdf/item_href_map_link.xml +0 -8
  1296. forkparser-6.1.0/tests/wellformed/cdf/item_href_map_links.xml +0 -8
  1297. forkparser-6.1.0/tests/wellformed/cdf/item_lastmod.xml +0 -8
  1298. forkparser-6.1.0/tests/wellformed/cdf/item_lastmod_parsed.xml +0 -8
  1299. forkparser-6.1.0/tests/wellformed/cdf/item_title.xml +0 -9
  1300. forkparser-6.1.0/tests/wellformed/feedburner/feedburner_browserfriendly.xml +0 -9
  1301. forkparser-6.1.0/tests/wellformed/geo/georss_box.xml +0 -12
  1302. forkparser-6.1.0/tests/wellformed/geo/georss_line.xml +0 -14
  1303. forkparser-6.1.0/tests/wellformed/geo/georss_point.xml +0 -13
  1304. forkparser-6.1.0/tests/wellformed/geo/georss_polygon.xml +0 -12
  1305. forkparser-6.1.0/tests/wellformed/geo/gml_linestring.xml +0 -19
  1306. forkparser-6.1.0/tests/wellformed/geo/gml_linestring_utm.xml +0 -19
  1307. forkparser-6.1.0/tests/wellformed/geo/gml_point.xml +0 -18
  1308. forkparser-6.1.0/tests/wellformed/geo/gml_point_3d.xml +0 -18
  1309. forkparser-6.1.0/tests/wellformed/geo/gml_point_utm.xml +0 -17
  1310. forkparser-6.1.0/tests/wellformed/geo/gml_polygon.xml +0 -21
  1311. forkparser-6.1.0/tests/wellformed/http/headers_content_location-relative.xml +0 -8
  1312. forkparser-6.1.0/tests/wellformed/http/headers_content_location-unsafe.xml +0 -9
  1313. forkparser-6.1.0/tests/wellformed/http/headers_etag.xml +0 -7
  1314. forkparser-6.1.0/tests/wellformed/http/headers_foo.xml +0 -7
  1315. forkparser-6.1.0/tests/wellformed/http/headers_no_etag.xml +0 -7
  1316. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block.xml +0 -9
  1317. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_false.xml +0 -9
  1318. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_no.xml +0 -9
  1319. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_true.xml +0 -9
  1320. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_uppercase.xml +0 -9
  1321. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_block_whitespace.xml +0 -9
  1322. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category.xml +0 -9
  1323. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category_nested.xml +0 -11
  1324. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_category_scheme.xml +0 -9
  1325. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit.xml +0 -9
  1326. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_clean.xml +0 -9
  1327. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_false.xml +0 -9
  1328. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_no.xml +0 -9
  1329. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_true.xml +0 -9
  1330. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_uppercase.xml +0 -9
  1331. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_explicit_whitespace.xml +0 -9
  1332. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image.xml +0 -9
  1333. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image_no_href.xml +0 -12
  1334. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_image_url.xml +0 -9
  1335. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords.xml +0 -9
  1336. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_duplicate.xml +0 -9
  1337. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_duplicate_2.xml +0 -10
  1338. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_keywords_multiple.xml +0 -9
  1339. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_link_image.xml +0 -9
  1340. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_owner_email.xml +0 -12
  1341. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_owner_name.xml +0 -12
  1342. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_subtitle.xml +0 -9
  1343. forkparser-6.1.0/tests/wellformed/itunes/itunes_channel_summary.xml +0 -9
  1344. forkparser-6.1.0/tests/wellformed/itunes/itunes_core_element_uppercase.xml +0 -9
  1345. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_author_map_author.xml +0 -11
  1346. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block.xml +0 -11
  1347. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_false.xml +0 -11
  1348. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_no.xml +0 -11
  1349. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_true.xml +0 -11
  1350. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_uppercase.xml +0 -11
  1351. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_block_whitespace.xml +0 -11
  1352. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category.xml +0 -11
  1353. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category_nested.xml +0 -13
  1354. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_category_scheme.xml +0 -11
  1355. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_duration.xml +0 -11
  1356. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit.xml +0 -11
  1357. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_clean.xml +0 -11
  1358. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_false.xml +0 -11
  1359. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_no.xml +0 -11
  1360. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_true.xml +0 -11
  1361. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_uppercase.xml +0 -11
  1362. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_explicit_whitespace.xml +0 -11
  1363. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_image.xml +0 -11
  1364. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_image_url.xml +0 -11
  1365. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_link_image.xml +0 -11
  1366. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_subtitle.xml +0 -11
  1367. forkparser-6.1.0/tests/wellformed/itunes/itunes_item_summary.xml +0 -11
  1368. forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace.xml +0 -9
  1369. forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_example.xml +0 -9
  1370. forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_lowercase.xml +0 -9
  1371. forkparser-6.1.0/tests/wellformed/itunes/itunes_namespace_uppercase.xml +0 -9
  1372. forkparser-6.1.0/tests/wellformed/lang/channel_dc_language.xml +0 -9
  1373. forkparser-6.1.0/tests/wellformed/lang/channel_language.xml +0 -9
  1374. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang.xml +0 -9
  1375. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank.xml +0 -9
  1376. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank_2.xml +0 -9
  1377. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_blank_3.xml +0 -12
  1378. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit.xml +0 -9
  1379. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_2.xml +0 -9
  1380. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_3.xml +0 -10
  1381. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_inherit_4.xml +0 -10
  1382. forkparser-6.1.0/tests/wellformed/lang/entry_content_xml_lang_underscore.xml +0 -9
  1383. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang.xml +0 -9
  1384. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_blank.xml +0 -9
  1385. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit.xml +0 -9
  1386. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_2.xml +0 -9
  1387. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_3.xml +0 -10
  1388. forkparser-6.1.0/tests/wellformed/lang/entry_summary_xml_lang_inherit_4.xml +0 -10
  1389. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang.xml +0 -9
  1390. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_blank.xml +0 -9
  1391. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit.xml +0 -9
  1392. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_2.xml +0 -9
  1393. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_3.xml +0 -10
  1394. forkparser-6.1.0/tests/wellformed/lang/entry_title_xml_lang_inherit_4.xml +0 -10
  1395. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang.xml +0 -7
  1396. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_blank.xml +0 -7
  1397. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit.xml +0 -7
  1398. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_2.xml +0 -7
  1399. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_3.xml +0 -8
  1400. forkparser-6.1.0/tests/wellformed/lang/feed_copyright_xml_lang_inherit_4.xml +0 -8
  1401. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang.xml +0 -7
  1402. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_blank.xml +0 -7
  1403. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit.xml +0 -7
  1404. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_2.xml +0 -7
  1405. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_3.xml +0 -8
  1406. forkparser-6.1.0/tests/wellformed/lang/feed_info_xml_lang_inherit_4.xml +0 -8
  1407. forkparser-6.1.0/tests/wellformed/lang/feed_language.xml +0 -9
  1408. forkparser-6.1.0/tests/wellformed/lang/feed_language_override.xml +0 -9
  1409. forkparser-6.1.0/tests/wellformed/lang/feed_not_xml_lang.xml +0 -7
  1410. forkparser-6.1.0/tests/wellformed/lang/feed_not_xml_lang_2.xml +0 -7
  1411. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang.xml +0 -7
  1412. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_blank.xml +0 -7
  1413. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit.xml +0 -7
  1414. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_2.xml +0 -7
  1415. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_3.xml +0 -8
  1416. forkparser-6.1.0/tests/wellformed/lang/feed_tagline_xml_lang_inherit_4.xml +0 -8
  1417. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang.xml +0 -7
  1418. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_blank.xml +0 -7
  1419. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit.xml +0 -7
  1420. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_2.xml +0 -7
  1421. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_3.xml +0 -8
  1422. forkparser-6.1.0/tests/wellformed/lang/feed_title_xml_lang_inherit_4.xml +0 -8
  1423. forkparser-6.1.0/tests/wellformed/lang/feed_xml_lang.xml +0 -6
  1424. forkparser-6.1.0/tests/wellformed/lang/feed_xml_lang_underscore.xml +0 -6
  1425. forkparser-6.1.0/tests/wellformed/lang/http_content_language.xml +0 -7
  1426. forkparser-6.1.0/tests/wellformed/lang/http_content_language_entry_title_inherit.xml +0 -10
  1427. forkparser-6.1.0/tests/wellformed/lang/http_content_language_entry_title_inherit_2.xml +0 -11
  1428. forkparser-6.1.0/tests/wellformed/lang/http_content_language_feed_language.xml +0 -10
  1429. forkparser-6.1.0/tests/wellformed/lang/http_content_language_feed_xml_lang.xml +0 -7
  1430. forkparser-6.1.0/tests/wellformed/lang/item_content_encoded_xml_lang.xml +0 -11
  1431. forkparser-6.1.0/tests/wellformed/lang/item_content_encoded_xml_lang_inherit.xml +0 -11
  1432. forkparser-6.1.0/tests/wellformed/lang/item_dc_language.xml +0 -11
  1433. forkparser-6.1.0/tests/wellformed/lang/item_fullitem_xml_lang.xml +0 -11
  1434. forkparser-6.1.0/tests/wellformed/lang/item_fullitem_xml_lang_inherit.xml +0 -11
  1435. forkparser-6.1.0/tests/wellformed/lang/item_xhtml_body_xml_lang.xml +0 -13
  1436. forkparser-6.1.0/tests/wellformed/lang/item_xhtml_body_xml_lang_inherit.xml +0 -13
  1437. forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_label.xml +0 -11
  1438. forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_multiple.xml +0 -12
  1439. forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_scheme1.xml +0 -11
  1440. forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_scheme2.xml +0 -11
  1441. forkparser-6.1.0/tests/wellformed/media-rss/item_media_category_term.xml +0 -11
  1442. forkparser-6.1.0/tests/wellformed/media-rss/item_media_title1.xml +0 -11
  1443. forkparser-6.1.0/tests/wellformed/media-rss/item_media_title2.xml +0 -12
  1444. forkparser-6.1.0/tests/wellformed/media-rss/item_media_title3.xml +0 -12
  1445. forkparser-6.1.0/tests/wellformed/media-rss/item_media_title_type_plain.xml +0 -11
  1446. forkparser-6.1.0/tests/wellformed/media-rss/media_group.xml +0 -17
  1447. forkparser-6.1.0/tests/wellformed/media-rss/media_player1.xml +0 -10
  1448. forkparser-6.1.0/tests/wellformed/media-rss/media_thumbnail.xml +0 -11
  1449. forkparser-6.1.0/tests/wellformed/namespace/atommathml.xml +0 -9
  1450. forkparser-6.1.0/tests/wellformed/namespace/atomsvg.xml +0 -9
  1451. forkparser-6.1.0/tests/wellformed/namespace/atomsvgdctitle.xml +0 -36
  1452. forkparser-6.1.0/tests/wellformed/namespace/atomsvgdesc.xml +0 -9
  1453. forkparser-6.1.0/tests/wellformed/namespace/atomsvgtitle.xml +0 -9
  1454. forkparser-6.1.0/tests/wellformed/namespace/atomthreading.xml +0 -5
  1455. forkparser-6.1.0/tests/wellformed/namespace/atomthreadingwithentry.xml +0 -6
  1456. forkparser-6.1.0/tests/wellformed/namespace/atomxlink.xml +0 -9
  1457. forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModules.xml +0 -47
  1458. forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModulesNoDefNS.xml +0 -48
  1459. forkparser-6.1.0/tests/wellformed/namespace/rss1.0withModulesNoDefNSLocalNameClash.xml +0 -53
  1460. forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModules.xml +0 -50
  1461. forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNS.xml +0 -50
  1462. forkparser-6.1.0/tests/wellformed/namespace/rss2.0NSwithModulesNoDefNSLocalNameClash.xml +0 -58
  1463. forkparser-6.1.0/tests/wellformed/namespace/rss2.0mathml.xml +0 -11
  1464. forkparser-6.1.0/tests/wellformed/namespace/rss2.0noNSwithModules.xml +0 -49
  1465. forkparser-6.1.0/tests/wellformed/namespace/rss2.0noNSwithModulesLocalNameClash.xml +0 -57
  1466. forkparser-6.1.0/tests/wellformed/namespace/rss2.0svg.xml +0 -11
  1467. forkparser-6.1.0/tests/wellformed/namespace/rss2.0svg5.xml +0 -11
  1468. forkparser-6.1.0/tests/wellformed/namespace/rss2.0svgtitle.xml +0 -11
  1469. forkparser-6.1.0/tests/wellformed/namespace/rss2.0withAtomNS.xml +0 -27
  1470. forkparser-6.1.0/tests/wellformed/namespace/rss2.0xlink.xml +0 -11
  1471. forkparser-6.1.0/tests/wellformed/namespace/unknown-namespace.xml +0 -9
  1472. forkparser-6.1.0/tests/wellformed/node_precedence/atom10_arbitrary_element.xml +0 -18
  1473. forkparser-6.1.0/tests/wellformed/node_precedence/atom10_id.xml +0 -18
  1474. forkparser-6.1.0/tests/wellformed/node_precedence/atom10_title.xml +0 -18
  1475. forkparser-6.1.0/tests/wellformed/psc/atomsimplechapter.xml +0 -34
  1476. forkparser-6.1.0/tests/wellformed/psc/atomsimplechapterexternal.xml +0 -27
  1477. forkparser-6.1.0/tests/wellformed/psc/ignore_multiple_psc_chapters.xml +0 -38
  1478. forkparser-6.1.0/tests/wellformed/psc/rss2.0simplechapter.xml +0 -36
  1479. forkparser-6.1.0/tests/wellformed/psc/rss2.0simplechapter2items.xml +0 -22
  1480. forkparser-6.1.0/tests/wellformed/psc/version_1.0_keyerror.xml +0 -13
  1481. forkparser-6.1.0/tests/wellformed/rdf/doctype_contains_entity_decl.xml +0 -17
  1482. forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_description.xml +0 -9
  1483. forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_link.xml +0 -9
  1484. forkparser-6.1.0/tests/wellformed/rdf/rdf_channel_title.xml +0 -9
  1485. forkparser-6.1.0/tests/wellformed/rdf/rdf_item_description.xml +0 -16
  1486. forkparser-6.1.0/tests/wellformed/rdf/rdf_item_link.xml +0 -16
  1487. forkparser-6.1.0/tests/wellformed/rdf/rdf_item_rdf_about.xml +0 -15
  1488. forkparser-6.1.0/tests/wellformed/rdf/rdf_item_title.xml +0 -16
  1489. forkparser-6.1.0/tests/wellformed/rdf/rss090_channel_title.xml +0 -12
  1490. forkparser-6.1.0/tests/wellformed/rdf/rss090_item_title.xml +0 -12
  1491. forkparser-6.1.0/tests/wellformed/rdf/rss_version_10.xml +0 -6
  1492. forkparser-6.1.0/tests/wellformed/rdf/rss_version_10_not_default_ns.xml +0 -8
  1493. forkparser-6.1.0/tests/wellformed/rss/channel_author.xml +0 -9
  1494. forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email.xml +0 -9
  1495. forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email_2.xml +0 -9
  1496. forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_email_3.xml +0 -9
  1497. forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_name.xml +0 -9
  1498. forkparser-6.1.0/tests/wellformed/rss/channel_author_map_author_detail_name_2.xml +0 -9
  1499. forkparser-6.1.0/tests/wellformed/rss/channel_category.xml +0 -9
  1500. forkparser-6.1.0/tests/wellformed/rss/channel_category_domain.xml +0 -9
  1501. forkparser-6.1.0/tests/wellformed/rss/channel_category_multiple.xml +0 -10
  1502. forkparser-6.1.0/tests/wellformed/rss/channel_category_multiple_2.xml +0 -10
  1503. forkparser-6.1.0/tests/wellformed/rss/channel_cloud_domain.xml +0 -9
  1504. forkparser-6.1.0/tests/wellformed/rss/channel_cloud_path.xml +0 -9
  1505. forkparser-6.1.0/tests/wellformed/rss/channel_cloud_port.xml +0 -9
  1506. forkparser-6.1.0/tests/wellformed/rss/channel_cloud_protocol.xml +0 -9
  1507. forkparser-6.1.0/tests/wellformed/rss/channel_cloud_registerProcedure.xml +0 -9
  1508. forkparser-6.1.0/tests/wellformed/rss/channel_copyright.xml +0 -9
  1509. forkparser-6.1.0/tests/wellformed/rss/channel_dc_author.xml +0 -9
  1510. forkparser-6.1.0/tests/wellformed/rss/channel_dc_author_map_author_detail_email.xml +0 -9
  1511. forkparser-6.1.0/tests/wellformed/rss/channel_dc_author_map_author_detail_name.xml +0 -9
  1512. forkparser-6.1.0/tests/wellformed/rss/channel_dc_contributor.xml +0 -9
  1513. forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator.xml +0 -9
  1514. forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator_map_author_detail_email.xml +0 -9
  1515. forkparser-6.1.0/tests/wellformed/rss/channel_dc_creator_map_author_detail_name.xml +0 -9
  1516. forkparser-6.1.0/tests/wellformed/rss/channel_dc_date.xml +0 -9
  1517. forkparser-6.1.0/tests/wellformed/rss/channel_dc_date_parsed.xml +0 -9
  1518. forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher.xml +0 -9
  1519. forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher_email.xml +0 -9
  1520. forkparser-6.1.0/tests/wellformed/rss/channel_dc_publisher_name.xml +0 -9
  1521. forkparser-6.1.0/tests/wellformed/rss/channel_dc_rights.xml +0 -9
  1522. forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject.xml +0 -9
  1523. forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject_2.xml +0 -9
  1524. forkparser-6.1.0/tests/wellformed/rss/channel_dc_subject_multiple.xml +0 -10
  1525. forkparser-6.1.0/tests/wellformed/rss/channel_dc_title.xml +0 -9
  1526. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_created.xml +0 -9
  1527. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_created_parsed.xml +0 -9
  1528. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_issued.xml +0 -9
  1529. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_issued_parsed.xml +0 -9
  1530. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_modified.xml +0 -9
  1531. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_modified_parsed.xml +0 -9
  1532. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity.xml +0 -9
  1533. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_end.xml +0 -9
  1534. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_end_parsed.xml +0 -9
  1535. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_parsed.xml +0 -9
  1536. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_start.xml +0 -9
  1537. forkparser-6.1.0/tests/wellformed/rss/channel_dcterms_validity_start_parsed.xml +0 -9
  1538. forkparser-6.1.0/tests/wellformed/rss/channel_description.xml +0 -9
  1539. forkparser-6.1.0/tests/wellformed/rss/channel_description_escaped_markup.xml +0 -9
  1540. forkparser-6.1.0/tests/wellformed/rss/channel_description_map_tagline.xml +0 -9
  1541. forkparser-6.1.0/tests/wellformed/rss/channel_description_naked_markup.xml +0 -9
  1542. forkparser-6.1.0/tests/wellformed/rss/channel_description_shorttag.xml +0 -10
  1543. forkparser-6.1.0/tests/wellformed/rss/channel_docs.xml +0 -9
  1544. forkparser-6.1.0/tests/wellformed/rss/channel_generator.xml +0 -9
  1545. forkparser-6.1.0/tests/wellformed/rss/channel_image_description.xml +0 -16
  1546. forkparser-6.1.0/tests/wellformed/rss/channel_image_height.xml +0 -16
  1547. forkparser-6.1.0/tests/wellformed/rss/channel_image_link.xml +0 -16
  1548. forkparser-6.1.0/tests/wellformed/rss/channel_image_link_bleed.xml +0 -12
  1549. forkparser-6.1.0/tests/wellformed/rss/channel_image_link_conflict.xml +0 -12
  1550. forkparser-6.1.0/tests/wellformed/rss/channel_image_title.xml +0 -16
  1551. forkparser-6.1.0/tests/wellformed/rss/channel_image_title_conflict.xml +0 -12
  1552. forkparser-6.1.0/tests/wellformed/rss/channel_image_url.xml +0 -16
  1553. forkparser-6.1.0/tests/wellformed/rss/channel_image_width.xml +0 -16
  1554. forkparser-6.1.0/tests/wellformed/rss/channel_lastBuildDate.xml +0 -9
  1555. forkparser-6.1.0/tests/wellformed/rss/channel_lastBuildDate_parsed.xml +0 -9
  1556. forkparser-6.1.0/tests/wellformed/rss/channel_link.xml +0 -9
  1557. forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor.xml +0 -9
  1558. forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor_map_author_detail_email.xml +0 -9
  1559. forkparser-6.1.0/tests/wellformed/rss/channel_managingEditor_map_author_detail_name.xml +0 -9
  1560. forkparser-6.1.0/tests/wellformed/rss/channel_pubDate.xml +0 -9
  1561. forkparser-6.1.0/tests/wellformed/rss/channel_pubDate_map_updated_parsed.xml +0 -9
  1562. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_description.xml +0 -14
  1563. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_description_conflict.xml +0 -12
  1564. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link.xml +0 -12
  1565. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link_bleed.xml +0 -12
  1566. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_link_conflict.xml +0 -12
  1567. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_name.xml +0 -11
  1568. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_title.xml +0 -12
  1569. forkparser-6.1.0/tests/wellformed/rss/channel_textInput_title_conflict.xml +0 -12
  1570. forkparser-6.1.0/tests/wellformed/rss/channel_title.xml +0 -9
  1571. forkparser-6.1.0/tests/wellformed/rss/channel_title_apos.xml +0 -9
  1572. forkparser-6.1.0/tests/wellformed/rss/channel_title_gt.xml +0 -9
  1573. forkparser-6.1.0/tests/wellformed/rss/channel_title_lt.xml +0 -9
  1574. forkparser-6.1.0/tests/wellformed/rss/channel_ttl.xml +0 -9
  1575. forkparser-6.1.0/tests/wellformed/rss/channel_webMaster.xml +0 -9
  1576. forkparser-6.1.0/tests/wellformed/rss/channel_webMaster_email.xml +0 -9
  1577. forkparser-6.1.0/tests/wellformed/rss/channel_webMaster_name.xml +0 -9
  1578. forkparser-6.1.0/tests/wellformed/rss/entity_in_doctype.xml +0 -16
  1579. forkparser-6.1.0/tests/wellformed/rss/item_author.xml +0 -11
  1580. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email.xml +0 -11
  1581. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email2.xml +0 -11
  1582. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_email3.xml +0 -11
  1583. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name.xml +0 -11
  1584. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name2.xml +0 -11
  1585. forkparser-6.1.0/tests/wellformed/rss/item_author_map_author_detail_name3.xml +0 -11
  1586. forkparser-6.1.0/tests/wellformed/rss/item_category.xml +0 -11
  1587. forkparser-6.1.0/tests/wellformed/rss/item_category_domain.xml +0 -11
  1588. forkparser-6.1.0/tests/wellformed/rss/item_category_image.xml +0 -17
  1589. forkparser-6.1.0/tests/wellformed/rss/item_category_multiple.xml +0 -12
  1590. forkparser-6.1.0/tests/wellformed/rss/item_category_multiple_2.xml +0 -12
  1591. forkparser-6.1.0/tests/wellformed/rss/item_cc_license.xml +0 -12
  1592. forkparser-6.1.0/tests/wellformed/rss/item_comments.xml +0 -11
  1593. forkparser-6.1.0/tests/wellformed/rss/item_content_encoded.xml +0 -11
  1594. forkparser-6.1.0/tests/wellformed/rss/item_content_encoded_mode.xml +0 -11
  1595. forkparser-6.1.0/tests/wellformed/rss/item_content_encoded_type.xml +0 -11
  1596. forkparser-6.1.0/tests/wellformed/rss/item_creativeCommons_license.xml +0 -12
  1597. forkparser-6.1.0/tests/wellformed/rss/item_dc_author.xml +0 -11
  1598. forkparser-6.1.0/tests/wellformed/rss/item_dc_author_map_author_detail_email.xml +0 -11
  1599. forkparser-6.1.0/tests/wellformed/rss/item_dc_author_map_author_detail_name.xml +0 -11
  1600. forkparser-6.1.0/tests/wellformed/rss/item_dc_contributor.xml +0 -11
  1601. forkparser-6.1.0/tests/wellformed/rss/item_dc_creator.xml +0 -11
  1602. forkparser-6.1.0/tests/wellformed/rss/item_dc_creator_map_author_detail_email.xml +0 -11
  1603. forkparser-6.1.0/tests/wellformed/rss/item_dc_creator_map_author_detail_name.xml +0 -11
  1604. forkparser-6.1.0/tests/wellformed/rss/item_dc_date.xml +0 -11
  1605. forkparser-6.1.0/tests/wellformed/rss/item_dc_date_parsed.xml +0 -11
  1606. forkparser-6.1.0/tests/wellformed/rss/item_dc_description.xml +0 -11
  1607. forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher.xml +0 -11
  1608. forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher_email.xml +0 -11
  1609. forkparser-6.1.0/tests/wellformed/rss/item_dc_publisher_name.xml +0 -11
  1610. forkparser-6.1.0/tests/wellformed/rss/item_dc_rights.xml +0 -11
  1611. forkparser-6.1.0/tests/wellformed/rss/item_dc_subject.xml +0 -11
  1612. forkparser-6.1.0/tests/wellformed/rss/item_dc_subject_2.xml +0 -11
  1613. forkparser-6.1.0/tests/wellformed/rss/item_dc_subject_multiple.xml +0 -12
  1614. forkparser-6.1.0/tests/wellformed/rss/item_dc_title.xml +0 -11
  1615. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_created.xml +0 -11
  1616. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_created_parsed.xml +0 -11
  1617. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_issued.xml +0 -11
  1618. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_issued_parsed.xml +0 -11
  1619. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_modified.xml +0 -11
  1620. forkparser-6.1.0/tests/wellformed/rss/item_dcterms_modified_parsed.xml +0 -11
  1621. forkparser-6.1.0/tests/wellformed/rss/item_description.xml +0 -11
  1622. forkparser-6.1.0/tests/wellformed/rss/item_description_and_summary.xml +0 -12
  1623. forkparser-6.1.0/tests/wellformed/rss/item_description_br.xml +0 -11
  1624. forkparser-6.1.0/tests/wellformed/rss/item_description_br_shorttag.xml +0 -12
  1625. forkparser-6.1.0/tests/wellformed/rss/item_description_code_br.xml +0 -12
  1626. forkparser-6.1.0/tests/wellformed/rss/item_description_escaped_markup.xml +0 -11
  1627. forkparser-6.1.0/tests/wellformed/rss/item_description_map_summary.xml +0 -11
  1628. forkparser-6.1.0/tests/wellformed/rss/item_description_naked_markup.xml +0 -11
  1629. forkparser-6.1.0/tests/wellformed/rss/item_description_not_a_doctype.xml +0 -9
  1630. forkparser-6.1.0/tests/wellformed/rss/item_description_not_a_doctype2.xml +0 -9
  1631. forkparser-6.1.0/tests/wellformed/rss/item_enclosure_length.xml +0 -12
  1632. forkparser-6.1.0/tests/wellformed/rss/item_enclosure_multiple.xml +0 -13
  1633. forkparser-6.1.0/tests/wellformed/rss/item_enclosure_type.xml +0 -12
  1634. forkparser-6.1.0/tests/wellformed/rss/item_enclosure_url.xml +0 -12
  1635. forkparser-6.1.0/tests/wellformed/rss/item_expirationDate.xml +0 -11
  1636. forkparser-6.1.0/tests/wellformed/rss/item_expirationDate_multiple_values.xml +0 -12
  1637. forkparser-6.1.0/tests/wellformed/rss/item_expirationDate_parsed.xml +0 -11
  1638. forkparser-6.1.0/tests/wellformed/rss/item_fullitem.xml +0 -11
  1639. forkparser-6.1.0/tests/wellformed/rss/item_fullitem_mode.xml +0 -11
  1640. forkparser-6.1.0/tests/wellformed/rss/item_fullitem_type.xml +0 -11
  1641. forkparser-6.1.0/tests/wellformed/rss/item_guid.xml +0 -11
  1642. forkparser-6.1.0/tests/wellformed/rss/item_guid_conflict_link.xml +0 -12
  1643. forkparser-6.1.0/tests/wellformed/rss/item_guid_guidislink.xml +0 -11
  1644. forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_ValueError.xml +0 -7
  1645. forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_conflict_link.xml +0 -12
  1646. forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_conflict_link_not_guidislink.xml +0 -12
  1647. forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_guidislink.xml +0 -11
  1648. forkparser-6.1.0/tests/wellformed/rss/item_guid_isPermaLink_map_link.xml +0 -11
  1649. forkparser-6.1.0/tests/wellformed/rss/item_guid_map_link.xml +0 -11
  1650. forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink.xml +0 -11
  1651. forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_conflict_link.xml +0 -12
  1652. forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_guidislink.xml +0 -11
  1653. forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_guidislink_2.xml +0 -12
  1654. forkparser-6.1.0/tests/wellformed/rss/item_guid_not_permalink_not_url.xml +0 -11
  1655. forkparser-6.1.0/tests/wellformed/rss/item_image_link_bleed.xml +0 -14
  1656. forkparser-6.1.0/tests/wellformed/rss/item_image_link_conflict.xml +0 -14
  1657. forkparser-6.1.0/tests/wellformed/rss/item_link.xml +0 -11
  1658. forkparser-6.1.0/tests/wellformed/rss/item_madeup_tags_element.xml +0 -8
  1659. forkparser-6.1.0/tests/wellformed/rss/item_multiple_dc_creator.xml +0 -13
  1660. forkparser-6.1.0/tests/wellformed/rss/item_pubDate.xml +0 -11
  1661. forkparser-6.1.0/tests/wellformed/rss/item_pubDate_map_updated_parsed.xml +0 -11
  1662. forkparser-6.1.0/tests/wellformed/rss/item_source.xml +0 -11
  1663. forkparser-6.1.0/tests/wellformed/rss/item_source_url.xml +0 -11
  1664. forkparser-6.1.0/tests/wellformed/rss/item_summary_and_description.xml +0 -12
  1665. forkparser-6.1.0/tests/wellformed/rss/item_title.xml +0 -11
  1666. forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body.xml +0 -13
  1667. forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body_mode.xml +0 -13
  1668. forkparser-6.1.0/tests/wellformed/rss/item_xhtml_body_type.xml +0 -13
  1669. forkparser-6.1.0/tests/wellformed/rss/newlocation.xml +0 -9
  1670. forkparser-6.1.0/tests/wellformed/rss/rss_namespace_1.xml +0 -9
  1671. forkparser-6.1.0/tests/wellformed/rss/rss_namespace_2.xml +0 -9
  1672. forkparser-6.1.0/tests/wellformed/rss/rss_namespace_3.xml +0 -9
  1673. forkparser-6.1.0/tests/wellformed/rss/rss_namespace_4.xml +0 -9
  1674. forkparser-6.1.0/tests/wellformed/rss/rss_version_090.xml +0 -6
  1675. forkparser-6.1.0/tests/wellformed/rss/rss_version_091_netscape.xml +0 -7
  1676. forkparser-6.1.0/tests/wellformed/rss/rss_version_091_userland.xml +0 -6
  1677. forkparser-6.1.0/tests/wellformed/rss/rss_version_092.xml +0 -6
  1678. forkparser-6.1.0/tests/wellformed/rss/rss_version_093.xml +0 -6
  1679. forkparser-6.1.0/tests/wellformed/rss/rss_version_094.xml +0 -6
  1680. forkparser-6.1.0/tests/wellformed/rss/rss_version_20.xml +0 -6
  1681. forkparser-6.1.0/tests/wellformed/rss/rss_version_201.xml +0 -6
  1682. forkparser-6.1.0/tests/wellformed/rss/rss_version_21.xml +0 -6
  1683. forkparser-6.1.0/tests/wellformed/rss/rss_version_missing.xml +0 -9
  1684. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_abbr.xml +0 -9
  1685. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accept-charset.xml +0 -9
  1686. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accept.xml +0 -9
  1687. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_accesskey.xml +0 -9
  1688. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_action.xml +0 -9
  1689. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_align.xml +0 -9
  1690. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_alt.xml +0 -9
  1691. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autocomplete.xml +0 -9
  1692. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autofocus.xml +0 -9
  1693. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_autoplay.xml +0 -9
  1694. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_axis.xml +0 -9
  1695. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_background.xml +0 -9
  1696. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_balance.xml +0 -9
  1697. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bgcolor.xml +0 -9
  1698. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bgproperties.xml +0 -9
  1699. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_border.xml +0 -9
  1700. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolor.xml +0 -9
  1701. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolordark.xml +0 -9
  1702. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bordercolorlight.xml +0 -9
  1703. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_bottompadding.xml +0 -9
  1704. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cellpadding.xml +0 -9
  1705. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cellspacing.xml +0 -9
  1706. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ch.xml +0 -9
  1707. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_challenge.xml +0 -9
  1708. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_char.xml +0 -9
  1709. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_charoff.xml +0 -9
  1710. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_charset.xml +0 -9
  1711. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_checked.xml +0 -9
  1712. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_choff.xml +0 -9
  1713. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cite.xml +0 -9
  1714. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_class.xml +0 -9
  1715. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_clear.xml +0 -9
  1716. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_color.xml +0 -9
  1717. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_cols.xml +0 -9
  1718. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_colspan.xml +0 -9
  1719. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_compact.xml +0 -9
  1720. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_contenteditable.xml +0 -9
  1721. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_coords.xml +0 -9
  1722. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_data.xml +0 -9
  1723. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datafld.xml +0 -9
  1724. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datapagesize.xml +0 -9
  1725. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datasrc.xml +0 -9
  1726. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_datetime.xml +0 -9
  1727. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_default.xml +0 -9
  1728. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_delay.xml +0 -9
  1729. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_dir.xml +0 -9
  1730. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_disabled.xml +0 -9
  1731. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_draggable.xml +0 -9
  1732. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_dynsrc.xml +0 -9
  1733. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_enctype.xml +0 -9
  1734. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_end.xml +0 -9
  1735. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_face.xml +0 -9
  1736. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_for.xml +0 -9
  1737. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_form.xml +0 -9
  1738. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_frame.xml +0 -9
  1739. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_galleryimg.xml +0 -9
  1740. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_gutter.xml +0 -9
  1741. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_headers.xml +0 -9
  1742. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_height.xml +0 -9
  1743. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hidden.xml +0 -9
  1744. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hidefocus.xml +0 -9
  1745. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_high.xml +0 -9
  1746. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_href.xml +0 -9
  1747. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hreflang.xml +0 -9
  1748. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_hspace.xml +0 -9
  1749. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_icon.xml +0 -9
  1750. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_id.xml +0 -9
  1751. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_inputmode.xml +0 -9
  1752. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ismap.xml +0 -9
  1753. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_keytype.xml +0 -9
  1754. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_label.xml +0 -9
  1755. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_lang.xml +0 -9
  1756. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_leftspacing.xml +0 -9
  1757. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_list.xml +0 -9
  1758. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_longdesc.xml +0 -9
  1759. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loop.xml +0 -9
  1760. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopcount.xml +0 -9
  1761. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopend.xml +0 -9
  1762. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_loopstart.xml +0 -9
  1763. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_low.xml +0 -9
  1764. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_lowsrc.xml +0 -9
  1765. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_max.xml +0 -9
  1766. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_maxlength.xml +0 -9
  1767. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_media.xml +0 -9
  1768. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_method.xml +0 -9
  1769. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_min.xml +0 -9
  1770. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_multiple.xml +0 -9
  1771. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_name.xml +0 -9
  1772. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_nohref.xml +0 -9
  1773. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_noshade.xml +0 -9
  1774. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_nowrap.xml +0 -9
  1775. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_open.xml +0 -9
  1776. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_optimum.xml +0 -9
  1777. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_pattern.xml +0 -9
  1778. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_ping.xml +0 -9
  1779. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_point-size.xml +0 -9
  1780. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_poster.xml +0 -9
  1781. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_pqg.xml +0 -9
  1782. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_preload.xml +0 -9
  1783. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_prompt.xml +0 -9
  1784. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_radiogroup.xml +0 -9
  1785. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_readonly.xml +0 -9
  1786. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rel.xml +0 -9
  1787. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_repeat-max.xml +0 -9
  1788. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_repeat-min.xml +0 -9
  1789. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_replace.xml +0 -9
  1790. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_required.xml +0 -9
  1791. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rev.xml +0 -9
  1792. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rightspacing.xml +0 -9
  1793. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rows.xml +0 -9
  1794. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rowspan.xml +0 -9
  1795. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_rules.xml +0 -9
  1796. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_scope.xml +0 -9
  1797. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_selected.xml +0 -9
  1798. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_shape.xml +0 -9
  1799. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_size.xml +0 -9
  1800. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_span.xml +0 -9
  1801. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_src.xml +0 -9
  1802. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_start.xml +0 -9
  1803. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_step.xml +0 -9
  1804. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_summary.xml +0 -9
  1805. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_suppress.xml +0 -9
  1806. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_tabindex.xml +0 -9
  1807. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_target.xml +0 -9
  1808. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_template.xml +0 -9
  1809. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_title.xml +0 -9
  1810. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_toppadding.xml +0 -9
  1811. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_type.xml +0 -9
  1812. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_unselectable.xml +0 -9
  1813. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_urn.xml +0 -9
  1814. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_usemap.xml +0 -9
  1815. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_valign.xml +0 -9
  1816. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_value.xml +0 -9
  1817. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_variable.xml +0 -9
  1818. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_volume.xml +0 -9
  1819. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_vrml.xml +0 -9
  1820. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_vspace.xml +0 -9
  1821. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_width.xml +0 -9
  1822. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_attribute_wrap.xml +0 -9
  1823. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_a.xml +0 -9
  1824. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_abbr.xml +0 -9
  1825. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_acronym.xml +0 -9
  1826. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_address.xml +0 -9
  1827. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_area.xml +0 -9
  1828. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_article.xml +0 -9
  1829. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_aside.xml +0 -9
  1830. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_audio.xml +0 -9
  1831. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_b.xml +0 -9
  1832. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_big.xml +0 -9
  1833. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_blockquote.xml +0 -9
  1834. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_br.xml +0 -9
  1835. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_button.xml +0 -9
  1836. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_canvas.xml +0 -9
  1837. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_caption.xml +0 -9
  1838. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_center.xml +0 -9
  1839. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_cite.xml +0 -9
  1840. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_code.xml +0 -9
  1841. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_col.xml +0 -9
  1842. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_colgroup.xml +0 -9
  1843. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_command.xml +0 -9
  1844. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_datagrid.xml +0 -9
  1845. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_datalist.xml +0 -9
  1846. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dd.xml +0 -9
  1847. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_del.xml +0 -9
  1848. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_details.xml +0 -9
  1849. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dfn.xml +0 -9
  1850. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dialog.xml +0 -9
  1851. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dir.xml +0 -9
  1852. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_div.xml +0 -9
  1853. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dl.xml +0 -9
  1854. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_dt.xml +0 -9
  1855. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_em.xml +0 -9
  1856. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_event-source.xml +0 -9
  1857. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_fieldset.xml +0 -9
  1858. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_figure.xml +0 -9
  1859. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_font.xml +0 -9
  1860. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_footer.xml +0 -9
  1861. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_form.xml +0 -9
  1862. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h1.xml +0 -9
  1863. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h2.xml +0 -9
  1864. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h3.xml +0 -9
  1865. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h4.xml +0 -9
  1866. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h5.xml +0 -9
  1867. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_h6.xml +0 -9
  1868. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_header.xml +0 -9
  1869. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_hr.xml +0 -9
  1870. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_i.xml +0 -9
  1871. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_img.xml +0 -9
  1872. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_input.xml +0 -9
  1873. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ins.xml +0 -9
  1874. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_kbd.xml +0 -9
  1875. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_keygen.xml +0 -9
  1876. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_label.xml +0 -9
  1877. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_legend.xml +0 -9
  1878. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_li.xml +0 -9
  1879. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_m.xml +0 -9
  1880. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_map.xml +0 -9
  1881. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_menu.xml +0 -9
  1882. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_meter.xml +0 -9
  1883. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_multicol.xml +0 -9
  1884. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_nav.xml +0 -9
  1885. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_nextid.xml +0 -9
  1886. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_noscript.xml +0 -9
  1887. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ol.xml +0 -9
  1888. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_optgroup.xml +0 -9
  1889. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_option.xml +0 -9
  1890. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_output.xml +0 -9
  1891. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_p.xml +0 -9
  1892. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_pre.xml +0 -9
  1893. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_progress.xml +0 -9
  1894. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_q.xml +0 -9
  1895. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_s.xml +0 -9
  1896. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_samp.xml +0 -9
  1897. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_section.xml +0 -9
  1898. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_select.xml +0 -9
  1899. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_small.xml +0 -9
  1900. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sound.xml +0 -9
  1901. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_source.xml +0 -9
  1902. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_spacer.xml +0 -9
  1903. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_span.xml +0 -9
  1904. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_strike.xml +0 -9
  1905. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_strong.xml +0 -9
  1906. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sub.xml +0 -9
  1907. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_sup.xml +0 -9
  1908. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_table.xml +0 -9
  1909. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tbody.xml +0 -9
  1910. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_td.xml +0 -9
  1911. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_textarea.xml +0 -9
  1912. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tfoot.xml +0 -9
  1913. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_th.xml +0 -9
  1914. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_thead.xml +0 -9
  1915. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_time.xml +0 -9
  1916. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tr.xml +0 -9
  1917. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_tt.xml +0 -9
  1918. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_u.xml +0 -9
  1919. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_ul.xml +0 -9
  1920. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_var.xml +0 -9
  1921. forkparser-6.1.0/tests/wellformed/sanitize/acceptable_element_video.xml +0 -9
  1922. forkparser-6.1.0/tests/wellformed/sanitize/blogger_dollar_sign_in_attribute.xml +0 -11
  1923. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_applet.xml +0 -9
  1924. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_blink.xml +0 -9
  1925. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_crazy.xml +0 -75
  1926. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_embed.xml +0 -9
  1927. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_frame.xml +0 -9
  1928. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_iframe.xml +0 -9
  1929. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_link.xml +0 -9
  1930. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_meta.xml +0 -9
  1931. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_object.xml +0 -9
  1932. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onabort.xml +0 -9
  1933. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onblur.xml +0 -9
  1934. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onchange.xml +0 -9
  1935. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onclick.xml +0 -9
  1936. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_ondblclick.xml +0 -9
  1937. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onerror.xml +0 -9
  1938. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onfocus.xml +0 -9
  1939. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeydown.xml +0 -9
  1940. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeypress.xml +0 -9
  1941. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onkeyup.xml +0 -9
  1942. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onload.xml +0 -9
  1943. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmousedown.xml +0 -9
  1944. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseout.xml +0 -9
  1945. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseover.xml +0 -9
  1946. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onmouseup.xml +0 -9
  1947. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onreset.xml +0 -9
  1948. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onresize.xml +0 -9
  1949. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onsubmit.xml +0 -9
  1950. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_onunload.xml +0 -9
  1951. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script.xml +0 -9
  1952. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_base64.xml +0 -12
  1953. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_cdata.xml +0 -9
  1954. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_script_inline.xml +0 -9
  1955. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_style.xml +0 -9
  1956. forkparser-6.1.0/tests/wellformed/sanitize/entry_content_style_tag.xml +0 -9
  1957. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_applet.xml +0 -9
  1958. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_blink.xml +0 -9
  1959. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_crazy.xml +0 -75
  1960. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_embed.xml +0 -9
  1961. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_frame.xml +0 -9
  1962. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_iframe.xml +0 -9
  1963. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_link.xml +0 -9
  1964. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_meta.xml +0 -9
  1965. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_object.xml +0 -9
  1966. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onabort.xml +0 -9
  1967. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onblur.xml +0 -9
  1968. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onchange.xml +0 -9
  1969. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onclick.xml +0 -9
  1970. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_ondblclick.xml +0 -9
  1971. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onerror.xml +0 -9
  1972. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onfocus.xml +0 -9
  1973. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeydown.xml +0 -9
  1974. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeypress.xml +0 -9
  1975. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onkeyup.xml +0 -9
  1976. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onload.xml +0 -9
  1977. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmousedown.xml +0 -9
  1978. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseout.xml +0 -9
  1979. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseover.xml +0 -9
  1980. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onmouseup.xml +0 -9
  1981. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onreset.xml +0 -9
  1982. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onresize.xml +0 -9
  1983. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onsubmit.xml +0 -9
  1984. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_onunload.xml +0 -9
  1985. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script.xml +0 -9
  1986. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_base64.xml +0 -12
  1987. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_cdata.xml +0 -9
  1988. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_inline.xml +0 -9
  1989. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_script_map_description.xml +0 -9
  1990. forkparser-6.1.0/tests/wellformed/sanitize/entry_summary_style.xml +0 -9
  1991. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_applet.xml +0 -9
  1992. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_blink.xml +0 -9
  1993. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_crazy.xml +0 -75
  1994. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_embed.xml +0 -9
  1995. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_frame.xml +0 -9
  1996. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_iframe.xml +0 -9
  1997. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_link.xml +0 -9
  1998. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_meta.xml +0 -9
  1999. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_object.xml +0 -9
  2000. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onabort.xml +0 -9
  2001. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onblur.xml +0 -9
  2002. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onchange.xml +0 -9
  2003. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onclick.xml +0 -9
  2004. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_ondblclick.xml +0 -9
  2005. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onerror.xml +0 -9
  2006. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onfocus.xml +0 -9
  2007. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeydown.xml +0 -9
  2008. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeypress.xml +0 -9
  2009. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onkeyup.xml +0 -9
  2010. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onload.xml +0 -9
  2011. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmousedown.xml +0 -9
  2012. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseout.xml +0 -9
  2013. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseover.xml +0 -9
  2014. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onmouseup.xml +0 -9
  2015. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onreset.xml +0 -9
  2016. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onresize.xml +0 -9
  2017. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onsubmit.xml +0 -9
  2018. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_onunload.xml +0 -9
  2019. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script.xml +0 -9
  2020. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script_cdata.xml +0 -9
  2021. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_script_inline.xml +0 -9
  2022. forkparser-6.1.0/tests/wellformed/sanitize/entry_title_style.xml +0 -9
  2023. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_applet.xml +0 -7
  2024. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_blink.xml +0 -7
  2025. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_crazy.xml +0 -73
  2026. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_embed.xml +0 -7
  2027. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_frame.xml +0 -7
  2028. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_iframe.xml +0 -7
  2029. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_link.xml +0 -7
  2030. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_meta.xml +0 -7
  2031. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_object.xml +0 -7
  2032. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onabort.xml +0 -7
  2033. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onblur.xml +0 -7
  2034. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onchange.xml +0 -7
  2035. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onclick.xml +0 -7
  2036. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_ondblclick.xml +0 -7
  2037. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onerror.xml +0 -7
  2038. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onfocus.xml +0 -7
  2039. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeydown.xml +0 -7
  2040. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeypress.xml +0 -7
  2041. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onkeyup.xml +0 -7
  2042. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onload.xml +0 -7
  2043. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmousedown.xml +0 -7
  2044. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseout.xml +0 -7
  2045. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseover.xml +0 -7
  2046. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onmouseup.xml +0 -7
  2047. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onreset.xml +0 -7
  2048. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onresize.xml +0 -7
  2049. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onsubmit.xml +0 -7
  2050. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_onunload.xml +0 -7
  2051. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script.xml +0 -7
  2052. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script_cdata.xml +0 -7
  2053. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_script_inline.xml +0 -7
  2054. forkparser-6.1.0/tests/wellformed/sanitize/feed_copyright_style.xml +0 -7
  2055. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_applet.xml +0 -7
  2056. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_blink.xml +0 -7
  2057. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_crazy.xml +0 -73
  2058. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_embed.xml +0 -7
  2059. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_frame.xml +0 -7
  2060. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_iframe.xml +0 -7
  2061. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_link.xml +0 -7
  2062. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_meta.xml +0 -7
  2063. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_object.xml +0 -7
  2064. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onabort.xml +0 -7
  2065. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onblur.xml +0 -7
  2066. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onchange.xml +0 -7
  2067. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onclick.xml +0 -7
  2068. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_ondblclick.xml +0 -7
  2069. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onerror.xml +0 -7
  2070. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onfocus.xml +0 -7
  2071. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeydown.xml +0 -7
  2072. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeypress.xml +0 -7
  2073. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onkeyup.xml +0 -7
  2074. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onload.xml +0 -7
  2075. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmousedown.xml +0 -7
  2076. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseout.xml +0 -7
  2077. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseover.xml +0 -7
  2078. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onmouseup.xml +0 -7
  2079. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onreset.xml +0 -7
  2080. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onresize.xml +0 -7
  2081. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onsubmit.xml +0 -7
  2082. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_onunload.xml +0 -7
  2083. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script.xml +0 -7
  2084. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script_cdata.xml +0 -7
  2085. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_script_inline.xml +0 -7
  2086. forkparser-6.1.0/tests/wellformed/sanitize/feed_info_style.xml +0 -7
  2087. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_applet.xml +0 -7
  2088. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_blink.xml +0 -7
  2089. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_crazy.xml +0 -73
  2090. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_embed.xml +0 -7
  2091. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_frame.xml +0 -7
  2092. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_iframe.xml +0 -7
  2093. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_link.xml +0 -7
  2094. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_meta.xml +0 -7
  2095. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_object.xml +0 -7
  2096. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onabort.xml +0 -7
  2097. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onblur.xml +0 -7
  2098. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onchange.xml +0 -7
  2099. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onclick.xml +0 -7
  2100. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_ondblclick.xml +0 -7
  2101. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onerror.xml +0 -7
  2102. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onfocus.xml +0 -7
  2103. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeydown.xml +0 -7
  2104. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeypress.xml +0 -7
  2105. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onkeyup.xml +0 -7
  2106. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onload.xml +0 -7
  2107. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmousedown.xml +0 -7
  2108. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseout.xml +0 -7
  2109. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseover.xml +0 -7
  2110. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onmouseup.xml +0 -7
  2111. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onreset.xml +0 -7
  2112. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onresize.xml +0 -7
  2113. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onsubmit.xml +0 -7
  2114. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_onunload.xml +0 -7
  2115. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script.xml +0 -7
  2116. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script_cdata.xml +0 -7
  2117. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_script_inline.xml +0 -7
  2118. forkparser-6.1.0/tests/wellformed/sanitize/feed_subtitle_style.xml +0 -7
  2119. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_applet.xml +0 -7
  2120. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_blink.xml +0 -7
  2121. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_crazy.xml +0 -73
  2122. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_embed.xml +0 -7
  2123. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_frame.xml +0 -7
  2124. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_iframe.xml +0 -7
  2125. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_link.xml +0 -7
  2126. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_meta.xml +0 -7
  2127. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_object.xml +0 -7
  2128. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onabort.xml +0 -7
  2129. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onblur.xml +0 -7
  2130. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onchange.xml +0 -7
  2131. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onclick.xml +0 -7
  2132. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_ondblclick.xml +0 -7
  2133. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onerror.xml +0 -7
  2134. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onfocus.xml +0 -7
  2135. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeydown.xml +0 -7
  2136. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeypress.xml +0 -7
  2137. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onkeyup.xml +0 -7
  2138. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onload.xml +0 -7
  2139. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmousedown.xml +0 -7
  2140. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseout.xml +0 -7
  2141. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseover.xml +0 -7
  2142. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onmouseup.xml +0 -7
  2143. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onreset.xml +0 -7
  2144. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onresize.xml +0 -7
  2145. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onsubmit.xml +0 -7
  2146. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_onunload.xml +0 -7
  2147. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script.xml +0 -7
  2148. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_cdata.xml +0 -7
  2149. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_inline.xml +0 -7
  2150. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_script_map_description.xml +0 -7
  2151. forkparser-6.1.0/tests/wellformed/sanitize/feed_tagline_style.xml +0 -7
  2152. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_applet.xml +0 -7
  2153. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_blink.xml +0 -7
  2154. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_crazy.xml +0 -73
  2155. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_embed.xml +0 -7
  2156. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_frame.xml +0 -7
  2157. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_iframe.xml +0 -7
  2158. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_link.xml +0 -7
  2159. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_meta.xml +0 -7
  2160. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_object.xml +0 -7
  2161. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onabort.xml +0 -7
  2162. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onblur.xml +0 -7
  2163. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onchange.xml +0 -7
  2164. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onclick.xml +0 -7
  2165. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_ondblclick.xml +0 -7
  2166. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onerror.xml +0 -7
  2167. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onfocus.xml +0 -7
  2168. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeydown.xml +0 -7
  2169. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeypress.xml +0 -7
  2170. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onkeyup.xml +0 -7
  2171. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onload.xml +0 -7
  2172. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmousedown.xml +0 -7
  2173. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseout.xml +0 -7
  2174. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseover.xml +0 -7
  2175. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onmouseup.xml +0 -7
  2176. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onreset.xml +0 -7
  2177. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onresize.xml +0 -7
  2178. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onsubmit.xml +0 -7
  2179. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_onunload.xml +0 -7
  2180. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script.xml +0 -7
  2181. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script_cdata.xml +0 -7
  2182. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_script_inline.xml +0 -7
  2183. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_style.xml +0 -7
  2184. forkparser-6.1.0/tests/wellformed/sanitize/feed_title_unacceptable_uri.xml +0 -7
  2185. forkparser-6.1.0/tests/wellformed/sanitize/item_body_applet.xml +0 -11
  2186. forkparser-6.1.0/tests/wellformed/sanitize/item_body_blink.xml +0 -11
  2187. forkparser-6.1.0/tests/wellformed/sanitize/item_body_embed.xml +0 -11
  2188. forkparser-6.1.0/tests/wellformed/sanitize/item_body_frame.xml +0 -11
  2189. forkparser-6.1.0/tests/wellformed/sanitize/item_body_iframe.xml +0 -11
  2190. forkparser-6.1.0/tests/wellformed/sanitize/item_body_link.xml +0 -11
  2191. forkparser-6.1.0/tests/wellformed/sanitize/item_body_meta.xml +0 -11
  2192. forkparser-6.1.0/tests/wellformed/sanitize/item_body_object.xml +0 -11
  2193. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onabort.xml +0 -11
  2194. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onblur.xml +0 -11
  2195. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onchange.xml +0 -11
  2196. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onclick.xml +0 -11
  2197. forkparser-6.1.0/tests/wellformed/sanitize/item_body_ondblclick.xml +0 -11
  2198. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onerror.xml +0 -11
  2199. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onfocus.xml +0 -11
  2200. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeydown.xml +0 -11
  2201. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeypress.xml +0 -11
  2202. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onkeyup.xml +0 -11
  2203. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onload.xml +0 -11
  2204. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmousedown.xml +0 -11
  2205. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseout.xml +0 -11
  2206. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseover.xml +0 -11
  2207. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onmouseup.xml +0 -11
  2208. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onreset.xml +0 -11
  2209. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onresize.xml +0 -11
  2210. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onsubmit.xml +0 -11
  2211. forkparser-6.1.0/tests/wellformed/sanitize/item_body_onunload.xml +0 -11
  2212. forkparser-6.1.0/tests/wellformed/sanitize/item_body_script.xml +0 -11
  2213. forkparser-6.1.0/tests/wellformed/sanitize/item_body_script_map_content.xml +0 -11
  2214. forkparser-6.1.0/tests/wellformed/sanitize/item_body_style.xml +0 -11
  2215. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_applet.xml +0 -11
  2216. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_blink.xml +0 -11
  2217. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_crazy.xml +0 -77
  2218. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_embed.xml +0 -11
  2219. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_frame.xml +0 -11
  2220. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_iframe.xml +0 -11
  2221. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_link.xml +0 -11
  2222. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_map_content.xml +0 -11
  2223. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_meta.xml +0 -11
  2224. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_object.xml +0 -11
  2225. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onabort.xml +0 -11
  2226. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onblur.xml +0 -11
  2227. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onchange.xml +0 -11
  2228. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onclick.xml +0 -11
  2229. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_ondblclick.xml +0 -11
  2230. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onerror.xml +0 -11
  2231. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onfocus.xml +0 -11
  2232. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeydown.xml +0 -11
  2233. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeypress.xml +0 -11
  2234. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onkeyup.xml +0 -11
  2235. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onload.xml +0 -11
  2236. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmousedown.xml +0 -11
  2237. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseout.xml +0 -11
  2238. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseover.xml +0 -11
  2239. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onmouseup.xml +0 -11
  2240. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onreset.xml +0 -11
  2241. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onresize.xml +0 -11
  2242. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onsubmit.xml +0 -11
  2243. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_onunload.xml +0 -11
  2244. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script.xml +0 -11
  2245. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_cdata.xml +0 -11
  2246. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_map_content.xml +0 -11
  2247. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_script_nested_cdata.xml +0 -11
  2248. forkparser-6.1.0/tests/wellformed/sanitize/item_content_encoded_style.xml +0 -11
  2249. forkparser-6.1.0/tests/wellformed/sanitize/item_description_applet.xml +0 -11
  2250. forkparser-6.1.0/tests/wellformed/sanitize/item_description_blink.xml +0 -11
  2251. forkparser-6.1.0/tests/wellformed/sanitize/item_description_crazy.xml +0 -81
  2252. forkparser-6.1.0/tests/wellformed/sanitize/item_description_embed.xml +0 -11
  2253. forkparser-6.1.0/tests/wellformed/sanitize/item_description_frame.xml +0 -11
  2254. forkparser-6.1.0/tests/wellformed/sanitize/item_description_iframe.xml +0 -11
  2255. forkparser-6.1.0/tests/wellformed/sanitize/item_description_link.xml +0 -11
  2256. forkparser-6.1.0/tests/wellformed/sanitize/item_description_meta.xml +0 -11
  2257. forkparser-6.1.0/tests/wellformed/sanitize/item_description_object.xml +0 -11
  2258. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onabort.xml +0 -11
  2259. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onblur.xml +0 -11
  2260. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onchange.xml +0 -11
  2261. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onclick.xml +0 -11
  2262. forkparser-6.1.0/tests/wellformed/sanitize/item_description_ondblclick.xml +0 -11
  2263. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onerror.xml +0 -11
  2264. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onfocus.xml +0 -11
  2265. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeydown.xml +0 -11
  2266. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeypress.xml +0 -11
  2267. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onkeyup.xml +0 -11
  2268. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onload.xml +0 -11
  2269. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmousedown.xml +0 -11
  2270. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseout.xml +0 -11
  2271. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseover.xml +0 -11
  2272. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onmouseup.xml +0 -11
  2273. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onreset.xml +0 -11
  2274. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onresize.xml +0 -11
  2275. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onsubmit.xml +0 -11
  2276. forkparser-6.1.0/tests/wellformed/sanitize/item_description_onunload.xml +0 -11
  2277. forkparser-6.1.0/tests/wellformed/sanitize/item_description_script.xml +0 -11
  2278. forkparser-6.1.0/tests/wellformed/sanitize/item_description_script_cdata.xml +0 -11
  2279. forkparser-6.1.0/tests/wellformed/sanitize/item_description_script_map_summary.xml +0 -11
  2280. forkparser-6.1.0/tests/wellformed/sanitize/item_description_style.xml +0 -11
  2281. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_applet.xml +0 -11
  2282. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_blink.xml +0 -11
  2283. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_crazy.xml +0 -77
  2284. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_embed.xml +0 -11
  2285. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_frame.xml +0 -11
  2286. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_iframe.xml +0 -11
  2287. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_link.xml +0 -11
  2288. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_meta.xml +0 -11
  2289. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_object.xml +0 -11
  2290. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onabort.xml +0 -11
  2291. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onblur.xml +0 -11
  2292. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onchange.xml +0 -11
  2293. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onclick.xml +0 -11
  2294. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_ondblclick.xml +0 -11
  2295. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onerror.xml +0 -11
  2296. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onfocus.xml +0 -11
  2297. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeydown.xml +0 -11
  2298. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeypress.xml +0 -11
  2299. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onkeyup.xml +0 -11
  2300. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onload.xml +0 -11
  2301. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmousedown.xml +0 -11
  2302. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseout.xml +0 -11
  2303. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseover.xml +0 -11
  2304. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onmouseup.xml +0 -11
  2305. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onreset.xml +0 -11
  2306. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onresize.xml +0 -11
  2307. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onsubmit.xml +0 -11
  2308. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_onunload.xml +0 -11
  2309. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script.xml +0 -11
  2310. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script_cdata.xml +0 -11
  2311. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_script_map_summary.xml +0 -11
  2312. forkparser-6.1.0/tests/wellformed/sanitize/item_fullitem_style.xml +0 -11
  2313. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_applet.xml +0 -11
  2314. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_blink.xml +0 -11
  2315. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_embed.xml +0 -11
  2316. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_frame.xml +0 -11
  2317. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_iframe.xml +0 -11
  2318. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_link.xml +0 -11
  2319. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_meta.xml +0 -11
  2320. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_object.xml +0 -11
  2321. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onabort.xml +0 -11
  2322. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onblur.xml +0 -11
  2323. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onchange.xml +0 -11
  2324. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onclick.xml +0 -11
  2325. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_ondblclick.xml +0 -11
  2326. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onerror.xml +0 -11
  2327. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onfocus.xml +0 -11
  2328. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeydown.xml +0 -11
  2329. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeypress.xml +0 -11
  2330. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onkeyup.xml +0 -11
  2331. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onload.xml +0 -11
  2332. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmousedown.xml +0 -11
  2333. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseout.xml +0 -11
  2334. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseover.xml +0 -11
  2335. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onmouseup.xml +0 -11
  2336. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onreset.xml +0 -11
  2337. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onresize.xml +0 -11
  2338. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onsubmit.xml +0 -11
  2339. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_onunload.xml +0 -11
  2340. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_script.xml +0 -11
  2341. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_script_map_content.xml +0 -11
  2342. forkparser-6.1.0/tests/wellformed/sanitize/item_xhtml_body_style.xml +0 -11
  2343. forkparser-6.1.0/tests/wellformed/sanitize/large_atom_feed_that_needs_css_sanitisation.xml +0 -528
  2344. forkparser-6.1.0/tests/wellformed/sanitize/style_background_repeat_repeat_x.xml +0 -11
  2345. forkparser-6.1.0/tests/wellformed/sanitize/style_background_url.xml +0 -11
  2346. forkparser-6.1.0/tests/wellformed/sanitize/style_background_yellow.xml +0 -11
  2347. forkparser-6.1.0/tests/wellformed/sanitize/style_border_0.xml +0 -11
  2348. forkparser-6.1.0/tests/wellformed/sanitize/style_border_1px_solid_rgb_0_0_0_.xml +0 -11
  2349. forkparser-6.1.0/tests/wellformed/sanitize/style_border_3px_solid_ccc.xml +0 -11
  2350. forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_0pt.xml +0 -11
  2351. forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_dashed.xml +0 -11
  2352. forkparser-6.1.0/tests/wellformed/sanitize/style_border_bottom_dotted.xml +0 -11
  2353. forkparser-6.1.0/tests/wellformed/sanitize/style_border_collapse_collapse.xml +0 -11
  2354. forkparser-6.1.0/tests/wellformed/sanitize/style_border_left_0pt.xml +0 -11
  2355. forkparser-6.1.0/tests/wellformed/sanitize/style_border_medium_none_.xml +0 -11
  2356. forkparser-6.1.0/tests/wellformed/sanitize/style_border_none_important.xml +0 -11
  2357. forkparser-6.1.0/tests/wellformed/sanitize/style_border_right_0pt.xml +0 -11
  2358. forkparser-6.1.0/tests/wellformed/sanitize/style_border_solid_2px_000000.xml +0 -11
  2359. forkparser-6.1.0/tests/wellformed/sanitize/style_border_top_0pt.xml +0 -11
  2360. forkparser-6.1.0/tests/wellformed/sanitize/style_clear_both.xml +0 -11
  2361. forkparser-6.1.0/tests/wellformed/sanitize/style_color_000080.xml +0 -11
  2362. forkparser-6.1.0/tests/wellformed/sanitize/style_color_008.xml +0 -11
  2363. forkparser-6.1.0/tests/wellformed/sanitize/style_color_999999.xml +0 -11
  2364. forkparser-6.1.0/tests/wellformed/sanitize/style_color_blue.xml +0 -11
  2365. forkparser-6.1.0/tests/wellformed/sanitize/style_color_maroon.xml +0 -11
  2366. forkparser-6.1.0/tests/wellformed/sanitize/style_color_red.xml +0 -11
  2367. forkparser-6.1.0/tests/wellformed/sanitize/style_color_rgb_0_128_0_.xml +0 -11
  2368. forkparser-6.1.0/tests/wellformed/sanitize/style_color_teal.xml +0 -11
  2369. forkparser-6.1.0/tests/wellformed/sanitize/style_cursor_pointer.xml +0 -11
  2370. forkparser-6.1.0/tests/wellformed/sanitize/style_display_block.xml +0 -11
  2371. forkparser-6.1.0/tests/wellformed/sanitize/style_float_left.xml +0 -11
  2372. forkparser-6.1.0/tests/wellformed/sanitize/style_float_right.xml +0 -11
  2373. forkparser-6.1.0/tests/wellformed/sanitize/style_font_family__comic_sans_ms.xml +0 -11
  2374. forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_arial_sans_serif.xml +0 -11
  2375. forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_lucida_console_.xml +0 -11
  2376. forkparser-6.1.0/tests/wellformed/sanitize/style_font_family_symbol.xml +0 -11
  2377. forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_0_9em.xml +0 -11
  2378. forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_10pt.xml +0 -11
  2379. forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_10px.xml +0 -11
  2380. forkparser-6.1.0/tests/wellformed/sanitize/style_font_size_smaller.xml +0 -11
  2381. forkparser-6.1.0/tests/wellformed/sanitize/style_font_style_italic.xml +0 -11
  2382. forkparser-6.1.0/tests/wellformed/sanitize/style_font_weight_bold.xml +0 -11
  2383. forkparser-6.1.0/tests/wellformed/sanitize/style_height_100px.xml +0 -11
  2384. forkparser-6.1.0/tests/wellformed/sanitize/style_height_2px.xml +0 -11
  2385. forkparser-6.1.0/tests/wellformed/sanitize/style_letter_spacing_1px.xml +0 -11
  2386. forkparser-6.1.0/tests/wellformed/sanitize/style_line_height_normal.xml +0 -11
  2387. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0.xml +0 -11
  2388. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0_15px_0_0.xml +0 -11
  2389. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_0px_important.xml +0 -11
  2390. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_5px.xml +0 -11
  2391. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_99999em.xml +0 -11
  2392. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_bottom_0pt.xml +0 -11
  2393. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_bottom_10px.xml +0 -11
  2394. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_left_5px.xml +0 -11
  2395. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_right_0px.xml +0 -11
  2396. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_top_0in.xml +0 -11
  2397. forkparser-6.1.0/tests/wellformed/sanitize/style_margin_top_10px.xml +0 -11
  2398. forkparser-6.1.0/tests/wellformed/sanitize/style_moz_background_clip_initial.xml +0 -11
  2399. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_ansi_language_nl.xml +0 -11
  2400. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_bidi_font_weight_normal.xml +0 -11
  2401. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_highlight_yellow.xml +0 -11
  2402. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_layout_grid_align_none.xml +0 -11
  2403. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_list_l0_level1_lfo1.xml +0 -11
  2404. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_no_proof_yes.xml +0 -11
  2405. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_spacerun_yes.xml +0 -11
  2406. forkparser-6.1.0/tests/wellformed/sanitize/style_mso_tab_count_3.xml +0 -11
  2407. forkparser-6.1.0/tests/wellformed/sanitize/style_overflow_auto.xml +0 -11
  2408. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_0.xml +0 -11
  2409. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_0_0_12px_12px.xml +0 -11
  2410. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_2ex.xml +0 -11
  2411. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_99999em.xml +0 -11
  2412. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_left_4px.xml +0 -11
  2413. forkparser-6.1.0/tests/wellformed/sanitize/style_padding_right_0in.xml +0 -11
  2414. forkparser-6.1.0/tests/wellformed/sanitize/style_position_absolute.xml +0 -11
  2415. forkparser-6.1.0/tests/wellformed/sanitize/style_tab_stops_list_5in.xml +0 -11
  2416. forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_center.xml +0 -11
  2417. forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_left.xml +0 -11
  2418. forkparser-6.1.0/tests/wellformed/sanitize/style_text_align_right.xml +0 -11
  2419. forkparser-6.1.0/tests/wellformed/sanitize/style_text_decoration_underline.xml +0 -11
  2420. forkparser-6.1.0/tests/wellformed/sanitize/style_text_indent_0_5in.xml +0 -11
  2421. forkparser-6.1.0/tests/wellformed/sanitize/style_vertical_align_bottom.xml +0 -11
  2422. forkparser-6.1.0/tests/wellformed/sanitize/style_vertical_align_top.xml +0 -11
  2423. forkparser-6.1.0/tests/wellformed/sanitize/style_white_space_nowrap.xml +0 -11
  2424. forkparser-6.1.0/tests/wellformed/sanitize/style_white_space_top.xml +0 -11
  2425. forkparser-6.1.0/tests/wellformed/sanitize/style_width_300px.xml +0 -11
  2426. forkparser-6.1.0/tests/wellformed/sanitize/xml_declaration_unexpected_character.xml +0 -7
  2427. forkparser-6.1.0/tests/wellformed/sanitize/xml_malicious_comment.xml +0 -7
  2428. forkparser-6.1.0/tests/wellformed/sanitize/xml_unclosed_comment.xml +0 -7
  2429. forkparser-6.1.0/tests/wellformed/sgml/charref_uppercase_x.xml +0 -9
  2430. forkparser-6.1.0/tests/wellformed/xml/empty_xmlns_uri.xml +0 -9
  2431. forkparser-6.1.0/tests/wellformed/xml/escaped_apos.xml +0 -10
  2432. forkparser-6.1.0/tests/wellformed/xml/xlink_ns_no_prefix.xml +0 -10
  2433. {forkparser-6.1.0 → forkparser-2026.7.0}/feedparser/namespaces/__init__.py +0 -0
  2434. {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-2015 Kurt McKee <contactme@kurtmckee.org>
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
- * 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.
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-2015 Kurt McKee <contactme@kurtmckee.org>
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
- * 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.
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-2015 Kurt McKee <contactme@kurtmckee.org>
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)