The branch, eden has been updated
       via  3108648ea8dd38e3bc01cea770d1ad503ad3f5cb (commit)
       via  fef3688c29c992c1f21a8fd8308ada75a0b95a76 (commit)
      from  8e420a5aa685ff866c75aa4beb6c78a1d6e05615 (commit)

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

commit 3108648ea8dd38e3bc01cea770d1ad503ad3f5cb
Author: beenje <[email protected]>
Date:   Mon Jan 28 21:43:23 2013 +0100

    [plugin.video.nrk] updated to version 4.3.2

diff --git a/plugin.video.nrk/addon.xml b/plugin.video.nrk/addon.xml
index 0cf19d1..f794dd1 100644
--- a/plugin.video.nrk/addon.xml
+++ b/plugin.video.nrk/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="plugin.video.nrk"
        name="NRK Nett-TV"
-       version="4.3.1"
+       version="4.3.2"
        provider-name="takoi">
   <requires>
     <import addon="xbmc.python" version="2.0"/>
diff --git a/plugin.video.nrk/changelog.txt b/plugin.video.nrk/changelog.txt
index ee316be..762aaf9 100644
--- a/plugin.video.nrk/changelog.txt
+++ b/plugin.video.nrk/changelog.txt
@@ -1,3 +1,6 @@
+[B]4.3.2[/B]
+- Sideendringer
+
 [B]4.3.1[/B]
 - Fikset linjeskift i undertekster
 - Fikset tittel på infoside
diff --git a/plugin.video.nrk/data.py b/plugin.video.nrk/data.py
index 05ad060..4062e77 100644
--- a/plugin.video.nrk/data.py
+++ b/plugin.video.nrk/data.py
@@ -38,7 +38,7 @@ def get_by_letter(arg):
 def get_by_category(arg):
   url = "http://tv.nrk.no/kategori/%s"; % arg
   html = xhrsession.get(url).text
-  html = parseDOM(html, 'div', {'class':'alpha-list clear'})
+  html = parseDOM(html, 'div', {'id':'programList'})
   return _parse_list(html)
 
 def get_categories():
@@ -75,7 +75,7 @@ def get_recommended():
 
 def get_most_recent():
   url = "http://tv.nrk.no/listobjects/recentlysent.json/page/0";
-  elems = xhrsession.get(url).json['ListObjectViewModels']
+  elems = xhrsession.get(url).json['ListObjectModels']
   titles = [ e['Title'] for e in elems ]
   titles = map(html_decode, titles)
   urls = [ e['Url'] for e in elems ]

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


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

Summary of changes:
 plugin.video.nrk/addon.xml                         |    2 +-
 plugin.video.nrk/changelog.txt                     |    3 +
 plugin.video.nrk/data.py                           |    4 +-
 .../LICENSE.txt                                    |    0
 plugin.video.tv5monde/README                       |   30 ++++
 plugin.video.tv5monde/addon.xml                    |   19 +++
 plugin.video.tv5monde/changelog.txt                |   23 +++
 plugin.video.tv5monde/default.py                   |  121 ++++++++++++++
 plugin.video.tv5monde/fanart.jpg                   |  Bin 0 -> 154603 bytes
 plugin.video.tv5monde/icon.png                     |  Bin 0 -> 34338 bytes
 plugin.video.tv5monde/lutil.py                     |  165 ++++++++++++++++++++
 .../resources/language/English/strings.xml         |    6 +
 .../resources/language/French/strings.xml          |    6 +
 .../resources/language/Spanish/strings.xml         |    6 +
 plugin.video.tv5monde/resources/settings.xml       |    3 +
 15 files changed, 385 insertions(+), 3 deletions(-)
 copy {plugin.audio.dradio => plugin.video.tv5monde}/LICENSE.txt (100%)
 create mode 100644 plugin.video.tv5monde/README
 create mode 100644 plugin.video.tv5monde/addon.xml
 create mode 100644 plugin.video.tv5monde/changelog.txt
 create mode 100644 plugin.video.tv5monde/default.py
 create mode 100644 plugin.video.tv5monde/fanart.jpg
 create mode 100644 plugin.video.tv5monde/icon.png
 create mode 100644 plugin.video.tv5monde/lutil.py
 create mode 100644 plugin.video.tv5monde/resources/language/English/strings.xml
 create mode 100644 plugin.video.tv5monde/resources/language/French/strings.xml
 create mode 100644 plugin.video.tv5monde/resources/language/Spanish/strings.xml
 create mode 100644 plugin.video.tv5monde/resources/settings.xml


hooks/post-receive
-- 
Plugins

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to