The branch, eden has been updated
via 682abb6841987dad7333ed6ca7486ab305c89376 (commit)
from 8c6e1619c275814cfcc6ffc0f4a510c1537f91a6 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/plugins;a=commit;h=682abb6841987dad7333ed6ca7486ab305c89376
commit 682abb6841987dad7333ed6ca7486ab305c89376
Author: spiff <[email protected]>
Date: Thu Jun 21 16:31:27 2012 +0200
[plugin.video.twit] updated to version 1.0.8
diff --git a/plugin.video.twit/addon.xml b/plugin.video.twit/addon.xml
index 9886c33..c789595 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="1.0.7"
+ version="1.0.8"
provider-name="divingmule,thanks to Adam B.">
<requires>
<import addon="xbmc.python" version="2.0"/>
diff --git a/plugin.video.twit/changelog.txt b/plugin.video.twit/changelog.txt
index 8d44eee..f32a546 100644
--- a/plugin.video.twit/changelog.txt
+++ b/plugin.video.twit/changelog.txt
@@ -1,3 +1,6 @@
+Version 1.0.8
+fix show listings for "The Tech Guy" and "Before You Buy"
+
Version 1.0.7
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