The branch, frodo has been updated
via 3355d13644389fd7d3f87d60adfff0d0f5d9a420 (commit)
via a57a25b2ac7a8c45c785adb1338d58c91ac0b285 (commit)
from 23e25c7de067dfa4b826b0120dbc9163c55f0a93 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=3355d13644389fd7d3f87d60adfff0d0f5d9a420
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=a57a25b2ac7a8c45c785adb1338d58c91ac0b285
-----------------------------------------------------------------------
Summary of changes:
script.module.html5lib/AUTHORS.rst | 34 +
script.module.html5lib/LICENSE | 20 +
script.module.html5lib/README.rst | 157 +
script.module.html5lib/addon.xml | 23 +
script.module.html5lib/lib/html5lib/__init__.py | 23 +
script.module.html5lib/lib/html5lib/constants.py | 3104 ++++++++++++++++++++
.../lib/html5lib/filters}/__init__.py | 0
.../lib/html5lib/filters/_base.py | 12 +
.../lib/html5lib/filters/alphabeticalattributes.py | 20 +
.../lib/html5lib/filters/inject_meta_charset.py | 65 +
.../lib/html5lib/filters/lint.py | 93 +
.../lib/html5lib/filters/optionaltags.py | 205 ++
.../lib/html5lib/filters/sanitizer.py | 12 +
.../lib/html5lib/filters/whitespace.py | 38 +
script.module.html5lib/lib/html5lib/html5parser.py | 2713 +++++++++++++++++
script.module.html5lib/lib/html5lib/ihatexml.py | 285 ++
script.module.html5lib/lib/html5lib/inputstream.py | 886 ++++++
script.module.html5lib/lib/html5lib/sanitizer.py | 271 ++
.../lib/html5lib/serializer/__init__.py | 16 +
.../lib/html5lib/serializer/htmlserializer.py | 320 ++
script.module.html5lib/lib/html5lib/tokenizer.py | 1731 +++++++++++
.../lib/html5lib/treeadapters}/__init__.py | 0
.../lib/html5lib/treeadapters/sax.py | 44 +
.../lib/html5lib/treebuilders/__init__.py | 76 +
.../lib/html5lib/treebuilders/_base.py | 377 +++
.../lib/html5lib/treebuilders/dom.py | 227 ++
.../lib/html5lib/treebuilders/etree.py | 337 +++
.../lib/html5lib/treebuilders/etree_lxml.py | 369 +++
.../lib/html5lib/treewalkers/__init__.py | 57 +
.../lib/html5lib/treewalkers/_base.py | 200 ++
.../lib/html5lib/treewalkers/dom.py | 46 +
.../lib/html5lib/treewalkers/etree.py | 138 +
.../lib/html5lib/treewalkers/genshistream.py | 69 +
.../lib/html5lib/treewalkers/lxmletree.py | 204 ++
.../lib/html5lib/treewalkers/pulldom.py | 63 +
.../lib/html5lib/trie/__init__.py | 12 +
script.module.html5lib/lib/html5lib/trie/_base.py | 37 +
script.module.html5lib/lib/html5lib/trie/datrie.py | 44 +
script.module.html5lib/lib/html5lib/trie/py.py | 67 +
script.module.html5lib/lib/html5lib/utils.py | 82 +
script.module.six/LICENSE | 18 +
script.module.six/README | 16 +
script.module.six/addon.xml | 20 +
script.module.six/lib/six.py | 577 ++++
44 files changed, 13108 insertions(+), 0 deletions(-)
create mode 100644 script.module.html5lib/AUTHORS.rst
create mode 100644 script.module.html5lib/LICENSE
create mode 100644 script.module.html5lib/README.rst
create mode 100644 script.module.html5lib/addon.xml
create mode 100644 script.module.html5lib/lib/html5lib/__init__.py
create mode 100644 script.module.html5lib/lib/html5lib/constants.py
copy {script.ace.extrapack/resources =>
script.module.html5lib/lib/html5lib/filters}/__init__.py (100%)
create mode 100644 script.module.html5lib/lib/html5lib/filters/_base.py
create mode 100644
script.module.html5lib/lib/html5lib/filters/alphabeticalattributes.py
create mode 100644
script.module.html5lib/lib/html5lib/filters/inject_meta_charset.py
create mode 100644 script.module.html5lib/lib/html5lib/filters/lint.py
create mode 100644 script.module.html5lib/lib/html5lib/filters/optionaltags.py
create mode 100644 script.module.html5lib/lib/html5lib/filters/sanitizer.py
create mode 100644 script.module.html5lib/lib/html5lib/filters/whitespace.py
create mode 100644 script.module.html5lib/lib/html5lib/html5parser.py
create mode 100644 script.module.html5lib/lib/html5lib/ihatexml.py
create mode 100644 script.module.html5lib/lib/html5lib/inputstream.py
create mode 100644 script.module.html5lib/lib/html5lib/sanitizer.py
create mode 100644 script.module.html5lib/lib/html5lib/serializer/__init__.py
create mode 100644
script.module.html5lib/lib/html5lib/serializer/htmlserializer.py
create mode 100644 script.module.html5lib/lib/html5lib/tokenizer.py
copy {script.ace.extrapack/resources =>
script.module.html5lib/lib/html5lib/treeadapters}/__init__.py (100%)
create mode 100644 script.module.html5lib/lib/html5lib/treeadapters/sax.py
create mode 100644 script.module.html5lib/lib/html5lib/treebuilders/__init__.py
create mode 100644 script.module.html5lib/lib/html5lib/treebuilders/_base.py
create mode 100644 script.module.html5lib/lib/html5lib/treebuilders/dom.py
create mode 100644 script.module.html5lib/lib/html5lib/treebuilders/etree.py
create mode 100644
script.module.html5lib/lib/html5lib/treebuilders/etree_lxml.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/__init__.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/_base.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/dom.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/etree.py
create mode 100644
script.module.html5lib/lib/html5lib/treewalkers/genshistream.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/lxmletree.py
create mode 100644 script.module.html5lib/lib/html5lib/treewalkers/pulldom.py
create mode 100644 script.module.html5lib/lib/html5lib/trie/__init__.py
create mode 100644 script.module.html5lib/lib/html5lib/trie/_base.py
create mode 100644 script.module.html5lib/lib/html5lib/trie/datrie.py
create mode 100644 script.module.html5lib/lib/html5lib/trie/py.py
create mode 100644 script.module.html5lib/lib/html5lib/utils.py
create mode 100644 script.module.six/LICENSE
create mode 100644 script.module.six/README
create mode 100644 script.module.six/addon.xml
create mode 100644 script.module.six/lib/six.py
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT
organizations don't have a clear picture of how application performance
affects their revenue. With AppDynamics, you get 100% visibility into your
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons