The branch, eden-pre has been updated
       via  fa06c84994b13a08267e3eb52c412b2796115ba4 (commit)
      from  600c0de50bbc1ed0f6677cb84aba905bacce5490 (commit)

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

commit fa06c84994b13a08267e3eb52c412b2796115ba4
Author: spiff <[email protected]>
Date:   Mon Sep 19 09:10:44 2011 +0200

    [plugin.video.mediathek] updated to version 0.3.3

diff --git a/plugin.video.mediathek/addon.xml b/plugin.video.mediathek/addon.xml
index bac0659..7e56281 100644
--- a/plugin.video.mediathek/addon.xml
+++ b/plugin.video.mediathek/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <addon
   id="plugin.video.mediathek"
-  version="0.3.2"
+  version="0.3.3"
   name="Mediathek"
   provider-name="Raptor 2101 [[email protected]]">
   <requires>
diff --git a/plugin.video.mediathek/changelog.txt 
b/plugin.video.mediathek/changelog.txt
index 2b99a13..4013a6f 100644
--- a/plugin.video.mediathek/changelog.txt
+++ b/plugin.video.mediathek/changelog.txt
@@ -1,3 +1,5 @@
+0.3.3 - ADD: BR-Alpha
+0.3.2 - Version bump for eden pre
 0.2.2 - ADD: WDR Mediathek
         FIX: ZDF Mediathek will now ignore mp3 files
         FIX: OfflineCache removed
diff --git a/plugin.video.mediathek/html.py b/plugin.video.mediathek/html.py
index c70c2ec..efccdd8 100644
--- a/plugin.video.mediathek/html.py
+++ b/plugin.video.mediathek/html.py
@@ -23,6 +23,7 @@ def transformHtmlCodes(string):
     (u'Ö', u'&Ouml;'),
     (u'ä', u'&auml;'),
     (u'ü', u'&uuml;'),
+    (u'ü', u'&#252;'),
     (u'ö', u'&ouml;'),
     (u'ß', u'&szlig;'),
     (u'\"',u'&#034;'),
diff --git a/plugin.video.mediathek/mediathek/factory.py 
b/plugin.video.mediathek/mediathek/factory.py
index ce6acac..6d3f488 100644
--- a/plugin.video.mediathek/mediathek/factory.py
+++ b/plugin.video.mediathek/mediathek/factory.py
@@ -22,6 +22,7 @@ from mediathek.arte import *
 from mediathek.dreisat import *
 from mediathek.bayerisches import *
 from mediathek.orf import *
+from mediathek.bralpha import *
 
 class MediathekFactory(object):
   def __init__(self):
@@ -33,6 +34,7 @@ class MediathekFactory(object):
        BayerischesFSMediathek.name():BayerischesFSMediathek,
        ORFMediathek.name():ORFMediathek,
        WDRMediathek.name():WDRMediathek,
+       BRAlphaMediathek.name():BRAlphaMediathek,
       }
   def getAvaibleMediathekTypes(self):
     return sorted(self.avaibleMediathekes.keys())
diff --git a/plugin.video.mediathek/simplexbmc.py 
b/plugin.video.mediathek/simplexbmc.py
index a0a1e77..3c5075f 100644
--- a/plugin.video.mediathek/simplexbmc.py
+++ b/plugin.video.mediathek/simplexbmc.py
@@ -82,13 +82,16 @@ class SimpleXbmcGui(object):
           listItem.setProperty("PlayPath", link.playPath);
 
         self.log("URL:"+ link.basePath);
-        listItem.setInfo("video",{
-          "size": link.size,
-          "date": time.strftime("%d.%m.%Y",displayObject.date),
-          "year": int(time.strftime("%Y",displayObject.date)),
-          "title": title,
-          "plot": transformHtmlCodes(displayObject.description)
-        });
+        try:
+          listItem.setInfo("video",{
+            "size": link.size,
+            "date": time.strftime("%d.%m.%Y",displayObject.date),
+            "year": int(time.strftime("%Y",displayObject.date)),
+            "title": title,
+            "plot": transformHtmlCodes(displayObject.description)
+          }); 
+        except:
+          pass;
       
       
         listItem.setProperty('IsPlayable', 'true');

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

Summary of changes:
 plugin.video.mediathek/addon.xml            |    2 +-
 plugin.video.mediathek/changelog.txt        |    2 +
 plugin.video.mediathek/html.py              |    1 +
 plugin.video.mediathek/mediathek/bralpha.py |  203 +++++++++++++++++++++++++++
 plugin.video.mediathek/mediathek/factory.py |    2 +
 plugin.video.mediathek/simplexbmc.py        |   17 ++-
 6 files changed, 219 insertions(+), 8 deletions(-)
 create mode 100644 plugin.video.mediathek/mediathek/bralpha.py


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
Learn about the latest advances in developing for the 
BlackBerry&reg; mobile platform with sessions, labs & more.
See new tools and technologies. Register for BlackBerry&reg; DevCon today!
http://p.sf.net/sfu/rim-devcon-copy1 
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to