[Python-modules-commits] [html5lib] branch upstream updated (09ac6c1 -> a7d4397)

Barry Warsaw barry at moszumanska.debian.org
Mon Oct 31 20:25:42 UTC 2016


This is an automated email from the git hooks/post-receive script.

barry pushed a change to branch upstream
in repository html5lib.

      from  09ac6c1   Imported Upstream version 0.999
       new  a7d4397   Import html5lib_0.999999999.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .pytest.expect                                     |  1322 +
 AUTHORS.rst                                        |    44 +
 CHANGES.rst                                        |   130 +-
 MANIFEST.in                                        |    10 +
 PKG-INFO                                           |   164 +-
 README.rst                                         |    27 +-
 PKG-INFO => html5lib.egg-info/PKG-INFO             |   164 +-
 html5lib.egg-info/SOURCES.txt                      |   153 +
 html5lib.egg-info/dependency_links.txt             |     1 +
 html5lib.egg-info/requires.txt                     |    26 +
 html5lib.egg-info/top_level.txt                    |     1 +
 html5lib/__init__.py                               |     4 +-
 html5lib/{ihatexml.py => _ihatexml.py}             |    13 +-
 html5lib/{inputstream.py => _inputstream.py}       |   227 +-
 html5lib/{tokenizer.py => _tokenizer.py}           |    36 +-
 html5lib/{trie => _trie}/__init__.py               |     2 +
 html5lib/{trie => _trie}/_base.py                  |     3 +-
 html5lib/{trie => _trie}/datrie.py                 |     0
 html5lib/{trie => _trie}/py.py                     |     0
 html5lib/{utils.py => _utils.py}                   |    59 +-
 html5lib/constants.py                              |   691 +-
 html5lib/filters/alphabeticalattributes.py         |     6 +-
 html5lib/filters/{_base.py => base.py}             |     0
 html5lib/filters/inject_meta_charset.py            |     8 +-
 html5lib/filters/lint.py                           |   112 +-
 html5lib/filters/optionaltags.py                   |    11 +-
 html5lib/filters/sanitizer.py                      |   861 +-
 html5lib/filters/whitespace.py                     |     6 +-
 html5lib/html5parser.py                            |   570 +-
 html5lib/sanitizer.py                              |   271 -
 .../htmlserializer.py => serializer.py}            |   194 +-
 html5lib/serializer/__init__.py                    |    16 -
 html5lib/tests/conftest.py                         |    86 +
 html5lib/tests/mockParser.py                       |    41 -
 html5lib/tests/performance/concatenation.py        |    36 -
 html5lib/tests/sanitizer.py                        |    50 +
 html5lib/tests/support.py                          |    77 +-
 html5lib/tests/test_encoding.py                    |   120 +-
 html5lib/tests/test_meta.py                        |    41 +
 html5lib/tests/test_optionaltags_filter.py         |     7 +
 html5lib/tests/test_parser.py                      |    96 -
 html5lib/tests/test_parser2.py                     |   180 +-
 html5lib/tests/test_sanitizer.py                   |   148 +-
 html5lib/tests/test_serializer.py                  |   177 +-
 html5lib/tests/test_stream.py                      |   480 +-
 html5lib/tests/test_tokenizer.py                   |   188 -
 html5lib/tests/test_treeadapters.py                |     4 +-
 html5lib/tests/test_treewalkers.py                 |   353 +-
 html5lib/tests/test_whitespace_filter.py           |   246 +-
 html5lib/tests/testdata/.gitattributes             |     2 +
 html5lib/tests/testdata/AUTHORS.rst                |    34 +
 LICENSE => html5lib/tests/testdata/LICENSE         |     3 +-
 html5lib/tests/testdata/encoding/test-yahoo-jp.dat |     2 +-
 html5lib/tests/testdata/encoding/tests1.dat        |    72 +-
 html5lib/tests/testdata/encoding/tests2.dat        |    10 +-
 html5lib/tests/testdata/sanitizer/tests1.dat       |   501 -
 html5lib/tests/testdata/sites/google-results.htm   |     1 -
 .../tests/testdata/sites/python-ref-import.htm     |     1 -
 html5lib/tests/testdata/sites/web-apps-old.htm     |     1 -
 html5lib/tests/testdata/sites/web-apps.htm         | 34275 -------------------
 html5lib/tests/testdata/sniffer/htmlOrFeed.json    |    43 -
 html5lib/tests/testdata/tokenizer/README.md        |   104 +
 .../testdata/tokenizer/contentModelFlags.test      |     6 +
 html5lib/tests/testdata/tokenizer/domjs.test       |    12 +-
 html5lib/tests/testdata/tokenizer/entities.test    |     4 +-
 .../tests/testdata/tokenizer/namedEntities.test    |  1979 --
 .../tests/testdata/tokenizer/numericEntities.test  |    36 +
 html5lib/tests/testdata/tokenizer/test1.test       |    12 +-
 html5lib/tests/testdata/tokenizer/test2.test       |     4 +-
 html5lib/tests/testdata/tokenizer/test3.test       |    26 +-
 html5lib/tests/testdata/tokenizer/test4.test       |    14 +-
 .../tokenizer/unicodeCharsProblematic.test         |    12 +-
 .../tests/testdata/tree-construction/README.md     |   104 +
 .../testdata/tree-construction/adoption01.dat      |    79 +
 .../testdata/tree-construction/adoption02.dat      |     8 +
 .../testdata/tree-construction/comments01.dat      |    32 +
 .../tests/testdata/tree-construction/doctype01.dat |    54 +
 .../testdata/tree-construction/domjs-unsafe.dat    |   Bin 6639 -> 9884 bytes
 .../testdata/tree-construction/entities01.dat      |   192 +
 .../testdata/tree-construction/entities02.dat      |    44 +
 .../tree-construction/foreign-fragment.dat         |   549 +
 .../testdata/tree-construction/html5test-com.dat   |    45 +
 .../tests/testdata/tree-construction/inbody01.dat  |    11 +
 .../tests/testdata/tree-construction/isindex.dat   |    39 +-
 .../testdata/tree-construction/main-element.dat    |    21 +-
 html5lib/tests/testdata/tree-construction/math.dat |    81 +
 .../tree-construction/menuitem-element.dat         |   229 +
 .../tree-construction/namespace-sensitivity.dat    |    16 +
 .../testdata/tree-construction/noscript01.dat      |   237 +
 .../pending-spec-changes-plain-text-unsafe.dat     |   Bin 115 -> 816 bytes
 .../tree-construction/pending-spec-changes.dat     |    24 +-
 .../tree-construction/plain-text-unsafe.dat        |   Bin 4166 -> 7925 bytes
 html5lib/tests/testdata/tree-construction/ruby.dat |   301 +
 .../testdata/tree-construction/scriptdata01.dat    |    57 +
 .../tests/testdata/tree-construction/tables01.dat  |    74 +
 .../tests/testdata/tree-construction/template.dat  |   349 +-
 .../tests/testdata/tree-construction/tests1.dat    |  1005 +-
 .../tests/testdata/tree-construction/tests10.dat   |   186 +-
 .../tests/testdata/tree-construction/tests11.dat   |    81 +-
 .../tests/testdata/tree-construction/tests14.dat   |     5 +-
 .../tests/testdata/tree-construction/tests15.dat   |    62 +-
 .../tests/testdata/tree-construction/tests16.dat   |   649 +-
 .../tests/testdata/tree-construction/tests17.dat   |    26 +
 .../tests/testdata/tree-construction/tests18.dat   |    81 +-
 .../tests/testdata/tree-construction/tests19.dat   |   323 +-
 .../tests/testdata/tree-construction/tests2.dat    |   217 +-
 .../tests/testdata/tree-construction/tests20.dat   |   127 +
 .../tests/testdata/tree-construction/tests21.dat   |    54 +-
 .../tests/testdata/tree-construction/tests22.dat   |    39 +-
 .../tests/testdata/tree-construction/tests23.dat   |    19 +-
 .../tests/testdata/tree-construction/tests25.dat   |     8 +-
 .../tests/testdata/tree-construction/tests26.dat   |   115 +-
 .../tests/testdata/tree-construction/tests3.dat    |    44 +-
 .../tests/testdata/tree-construction/tests4.dat    |     1 -
 .../tests/testdata/tree-construction/tests5.dat    |    55 +-
 .../tests/testdata/tree-construction/tests6.dat    |   314 +-
 .../tests/testdata/tree-construction/tests7.dat    |    86 +-
 .../tests/testdata/tree-construction/tests8.dat    |    69 +-
 .../tests/testdata/tree-construction/tests9.dat    |   149 +-
 .../tree-construction/tests_innerHTML_1.dat        |   146 +
 .../tests/testdata/tree-construction/tricky01.dat  |    75 +
 .../tests/testdata/tree-construction/webkit01.dat  |   128 +-
 .../tests/testdata/tree-construction/webkit02.dat  |   207 +
 html5lib/tests/testdata/validator/attributes.test  |  1035 -
 .../testdata/validator/base-href-attribute.test    |   787 -
 .../testdata/validator/base-target-attribute.test  |    35 -
 .../validator/blockquote-cite-attribute.test       |     7 -
 .../tests/testdata/validator/classattribute.test   |   152 -
 .../validator/contenteditableattribute.test        |    59 -
 .../testdata/validator/contextmenuattribute.test   |   115 -
 .../tests/testdata/validator/dirattribute.test     |    59 -
 .../testdata/validator/draggableattribute.test     |    63 -
 .../testdata/validator/html-xmlns-attribute.test   |    23 -
 html5lib/tests/testdata/validator/idattribute.test |   115 -
 .../tests/testdata/validator/inputattributes.test  |  2795 --
 .../testdata/validator/irrelevantattribute.test    |    63 -
 .../tests/testdata/validator/langattribute.test    |  5579 ---
 .../testdata/validator/li-value-attribute.test     |     7 -
 .../testdata/validator/link-href-attribute.test    |     7 -
 .../validator/link-hreflang-attribute.test         |     7 -
 .../testdata/validator/link-rel-attribute.test     |   271 -
 .../testdata/validator/ol-start-attribute.test     |     7 -
 html5lib/tests/testdata/validator/starttags.test   |   375 -
 .../testdata/validator/style-scoped-attribute.test |     7 -
 .../testdata/validator/tabindexattribute.test      |    79 -
 html5lib/tests/tokenizer.py                        |   252 +
 html5lib/tests/tree_construction.py                |   204 +
 html5lib/treeadapters/__init__.py                  |    12 +
 html5lib/treeadapters/genshi.py                    |    47 +
 html5lib/treebuilders/__init__.py                  |     2 +-
 html5lib/treebuilders/{_base.py => base.py}        |    14 +-
 html5lib/treebuilders/dom.py                       |    51 +-
 html5lib/treebuilders/etree.py                     |    21 +-
 html5lib/treebuilders/etree_lxml.py                |    42 +-
 html5lib/treewalkers/__init__.py                   |   132 +-
 html5lib/treewalkers/{_base.py => base.py}         |    94 +-
 html5lib/treewalkers/dom.py                        |    19 +-
 html5lib/treewalkers/etree.py                      |    25 +-
 .../treewalkers/{lxmletree.py => etree_lxml.py}    |    69 +-
 .../treewalkers/{genshistream.py => genshi.py}     |    12 +-
 html5lib/treewalkers/pulldom.py                    |    63 -
 pytest.ini                                         |    17 +
 requirements-optional-2.6.txt                      |     5 -
 requirements-optional-cpython.txt                  |     5 -
 requirements-optional.txt                          |    14 +-
 requirements-test.txt                              |     6 +-
 requirements.txt                                   |     3 +
 setup.cfg                                          |    17 +
 setup.py                                           |    74 +-
 tox.ini                                            |    17 +
 170 files changed, 11478 insertions(+), 52819 deletions(-)
 create mode 100644 .pytest.expect
 create mode 100644 AUTHORS.rst
 create mode 100644 MANIFEST.in
 copy PKG-INFO => html5lib.egg-info/PKG-INFO (63%)
 create mode 100644 html5lib.egg-info/SOURCES.txt
 create mode 100644 html5lib.egg-info/dependency_links.txt
 create mode 100644 html5lib.egg-info/requires.txt
 create mode 100644 html5lib.egg-info/top_level.txt
 rename html5lib/{ihatexml.py => _ihatexml.py} (97%)
 rename html5lib/{inputstream.py => _inputstream.py} (80%)
 rename html5lib/{tokenizer.py => _tokenizer.py} (98%)
 rename html5lib/{trie => _trie}/__init__.py (73%)
 rename html5lib/{trie => _trie}/_base.py (91%)
 rename html5lib/{trie => _trie}/datrie.py (100%)
 rename html5lib/{trie => _trie}/py.py (100%)
 rename html5lib/{utils.py => _utils.py} (54%)
 rename html5lib/filters/{_base.py => base.py} (100%)
 delete mode 100644 html5lib/sanitizer.py
 rename html5lib/{serializer/htmlserializer.py => serializer.py} (64%)
 delete mode 100644 html5lib/serializer/__init__.py
 create mode 100644 html5lib/tests/conftest.py
 delete mode 100644 html5lib/tests/mockParser.py
 delete mode 100644 html5lib/tests/performance/concatenation.py
 create mode 100644 html5lib/tests/sanitizer.py
 create mode 100644 html5lib/tests/test_meta.py
 create mode 100644 html5lib/tests/test_optionaltags_filter.py
 delete mode 100644 html5lib/tests/test_parser.py
 delete mode 100644 html5lib/tests/test_tokenizer.py
 create mode 100644 html5lib/tests/testdata/.gitattributes
 create mode 100644 html5lib/tests/testdata/AUTHORS.rst
 copy LICENSE => html5lib/tests/testdata/LICENSE (92%)
 delete mode 100644 html5lib/tests/testdata/sanitizer/tests1.dat
 delete mode 100755 html5lib/tests/testdata/sites/google-results.htm
 delete mode 100755 html5lib/tests/testdata/sites/python-ref-import.htm
 delete mode 100755 html5lib/tests/testdata/sites/web-apps-old.htm
 delete mode 100755 html5lib/tests/testdata/sites/web-apps.htm
 delete mode 100644 html5lib/tests/testdata/sniffer/htmlOrFeed.json
 create mode 100644 html5lib/tests/testdata/tokenizer/README.md
 create mode 100644 html5lib/tests/testdata/tree-construction/README.md
 create mode 100644 html5lib/tests/testdata/tree-construction/foreign-fragment.dat
 create mode 100644 html5lib/tests/testdata/tree-construction/math.dat
 create mode 100644 html5lib/tests/testdata/tree-construction/menuitem-element.dat
 create mode 100644 html5lib/tests/testdata/tree-construction/namespace-sensitivity.dat
 create mode 100644 html5lib/tests/testdata/tree-construction/noscript01.dat
 create mode 100644 html5lib/tests/testdata/tree-construction/ruby.dat
 delete mode 100755 html5lib/tests/testdata/validator/attributes.test
 delete mode 100755 html5lib/tests/testdata/validator/base-href-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/base-target-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/blockquote-cite-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/classattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/contenteditableattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/contextmenuattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/dirattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/draggableattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/html-xmlns-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/idattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/inputattributes.test
 delete mode 100755 html5lib/tests/testdata/validator/irrelevantattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/langattribute.test
 delete mode 100755 html5lib/tests/testdata/validator/li-value-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/link-href-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/link-hreflang-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/link-rel-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/ol-start-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/starttags.test
 delete mode 100755 html5lib/tests/testdata/validator/style-scoped-attribute.test
 delete mode 100755 html5lib/tests/testdata/validator/tabindexattribute.test
 create mode 100644 html5lib/tests/tokenizer.py
 create mode 100644 html5lib/tests/tree_construction.py
 create mode 100644 html5lib/treeadapters/genshi.py
 rename html5lib/treebuilders/{_base.py => base.py} (97%)
 rename html5lib/treewalkers/{_base.py => base.py} (56%)
 rename html5lib/treewalkers/{lxmletree.py => etree_lxml.py} (72%)
 rename html5lib/treewalkers/{genshistream.py => genshi.py} (90%)
 delete mode 100644 html5lib/treewalkers/pulldom.py
 create mode 100644 pytest.ini
 delete mode 100644 requirements-optional-2.6.txt
 delete mode 100644 requirements-optional-cpython.txt
 create mode 100644 setup.cfg
 create mode 100644 tox.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/html5lib.git



More information about the Python-modules-commits mailing list