The branch, eden has been updated
       via  2369dca3c39b8d3cfb5b140a9edf66d6d327bbbd (commit)
      from  2f456682882d94400b93707a0dcaf4ed49e8302b (commit)

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

commit 2369dca3c39b8d3cfb5b140a9edf66d6d327bbbd
Author: spiff <[email protected]>
Date:   Thu Jun 7 22:37:50 2012 +0200

    [plugin.video.onside.tv] updated to version 2.0.2

diff --git a/plugin.video.onside.tv/addon.py b/plugin.video.onside.tv/addon.py
index cf4ab89..e568cfb 100644
--- a/plugin.video.onside.tv/addon.py
+++ b/plugin.video.onside.tv/addon.py
@@ -82,7 +82,11 @@ class OnsideTV(object):
         html = self.downloadUrl(url)
         m = re.search('id="onside_video_player" href="(.*?)"', html)
 
-        item = xbmcgui.ListItem(path = m.group(1))
+        videoUrl = m.group(1)
+        if videoUrl[0:7] != 'http://':
+            videoUrl = BASE_URL + videoUrl
+
+        item = xbmcgui.ListItem(path = videoUrl)
         xbmcplugin.setResolvedUrl(HANDLE, True, item)
 
     def downloadUrl(self, url):
diff --git a/plugin.video.onside.tv/addon.xml b/plugin.video.onside.tv/addon.xml
index 457882e..6fe575d 100644
--- a/plugin.video.onside.tv/addon.xml
+++ b/plugin.video.onside.tv/addon.xml
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <addon
         id="plugin.video.onside.tv"
-        version="2.0.0"
+        version="2.0.2"
         name="Onside TV"
         provider-name="ariba [[email protected]], twinther 
[[email protected]]">
     <requires>
         <import addon="xbmc.python" version="2.0"/>
-        <import addon="script.module.buggalo" version="1.0.0"/>
+        <import addon="script.module.buggalo" version="1.0.1"/>
     </requires>
     <extension point="xbmc.python.pluginsource" library="addon.py">
         <provides>video</provides>
@@ -18,5 +18,6 @@
         <description lang="da">Se de bedste mål og interviews fra Onside 
TV[CR][CR]Har du kommentarer, ris eller ros til denne addon er du velkommen til 
at deltage i debatten på min blog på http://tommy.winther.nu</description>
         <license>GPL 2.0</license>
         <platform>all</platform>
+        <language>da</language>
     </extension>
 </addon>
diff --git a/plugin.video.onside.tv/changelog.txt 
b/plugin.video.onside.tv/changelog.txt
index 44500e2..e8b7126 100644
--- a/plugin.video.onside.tv/changelog.txt
+++ b/plugin.video.onside.tv/changelog.txt
@@ -1,3 +1,9 @@
+[B]Version 2.0.2 - 2012-06-07[/B]
+- Forgot <language> tag...
+
+[B]Version 2.0.1 - 2012-06-07[/B]
+- Fixed playback of videos (due to site changes)
+
 [B]Version 2.0.0 - 2012-02-17[/B]
 - First version for Eden
 - Introduced usage of script.module.buggalo

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

Summary of changes:
 plugin.video.onside.tv/addon.py      |    6 +++++-
 plugin.video.onside.tv/addon.xml     |    5 +++--
 plugin.video.onside.tv/changelog.txt |    6 ++++++
 3 files changed, 14 insertions(+), 3 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