The branch, gotham has been updated
       via  4c6b3e87b9aaa4d818eb6f558b2f8ca391366666 (commit)
      from  b5464adecbc3624ae7e520c7967479431d8c85f0 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=4c6b3e87b9aaa4d818eb6f558b2f8ca391366666


-----------------------------------------------------------------------

Summary of changes:
 script.module.chardet/LICENSE.txt                  |  504 +++++++++++
 script.module.chardet/README.md                    |    4 +
 script.module.chardet/addon.xml                    |   18 +
 script.module.chardet/changelog.txt                |    5 +
 script.module.chardet/icon.png                     |  Bin 0 -> 7237 bytes
 script.module.chardet/lib/chardet/__init__.py      |   32 +
 script.module.chardet/lib/chardet/big5freq.py      |  925 ++++++++++++++++++++
 script.module.chardet/lib/chardet/big5prober.py    |   42 +
 script.module.chardet/lib/chardet/chardetect.py    |   46 +
 .../lib/chardet/chardistribution.py                |  231 +++++
 .../lib/chardet/charsetgroupprober.py              |  106 +++
 script.module.chardet/lib/chardet/charsetprober.py |   62 ++
 .../lib/chardet/codingstatemachine.py              |   61 ++
 script.module.chardet/lib/chardet/compat.py        |   34 +
 script.module.chardet/lib/chardet/constants.py     |   39 +
 script.module.chardet/lib/chardet/cp949prober.py   |   44 +
 script.module.chardet/lib/chardet/escprober.py     |   86 ++
 script.module.chardet/lib/chardet/escsm.py         |  242 +++++
 script.module.chardet/lib/chardet/eucjpprober.py   |   90 ++
 script.module.chardet/lib/chardet/euckrfreq.py     |  596 +++++++++++++
 script.module.chardet/lib/chardet/euckrprober.py   |   42 +
 script.module.chardet/lib/chardet/euctwfreq.py     |  428 +++++++++
 script.module.chardet/lib/chardet/euctwprober.py   |   41 +
 script.module.chardet/lib/chardet/gb2312freq.py    |  472 ++++++++++
 script.module.chardet/lib/chardet/gb2312prober.py  |   41 +
 script.module.chardet/lib/chardet/hebrewprober.py  |  283 ++++++
 script.module.chardet/lib/chardet/jisfreq.py       |  569 ++++++++++++
 script.module.chardet/lib/chardet/jpcntx.py        |  219 +++++
 .../lib/chardet/langbulgarianmodel.py              |  229 +++++
 .../lib/chardet/langcyrillicmodel.py               |  329 +++++++
 .../lib/chardet/langgreekmodel.py                  |  225 +++++
 .../lib/chardet/langhebrewmodel.py                 |  201 +++++
 .../lib/chardet/langhungarianmodel.py              |  225 +++++
 script.module.chardet/lib/chardet/langthaimodel.py |  200 +++++
 script.module.chardet/lib/chardet/latin1prober.py  |  139 +++
 .../lib/chardet/mbcharsetprober.py                 |   86 ++
 .../lib/chardet/mbcsgroupprober.py                 |   54 ++
 script.module.chardet/lib/chardet/mbcssm.py        |  575 ++++++++++++
 .../lib/chardet/sbcharsetprober.py                 |  120 +++
 .../lib/chardet/sbcsgroupprober.py                 |   69 ++
 script.module.chardet/lib/chardet/sjisprober.py    |   91 ++
 .../lib/chardet/universaldetector.py               |  170 ++++
 script.module.chardet/lib/chardet/utf8prober.py    |   76 ++
 43 files changed, 8051 insertions(+), 0 deletions(-)
 create mode 100644 script.module.chardet/LICENSE.txt
 create mode 100644 script.module.chardet/README.md
 create mode 100644 script.module.chardet/addon.xml
 create mode 100644 script.module.chardet/changelog.txt
 create mode 100644 script.module.chardet/icon.png
 create mode 100644 script.module.chardet/lib/chardet/__init__.py
 create mode 100644 script.module.chardet/lib/chardet/big5freq.py
 create mode 100644 script.module.chardet/lib/chardet/big5prober.py
 create mode 100644 script.module.chardet/lib/chardet/chardetect.py
 create mode 100644 script.module.chardet/lib/chardet/chardistribution.py
 create mode 100644 script.module.chardet/lib/chardet/charsetgroupprober.py
 create mode 100644 script.module.chardet/lib/chardet/charsetprober.py
 create mode 100644 script.module.chardet/lib/chardet/codingstatemachine.py
 create mode 100644 script.module.chardet/lib/chardet/compat.py
 create mode 100644 script.module.chardet/lib/chardet/constants.py
 create mode 100644 script.module.chardet/lib/chardet/cp949prober.py
 create mode 100644 script.module.chardet/lib/chardet/escprober.py
 create mode 100644 script.module.chardet/lib/chardet/escsm.py
 create mode 100644 script.module.chardet/lib/chardet/eucjpprober.py
 create mode 100644 script.module.chardet/lib/chardet/euckrfreq.py
 create mode 100644 script.module.chardet/lib/chardet/euckrprober.py
 create mode 100644 script.module.chardet/lib/chardet/euctwfreq.py
 create mode 100644 script.module.chardet/lib/chardet/euctwprober.py
 create mode 100644 script.module.chardet/lib/chardet/gb2312freq.py
 create mode 100644 script.module.chardet/lib/chardet/gb2312prober.py
 create mode 100644 script.module.chardet/lib/chardet/hebrewprober.py
 create mode 100644 script.module.chardet/lib/chardet/jisfreq.py
 create mode 100644 script.module.chardet/lib/chardet/jpcntx.py
 create mode 100644 script.module.chardet/lib/chardet/langbulgarianmodel.py
 create mode 100644 script.module.chardet/lib/chardet/langcyrillicmodel.py
 create mode 100644 script.module.chardet/lib/chardet/langgreekmodel.py
 create mode 100644 script.module.chardet/lib/chardet/langhebrewmodel.py
 create mode 100644 script.module.chardet/lib/chardet/langhungarianmodel.py
 create mode 100644 script.module.chardet/lib/chardet/langthaimodel.py
 create mode 100644 script.module.chardet/lib/chardet/latin1prober.py
 create mode 100644 script.module.chardet/lib/chardet/mbcharsetprober.py
 create mode 100644 script.module.chardet/lib/chardet/mbcsgroupprober.py
 create mode 100644 script.module.chardet/lib/chardet/mbcssm.py
 create mode 100644 script.module.chardet/lib/chardet/sbcharsetprober.py
 create mode 100644 script.module.chardet/lib/chardet/sbcsgroupprober.py
 create mode 100644 script.module.chardet/lib/chardet/sjisprober.py
 create mode 100644 script.module.chardet/lib/chardet/universaldetector.py
 create mode 100644 script.module.chardet/lib/chardet/utf8prober.py


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Want excitement?
Manually upgrade your production database.
When you want reliability, choose Perforce
Perforce version control. Predictably reliable.
http://pubads.g.doubleclick.net/gampad/clk?id=157508191&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to