The branch, dharma has been updated
       via  61dafd6f0c57f8f0eff10256ee357713f4e96d2b (commit)
      from  dc1d5683e6443f9b256e400ab49f5426951c0318 (commit)

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

commit 61dafd6f0c57f8f0eff10256ee357713f4e96d2b
Author: spiff <[email protected]>
Date:   Thu Jun 21 16:31:18 2012 +0200

    [plugin.video.twit] updated to version 0.1.7

diff --git a/plugin.video.twit/addon.xml b/plugin.video.twit/addon.xml
index 14c02ed..af2f73d 100644
--- a/plugin.video.twit/addon.xml
+++ b/plugin.video.twit/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>

 <addon id="plugin.video.twit"

        name="TWiT"

-       version="0.1.6"

+       version="0.1.7"

        provider-name="divingmule,thanks to Adam B.">

   <requires>

     <import addon="xbmc.python" version="1.0"/>

diff --git a/plugin.video.twit/changelog.txt b/plugin.video.twit/changelog.txt
index d37b001..fe2b109 100644
--- a/plugin.video.twit/changelog.txt
+++ b/plugin.video.twit/changelog.txt
@@ -1,3 +1,6 @@
+Version 0.1.7

+fix show listings for "The Tech Guy" and "Before You Buy"

+

 Version 0.1.6

 fix for website changes

 

diff --git a/plugin.video.twit/default.py b/plugin.video.twit/default.py
index 0119a6d..36cf25b 100644
--- a/plugin.video.twit/default.py
+++ b/plugin.video.twit/default.py
@@ -43,7 +43,7 @@ def categories():
         
addDir(__language__(30024),'http://twit.tv/show/ham-nation',1,'http://static.mediafly.com/publisher/images/7a948708b1a3462bab8721556dd26704/icon-600x600.png')

         
addDir(__language__(30025),'http://twit.tv/show/futures-in-biotech',1,'http://leoville.tv/podcasts/coverart/fib600audio.jpg')

         
addDir(__language__(30026),'http://twit.tv/show/this-week-in-radio-tech',1,'http://static.mediafly.com/publisher/images/ab7b2412afa84674971e4c93665d0e06/icon-600x600.png')

-        
addDir(__language__(30036),'http://twit.tv/show/before-you-buy',1,'http://static.mediafly.com/publisher/images/dee7de4f87034d4d917ed446df3616e4/icon-600x600.png')

+        
addDir(__language__(30036),'http://twit.tv/show/you-buy',1,'http://static.mediafly.com/publisher/images/dee7de4f87034d4d917ed446df3616e4/icon-600x600.png')

         
addDir(__language__(30037),'http://twit.tv/show/game-on',1,'http://static.mediafly.com/publisher/images/3f551d9b6ef9476fb76f92ccd4b37826/icon-600x600.png')

         
addDir(__language__(30042),'http://twit.tv/show/treys-variety-hour',1,'http://leoville.tv/podcasts/coverart/tvh300video.jpg')

 

@@ -56,9 +56,9 @@ def index(url,iconimage):
         soup = BeautifulSoup(link, convertEntities=BeautifulSoup.HTML_ENTITIES)

         items = soup.findAll('div', attrs={'id' : "primary"})[0]('div', 
attrs={'class' : 'field-content'})

         for i in items:

-            name = i.a.string.encode('ascii', 'ignore')

-            if name.startswith('#'):

-                url = i.a['href']

+            url = i.a['href']

+            if url.startswith('http://twit.tv/show/'):

+                name = i.a.string.encode('ascii', 'ignore')

                 try:

                     description = i.p.string

                 except:


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

Summary of changes:
 plugin.video.twit/addon.xml     |    2 +-
 plugin.video.twit/changelog.txt |    3 +++
 plugin.video.twit/default.py    |    8 ++++----
 3 files changed, 8 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to