The branch, frodo has been updated
       via  3183116125a7068588d0fde59e85d31808a957b2 (commit)
       via  6feb152f5a7bf88fa7e06da4e8b77b0f0eabcbe1 (commit)
      from  2d8be81e8845569a2cfc8435ad2394b14c06987a (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=3183116125a7068588d0fde59e85d31808a957b2

commit 3183116125a7068588d0fde59e85d31808a957b2
Author: beenje <[email protected]>
Date:   Thu Nov 7 14:53:26 2013 +0100

    [plugin.video.hgtv] updated to version 1.0.7

diff --git a/plugin.video.hgtv/addon.xml b/plugin.video.hgtv/addon.xml
index 2df732c..b85b417 100644
--- a/plugin.video.hgtv/addon.xml
+++ b/plugin.video.hgtv/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.hgtv"
        name="HGTV"
-       version="1.0.6"
+       version="1.0.7"
        provider-name="divingmule">
   <requires>
     <import addon="xbmc.python" version="2.1.0"/>
diff --git a/plugin.video.hgtv/changelog.txt b/plugin.video.hgtv/changelog.txt
index cf55bb0..a0473b6 100644
--- a/plugin.video.hgtv/changelog.txt
+++ b/plugin.video.hgtv/changelog.txt
@@ -1,3 +1,6 @@
+Version 1.0.7
+fix scrip error on some systems
+
 Version 1.0.6
 added support for video clips where available
 fix resume/watched status
diff --git a/plugin.video.hgtv/default.py b/plugin.video.hgtv/default.py
index b784cea..90f5735 100644
--- a/plugin.video.hgtv/default.py
+++ b/plugin.video.hgtv/default.py
@@ -44,7 +44,7 @@ def get_soup(url):
     if url.startswith('/'):
         url = base_url + url
     try:
-        soup = BeautifulSoup(make_request(url))
+        soup = BeautifulSoup(make_request(url), "html.parser")
         return soup
     except:
         addon_log('failed to parse the soup')
@@ -148,7 +148,7 @@ def get_playlist(soup, base=False):
         addon_log('Houston we have a problem!')
     else:
         url = '%s/hgtv/channel/xml/0,,%s,00.xml' %(base_url, show_id[0])
-        videos_soup = BeautifulSoup(make_request(url))
+        videos_soup = get_soup(url)
         parsed = [(i.clipname.string, i.videourl.string, i.abstract.string, 
i.thumbnailurl.string, i.length.string)
                    for i in videos_soup('video')]
         if base == 'videos':

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=6feb152f5a7bf88fa7e06da4e8b77b0f0eabcbe1

commit 6feb152f5a7bf88fa7e06da4e8b77b0f0eabcbe1
Author: beenje <[email protected]>
Date:   Thu Nov 7 14:53:24 2013 +0100

    [plugin.video.diy] updated to version 1.0.4

diff --git a/plugin.video.diy/addon.xml b/plugin.video.diy/addon.xml
index ca8a3fa..ff03df4 100644
--- a/plugin.video.diy/addon.xml
+++ b/plugin.video.diy/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.diy"
        name="DIY Network"
-       version="1.0.3"
+       version="1.0.4"
        provider-name="divingmule">
   <requires>
     <import addon="xbmc.python" version="2.1.0"/>
diff --git a/plugin.video.diy/changelog.txt b/plugin.video.diy/changelog.txt
index 70b234a..b911626 100644
--- a/plugin.video.diy/changelog.txt
+++ b/plugin.video.diy/changelog.txt
@@ -1,3 +1,6 @@
+Version 1.0.4
+fix script error on some systems
+
 Version 1.0.3
 added support for video clips where available
 fix resume/watched status
diff --git a/plugin.video.diy/default.py b/plugin.video.diy/default.py
index f6ff759..28793cb 100644
--- a/plugin.video.diy/default.py
+++ b/plugin.video.diy/default.py
@@ -44,7 +44,7 @@ def get_soup(url):
     if url.startswith('/'):
         url = base_url + url
     try:
-        soup = BeautifulSoup(make_request(url))
+        soup = BeautifulSoup(make_request(url), "html.parser")
         return soup
     except:
         addon_log('failed to parse the soup')
@@ -151,7 +151,7 @@ def get_playlist(soup, base=False):
         addon_log('Houston we have a problem!')
     else:
         url = '%s/diy/channel/xml/0,,%s,00.xml' %(base_url, show_id[0])
-        videos_soup = BeautifulSoup(make_request(url))
+        videos_soup = get_soup(url)
         parsed = [(i.clipname.string, i.videourl.string, i.abstract.string, 
i.thumbnailurl.string, i.length.string)
                    for i in videos_soup('video')]
         if base == 'videos':

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

Summary of changes:
 plugin.video.diy/addon.xml      |    2 +-
 plugin.video.diy/changelog.txt  |    3 +++
 plugin.video.diy/default.py     |    4 ++--
 plugin.video.hgtv/addon.xml     |    2 +-
 plugin.video.hgtv/changelog.txt |    3 +++
 plugin.video.hgtv/default.py    |    4 ++--
 6 files changed, 12 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to