[Xbmc-addons] Plugins branch, frodo, updated. 30d3b6a7a8bf307e590e97389ddf1eda53deced1

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  30d3b6a7a8bf307e590e97389ddf1eda53deced1 (commit)
  from  c47b353e25ed036aa7c18ff22b9aec5bafe57657 (commit)

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

commit 30d3b6a7a8bf307e590e97389ddf1eda53deced1
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 09:11:03 2013 +0200

[plugin.video.nrk] updated to version 4.4.8

diff --git a/plugin.video.nrk/addon.xml b/plugin.video.nrk/addon.xml
index 02a84c5..a2d57ec 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.4.7
+   version=4.4.8
provider-name=takoi
   requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.video.nrk/changelog.txt b/plugin.video.nrk/changelog.txt
index 9363c11..e461a28 100644
--- a/plugin.video.nrk/changelog.txt
+++ b/plugin.video.nrk/changelog.txt
@@ -1,3 +1,6 @@
+[B]4.4.8[/B]
+- Fikset direktestrømmer. Siden de endres så ofte, blir de nå hentet på 
nytt hver gang i stedet
+
 [B]4.4.7[/B]
 - Fikset direktestrømmer
 
diff --git a/plugin.video.nrk/data.py b/plugin.video.nrk/data.py
index 44abd6a..63e4ea7 100644
--- a/plugin.video.nrk/data.py
+++ b/plugin.video.nrk/data.py
@@ -31,6 +31,7 @@ session.headers['User-Agent'] = 'xbmc.org'
 xhrsession = requests.session()
 xhrsession.headers['User-Agent'] = 'xbmc.org'
 xhrsession.headers['X-Requested-With'] = 'XMLHttpRequest'
+xhrsession.headers['Cookie'] = 
NRK_PLAYER_SETTINGS_TV=devicetype=desktoppreferred-player-odm=hlslinkpreferred-player-live=hlslink
 
 
 def get_by_letter(arg):
@@ -61,6 +62,13 @@ def _parse_list(html):
   return titles, urls, thumbs, fanart
 
 
+def get_live_stream(ch):
+  url = http://tv.nrk.no/direkte/nrk%s; % ch
+  html = xhrsession.get(url).text
+  url = parseDOM(html, 'div', {'id':'playerelement'}, ret='data-media')[0]
+  img = parseDOM(html, 'img', {'class':'poster'}, ret='src')[0]
+  return url, img
+
 def get_recommended():
   url = http://tv.nrk.no/;
   html = xhrsession.get(url).text
diff --git a/plugin.video.nrk/default.py b/plugin.video.nrk/default.py
index cd30551..aa43467 100644
--- a/plugin.video.nrk/default.py
+++ b/plugin.video.nrk/default.py
@@ -39,9 +39,11 @@ def view_top():
 
 @plugin.route('/live')
 def live():
-  add(NRK 1, http://nrk1-i.akamaihd.net/hls/live/213271/nrk1/master.m3u8;, 
application/vnd.apple.mpegurl, nrk1.png)
-  add(NRK 2, http://nrk2-i.akamaihd.net/hls/live/213272/nrk2/master.m3u8;, 
application/vnd.apple.mpegurl, nrk2.png)
-  add(NRK 3, http://nrk3-i.akamaihd.net/hls/live/213273/nrk3/master.m3u8;, 
application/vnd.apple.mpegurl, nrk3.png)
+  import data
+  res = os.path.join(plugin.path, resources/images)
+  for ch in [1,2,3]:
+url, fanart = data.get_live_stream(ch)
+add(NRK %s % ch, url, application/vnd.apple.mpegurl, os.path.join(res, 
nrk%d.png % ch), fanart)
   add(NRK P1, http://lyd.nrk.no/nrk_radio_p1_ostlandssendingen_mp3_h;, 
audio/mpeg)
   add(NRK P2, http://lyd.nrk.no/nrk_radio_p2_mp3_h;, audio/mpeg)
   add(NRK P3, http://lyd.nrk.no/nrk_radio_p3_mp3_h;, audio/mpeg)
@@ -58,12 +60,10 @@ def live():
   add(Super, http://lyd.nrk.no/nrk_radio_super_mp3_h;, audio/mpeg)
   endOfDirectory(plugin.handle)
 
-def add(title, url, mimetype, thumb=):
-  if thumb:
-img_path = os.path.join(plugin.path, resources/images)
-thumb = os.path.join(img_path, thumb)
+def add(title, url, mimetype, thumb=, fanart=):
   li =  ListItem(title, thumbnailImage=thumb)
   li.setProperty('mimetype', mimetype)
+  li.setProperty('fanart_image', fanart)
   addDirectoryItem(plugin.handle, url, li, False)
 
 def view(titles, urls, thumbs=repeat(''), bgs=repeat(''), descr=repeat(''), 
update_listing=False):

---

Summary of changes:
 plugin.video.nrk/addon.xml |2 +-
 plugin.video.nrk/changelog.txt |3 +++
 plugin.video.nrk/data.py   |8 
 plugin.video.nrk/default.py|   14 +++---
 4 files changed, 19 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
Plugins

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [git pull] plugin.video.nrk

2013-07-01 Thread Kibje
On Wed, Jun 26, 2013 at 3:03 PM, takoi ta...@substep.org wrote:

 * addon: plugin.video.nrk
 * version: 4.4.8
 * url: git://github.com/takoi/xbmc-addon-nrk.git
 * tag: v4.4.8
 * xbmc version: frodo


Updated, cheers

Kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] EpisodeHunter

2013-07-01 Thread Kibje
On Wed, Jun 26, 2013 at 9:27 PM, Oskar Karlsson i...@episodehunter.tvwrote:

 *addon - script.episodeHunter
 *version - 1.0.3
 *url - git://github.com/tjoskar/script.episodeHunter.git
 *revision - 5d023c2b8dc2fac18003ffdfac4db06295dfdbfe
 *branch - master
 *xbmc version - frodo


Updated, cheers

kibje

ps: For next months version, the correct spelling is 'response' :P
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Scripts branch, frodo, updated. ce70dbb7e389e7ff6a349b129176c7548b3989ea

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  ce70dbb7e389e7ff6a349b129176c7548b3989ea (commit)
  from  35401834f23baba830cb272cdf9df950041b51f7 (commit)

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


---

Summary of changes:
 script.episodeHunter/LICENSE.txt   |  282 +
 script.episodeHunter/README.md |   12 +
 script.episodeHunter/ToDo  |   11 +
 script.episodeHunter/addon.py  |  308 +++
 script.episodeHunter/addon.xml |   28 ++
 script.episodeHunter/changelog.txt |   42 +++
 script.episodeHunter/connection.py |  199 
 script.episodeHunter/database.py   |  130 
 script.episodeHunter/default.py|   32 ++
 script.episodeHunter/fanart.jpg|  Bin 0 - 1115722 bytes
 script.episodeHunter/helper.py |   83 +
 script.episodeHunter/httpconn.py   |   43 +++
 script.episodeHunter/icon.png  |  Bin 0 - 4769 bytes
 .../resources/language/English/strings.xml |   60 
 script.episodeHunter/resources/lib/README.md   |4 +
 script.episodeHunter/resources/media/README.md |4 +
 script.episodeHunter/resources/settings.xml|   13 +
 script.episodeHunter/sqlite.db |  Bin 0 - 5120 bytes
 script.episodeHunter/sync.py   |  317 
 script.episodeHunter/xbmc_helper.py|  178 +++
 20 files changed, 1746 insertions(+), 0 deletions(-)
 create mode 100644 script.episodeHunter/LICENSE.txt
 create mode 100644 script.episodeHunter/README.md
 create mode 100644 script.episodeHunter/ToDo
 create mode 100644 script.episodeHunter/addon.py
 create mode 100644 script.episodeHunter/addon.xml
 create mode 100644 script.episodeHunter/changelog.txt
 create mode 100644 script.episodeHunter/connection.py
 create mode 100644 script.episodeHunter/database.py
 create mode 100644 script.episodeHunter/default.py
 create mode 100644 script.episodeHunter/fanart.jpg
 create mode 100644 script.episodeHunter/helper.py
 create mode 100644 script.episodeHunter/httpconn.py
 create mode 100644 script.episodeHunter/icon.png
 create mode 100644 script.episodeHunter/resources/language/English/strings.xml
 create mode 100644 script.episodeHunter/resources/lib/README.md
 create mode 100644 script.episodeHunter/resources/media/README.md
 create mode 100644 script.episodeHunter/resources/settings.xml
 create mode 100644 script.episodeHunter/sqlite.db
 create mode 100644 script.episodeHunter/sync.py
 create mode 100644 script.episodeHunter/xbmc_helper.py


hooks/post-receive
-- 
Scripts

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Plugins branch, eden, updated. 2176c872dafbe8ea8bce6634ae8f767ca95cfcae

2013-07-01 Thread Kibje
The branch, eden has been updated
   via  2176c872dafbe8ea8bce6634ae8f767ca95cfcae (commit)
  from  7dafd44f165bb726eaae2ac7c87fbd3a092f1aaf (commit)

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

commit 2176c872dafbe8ea8bce6634ae8f767ca95cfcae
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:05:51 2013 +0200

[plugin.video.attactv] updated to version 1.0.1

diff --git a/plugin.video.attactv/addon.xml b/plugin.video.attactv/addon.xml
index 2e83c14..9193f60 100644
--- a/plugin.video.attactv/addon.xml
+++ b/plugin.video.attactv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.attactv name=attac tv version=1.0.0 
provider-name=jamontes
+addon id=plugin.video.attactv name=attac tv version=1.0.1 
provider-name=jamontes
 requires
 import addon=xbmc.python version=2.0/
 import addon=plugin.video.youtube version=3.4.1/
@@ -20,5 +20,8 @@
 summary lang=deATTAC TV. Ein weiterer TV ist möglich./summary
 description lang=deATTAC ist eine internationale Organisation, die 
zur globalisierungskritischen Bewegung gehört. Wir kämpfen gegen die freie 
Globalisierung und arbeiten an sozialen, ökologischen und demokratischen 
Alternativen, um die Grundrechte für alle zu sichern. Wir setzen uns im 
Besonderen für die Regulierung der Finanzmärkte ein, für die Schließung der 
Steuerparadiese, die Einführung einer globalen Abgabe zur weltweiten 
Finanzierung des Allgemeinguts, für die Streichung aller Schulden der 
Entwicklungsländer, für einen gerechten Handel und die Einführung von 
Grenzwerten für den freien Handel und Kapitalbewegungen.[CR]Dieses plugin 
erlaubt es, die videos und documentals aus dem ATTAC TV website zu 
sehen./description
 languageen es fr de/language
+licenseGNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007/license
+forumhttp://forum.xbmc.org/showthread.php?tid=155306/forum
+sourcehttps://github.com/jamontes/plugin.video.attactv/source
 /extension
 /addon
diff --git a/plugin.video.attactv/changelog.txt 
b/plugin.video.attactv/changelog.txt
index 8f2f452..5d5f947 100644
--- a/plugin.video.attactv/changelog.txt
+++ b/plugin.video.attactv/changelog.txt
@@ -1,3 +1,6 @@
+1.0.1
+- Added Add-on optional tags and forum support thread.
+- Fix for default language settings on first run.
 1.0.0
 - First official Eden release for repository.
 0.0.9
diff --git a/plugin.video.attactv/default.py b/plugin.video.attactv/default.py
index 0f7310d..c010ce6 100644
--- a/plugin.video.attactv/default.py
+++ b/plugin.video.attactv/default.py
@@ -38,7 +38,12 @@ language_list = ('system', 'es', 'en', 'fr', 'de')
 trans_language = {'Spanish' : 'es', 'English' : 'en', 'French' : 'fr', 
'German' : 'de'}
 
 # Language gets the the proper value from language_list
-language = language_list[int(language_id)]
+try:
+language = language_list[int(language_id)]
+except:
+lutil.log(attactv.main Warning: language not defined. fixed to 0)
+settings.setSetting(language, 0)
+language = language_list[0]
 
 if language == 'system':
 # We need to get the system language used by the GUI.
diff --git a/plugin.video.attactv/resources/settings.xml 
b/plugin.video.attactv/resources/settings.xml
index 6a397ee..6e71145 100644
--- a/plugin.video.attactv/resources/settings.xml
+++ b/plugin.video.attactv/resources/settings.xml
@@ -1,4 +1,5 @@
+?xml version=1.0 encoding=utf-8 standalone=yes?
 settings
-   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE/
+   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE default=System default/
setting id=debug type=bool label=30102 default=false/
 /settings

---

Summary of changes:
 plugin.video.attactv/addon.xml  |5 -
 plugin.video.attactv/changelog.txt  |3 +++
 plugin.video.attactv/default.py |7 ++-
 plugin.video.attactv/resources/settings.xml |3 ++-
 4 files changed, 15 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Plugins

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] plugin.video.attactv v1.0.1 (Eden) and v1.1.1 (Frodo) - Update

2013-07-01 Thread Kibje

 * addon - plugin.video.attactv
 * version - 1.0.1
 * url - git://github.com/jamontes/plugin.video.attactv.git
 * revision - eaa4ef05682c430ba0890c2fa337630819f3eeba
 * branch - eden
 * xbmc version - eden

 * addon - plugin.video.attactv
 * version - 1.1.1
 * url - git://github.com/jamontes/plugin.video.attactv.git
 * revision - 04f69ef118857c65be3e21c4273d7f49865e6448
 * branch - frodo
 * xbmc version - frodo


Updated both, cheers

kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Plugins branch, frodo, updated. 547d1711c7af80e8aaa5d28a386f024d83357515

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  547d1711c7af80e8aaa5d28a386f024d83357515 (commit)
  from  30d3b6a7a8bf307e590e97389ddf1eda53deced1 (commit)

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

commit 547d1711c7af80e8aaa5d28a386f024d83357515
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:09:38 2013 +0200

[plugin.video.attactv] updated to version 1.1.1

diff --git a/plugin.video.attactv/addon.xml b/plugin.video.attactv/addon.xml
index b06da6a..bf44b44 100644
--- a/plugin.video.attactv/addon.xml
+++ b/plugin.video.attactv/addon.xml
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.attactv name=attac tv version=1.1.0 
provider-name=jamontes
+addon id=plugin.video.attactv name=attac tv version=1.1.1 
provider-name=jamontes
 requires
 import addon=xbmc.python version=2.1.0/
 import addon=plugin.video.youtube version=4.4.1/
@@ -20,5 +20,8 @@
 summary lang=deATTAC TV. Ein weiterer TV ist möglich./summary
 description lang=deATTAC ist eine internationale Organisation, die 
zur globalisierungskritischen Bewegung gehört. Wir kämpfen gegen die freie 
Globalisierung und arbeiten an sozialen, ökologischen und demokratischen 
Alternativen, um die Grundrechte für alle zu sichern. Wir setzen uns im 
Besonderen für die Regulierung der Finanzmärkte ein, für die Schließung der 
Steuerparadiese, die Einführung einer globalen Abgabe zur weltweiten 
Finanzierung des Allgemeinguts, für die Streichung aller Schulden der 
Entwicklungsländer, für einen gerechten Handel und die Einführung von 
Grenzwerten für den freien Handel und Kapitalbewegungen.[CR]Dieses plugin 
erlaubt es, die videos und documentals aus dem ATTAC TV website zu 
sehen./description
 languageen es fr de/language
+licenseGNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007/license
+forumhttp://forum.xbmc.org/showthread.php?tid=155306/forum
+sourcehttps://github.com/jamontes/plugin.video.attactv/source
 /extension
 /addon
diff --git a/plugin.video.attactv/changelog.txt 
b/plugin.video.attactv/changelog.txt
index c7048da..5f875a5 100644
--- a/plugin.video.attactv/changelog.txt
+++ b/plugin.video.attactv/changelog.txt
@@ -1,3 +1,6 @@
+1.1.1
+- Added Add-on optional tags and forum support thread.
+- Fix for default language settings on first run.
 1.1.0
 - Added branch for Frodo repository.
 - Updated versions of plugin dependencies.
diff --git a/plugin.video.attactv/default.py b/plugin.video.attactv/default.py
index 0f7310d..c010ce6 100644
--- a/plugin.video.attactv/default.py
+++ b/plugin.video.attactv/default.py
@@ -38,7 +38,12 @@ language_list = ('system', 'es', 'en', 'fr', 'de')
 trans_language = {'Spanish' : 'es', 'English' : 'en', 'French' : 'fr', 
'German' : 'de'}
 
 # Language gets the the proper value from language_list
-language = language_list[int(language_id)]
+try:
+language = language_list[int(language_id)]
+except:
+lutil.log(attactv.main Warning: language not defined. fixed to 0)
+settings.setSetting(language, 0)
+language = language_list[0]
 
 if language == 'system':
 # We need to get the system language used by the GUI.
diff --git a/plugin.video.attactv/resources/settings.xml 
b/plugin.video.attactv/resources/settings.xml
index 6a397ee..6e71145 100644
--- a/plugin.video.attactv/resources/settings.xml
+++ b/plugin.video.attactv/resources/settings.xml
@@ -1,4 +1,5 @@
+?xml version=1.0 encoding=utf-8 standalone=yes?
 settings
-   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE/
+   setting id=language type=enum label=30101 values=System 
default|ES|EN|FR|DE default=System default/
setting id=debug type=bool label=30102 default=false/
 /settings

---

Summary of changes:
 plugin.video.attactv/addon.xml  |5 -
 plugin.video.attactv/changelog.txt  |3 +++
 plugin.video.attactv/default.py |7 ++-
 plugin.video.attactv/resources/settings.xml |3 ++-
 4 files changed, 15 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Plugins

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [SVN Pull] PreviewNetworks - Update

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 11:50 AM, Nicola Mazzariello nm...@tiscali.itwrote:

 *addon - plugin.video.previewnetworks
 *version - 2.3.3
 *url -
 http://previewnetworks-xbmc-plugin.googlecode.com/svn/trunk/plugin.video.previewnetworks/
 *revision - 29
 *xbmc version - frodo


Updated, cheers

kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Plugins branch, frodo, updated. 7ff2d469530c06aae3fa08e98da9da96561f80ff

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  7ff2d469530c06aae3fa08e98da9da96561f80ff (commit)
  from  547d1711c7af80e8aaa5d28a386f024d83357515 (commit)

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

commit 7ff2d469530c06aae3fa08e98da9da96561f80ff
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:13:18 2013 +0200

[plugin.video.previewnetworks] updated to version 2.3.3

diff --git a/plugin.video.previewnetworks/addon.xml 
b/plugin.video.previewnetworks/addon.xml
index 68a4fa5..e04d7a2 100644
--- a/plugin.video.previewnetworks/addon.xml
+++ b/plugin.video.previewnetworks/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.video.previewnetworks
name=Preview Networks
-   version=2.3.2
+   version=2.3.3
provider-name=nmazz64
 requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.video.previewnetworks/changelog.txt 
b/plugin.video.previewnetworks/changelog.txt
index 4b189ad..cf08232 100644
--- a/plugin.video.previewnetworks/changelog.txt
+++ b/plugin.video.previewnetworks/changelog.txt
@@ -1,3 +1,6 @@
+[B]2.3.3[/B]
+- same bug fix and other optimizations
+
 [B]2.3.2[/B]
 - optimizations to reduce the timing for download the list of video preview
 
@@ -8,7 +11,9 @@
 - compatibility changes for Frodo beta
 
 [B]2.2.1[/B]
-- Same bugfix[B]2.2[/B]
+- Same bugfix
+
+[B]2.2[/B]
 - Solved the DownloadView option
 
 [B]2.1[/B]
diff --git a/plugin.video.previewnetworks/default.py 
b/plugin.video.previewnetworks/default.py
index 0b879f7..5d85335 100644
--- a/plugin.video.previewnetworks/default.py
+++ b/plugin.video.previewnetworks/default.py
@@ -1,5 +1,5 @@
 
-Plugin for streaming Preview network 
+Plugin for streaming Preview network
 
 
 # main imports
@@ -21,7 +21,7 @@ __author__ = nmazz64
 __url__ = http://code.google.com/p/previewnetworks-xbmc-plugin;
 __svn_url__ = 
http://previewnetworks-xbmc-plugin.googlecode.com/svn/trunk/plugin.video.previewnetworks/;
 __useragent__ = QuickTime/7.6.5 (qtver=7.6.5;os=Windows NT 5.1Service Pack 3)
-__version__ = 2.3.2
+__version__ = 2.3.3
 __svn_revision__ = $Revision: 0$
 __XBMC_Revision__ = 31633
 __Channel_ID__ = 391100379-1
@@ -52,8 +52,9 @@ def categories(root):
 next_icon = os.path.join(Addon.getAddonInfo('path'), 'resources','images', 
'next.png')
 genre_icon = os.path.join(Addon.getAddonInfo('path'), 
'resources','images', 'genre.png')
 search_icon = os.path.join(Addon.getAddonInfo('path'), 
'resources','images', 'search.png')
-##   baseurl=http://%s.feed.previewnetworks.com/v3.1/%s/;
-baseurl=http://%s.hdplus.previewnetworks.com/v3.1/%s/;
+#baseurl=http://%s.feed.previewnetworks.com/v3.1/%s/;
+#baseurl=http://%s.hdplus.previewnetworks.com/v3.1/%s/;
+baseurl=http://%s.%s.previewnetworks.com/v3.1/%s/;
 
 if root:
 addDir(Addon.getLocalizedString(30301),baseurl+'now-%s/%s',1,now_icon)
@@ -62,35 +63,34 @@ def categories(root):
 addDir(Addon.getLocalizedString(30300),'genre:',0,genre_icon)
 
addDir(Addon.getLocalizedString(30340),baseurl+'search-%s/%s/?search_field=product_titlesearch_query=%s',99,search_icon)
 else:
-
addDir(Addon.getLocalizedString(30304),baseurl+'CinemaAction/%s',10,icona)
-
addDir(Addon.getLocalizedString(30305),baseurl+'CinemaAdventure/%s',11,icona)
-
addDir(Addon.getLocalizedString(30306),baseurl+'CinemaAnimation/%s',12,icona)
-
addDir(Addon.getLocalizedString(30307),baseurl+'CinemaBiography/%s',13,icona)
-
addDir(Addon.getLocalizedString(30308),baseurl+'CinemaComedy/%s',14,icona)
-
addDir(Addon.getLocalizedString(30309),baseurl+'CinemaCrime/%s',15,icona)
-
addDir(Addon.getLocalizedString(30310),baseurl+'CinemaDocumentary/%s',16,icona)
-
addDir(Addon.getLocalizedString(30311),baseurl+'CinemaDrama/%s',17,icona)
-
addDir(Addon.getLocalizedString(30312),baseurl+'CinemaFamily/%s',18,icona)
-
addDir(Addon.getLocalizedString(30313),baseurl+'CinemaFantasy/%s',19,icona)
-
addDir(Addon.getLocalizedString(30314),baseurl+'CinemaFilmNoir/%s',20,icona)
-
addDir(Addon.getLocalizedString(30315),baseurl+'CinemaGameShow/%s',21,icona)
-
addDir(Addon.getLocalizedString(30316),baseurl+'CinemaHistory/%s',22,icona)
-
addDir(Addon.getLocalizedString(30317),baseurl+'CinemaHorror/%s',23,icona)
-
addDir(Addon.getLocalizedString(30318),baseurl+'CinemaMusic/%s',24,icona)
-
addDir(Addon.getLocalizedString(30319),baseurl+'CinemaMusical/%s',25,icona)
-
addDir(Addon.getLocalizedString(30320),baseurl+'CinemaMystery/%s',26,icona)
-
addDir(Addon.getLocalizedString(30321),baseurl+'CinemaNews/%s',27,icona)
-
addDir(Addon.getLocalizedString(30322),baseurl+'CinemaRealityTV/%s',28,icona)
-

Re: [Xbmc-addons] [Git Pull] script.trakt

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 7:37 PM, Justin Nemeth jus...@trakt.tv wrote:

 Just realized the original pull request email formatting was all messed
 up. Fixed below.

 *addon - script.trakt
 *version - 2.3.0
 *url - git://github.com/rectifyer/script.trakt.git
 *revision - 07131b41e5249b8e1e3ab1da627d187adc3e6a58
 *branch - master
 *xbmc version - frodo


Sorry but I can't push this.
* There is a *thumbs.db* included in your changes and there are
windows-style line endings in *
script.trakt/resources/language/Polish/strings.xml*
*
*
Kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Plugins branch, frodo, updated. c86258fa9ddea6a9fab7ea89e0186499433d5cf3

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  c86258fa9ddea6a9fab7ea89e0186499433d5cf3 (commit)
  from  7ff2d469530c06aae3fa08e98da9da96561f80ff (commit)

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

commit c86258fa9ddea6a9fab7ea89e0186499433d5cf3
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:38:12 2013 +0200

[plugin.image.moebooru] updated to version 0.8.0

diff --git a/plugin.image.moebooru/addon.xml b/plugin.image.moebooru/addon.xml
index ee8566e..18f1bbd 100644
--- a/plugin.image.moebooru/addon.xml
+++ b/plugin.image.moebooru/addon.xml
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=UTF-8 standalone=yes?
 addon id=plugin.image.moebooru
name=Moebooru
-   version=0.5.0
+   version=0.8.0
provider-name=Markus Koch
   requires
 import addon=xbmc.python version=2.1.0/
diff --git a/plugin.image.moebooru/changelog.txt 
b/plugin.image.moebooru/changelog.txt
index 586bceb..1674714 100644
--- a/plugin.image.moebooru/changelog.txt
+++ b/plugin.image.moebooru/changelog.txt
@@ -1,14 +1,26 @@
 ## Version history ##
+### 0.8 Beta ###
+2013-06-20  Added sorting options for tags
+Various bugfixes
+### 0.7 Beta ###
+2013-06-15  Added related tags for tags
+2013-06-16  Added the search for tags
+Search will be automatically invoked if no images were 
retrieved
+### 0.6 Beta ###
+2013-06-04  Fixed random
+Added installation instructions
+2013-06-14  Added a function to show the tags of the image to the context 
menu
+2013-06-15  Added preview images for related tags
 ### 0.5 Beta ###
-2013-05-29  Fixed an error requiring the user to reenter the search query 
when using the slideshow button.
+2013-05-29  Fixed an error requiring the user to reenter the search query 
when using the slideshow button
 ### 0.4 Beta ###
 2013-05-20  Updated translation system
 Various bugfixes
 Added the German translation
 ### 0.3 Beta ###
+2013-05-19  Various bugfixes and optimizations
 2013-05-20  Added proper icons
 Added a fanart
-2013-05-19  Various bugfixes and optimizations
 ### 0.2 Beta ###
 2013-04-01  Added default search parameters (rating and order)
 2013-04-03  Finished the pools
diff --git a/plugin.image.moebooru/default.py b/plugin.image.moebooru/default.py
index a1655be..057d3ce 100644
--- a/plugin.image.moebooru/default.py
+++ b/plugin.image.moebooru/default.py
@@ -14,7 +14,24 @@ language = __settings__.getLocalizedString
 
 IMAGE_PATH = 
os.path.join(xbmc.translatePath(__settings__.getAddonInfo('path')),'resources','images')
 SHISTORY_PATH = 
os.path.join(xbmc.translatePath(__settings__.getAddonInfo('profile')),'search_history')
-SHISTORY_DATASEP = '%preview_img%'
+SHISTORY_DATASEP = '#preview_img#'
+
+_MODE_LATEST = 1
+_MODE_SEARCH = 2
+_MODE_RANDOM = 3
+_MODE_POOLS = 4
+_MODE_POOL = 5
+_MODE_HISTORY = 6
+_MODE_ADVSEARCH = 7
+_MODE_TAGS = 8
+
+_MODE_IMAGE = 100
+
+_GETREL = #gEtReL# # Needs to be 8 characters and must not be a valid tag
+_GETUSR = #gEtUsR#
+
+_REF_HISTORY = 1
+_REF_TAGLIST = 2
 
 # Make profile dir on first startup
 if not 
os.path.exists(xbmc.translatePath(__settings__.getAddonInfo('profile'))):
@@ -25,6 +42,7 @@ class moebooruApi:
 def __init__(self):
 self.pRating = [, safe, questionable, explicit, 
questionableplus, questionableless]
 self.pOrder = [, score, fav, wide, nonwide]
+self.pTagOrder = [, date, count, name]
 
 def getAdvSearch(self, search):
 advSettings = 
@@ -36,9 +54,9 @@ class moebooruApi:
 advSettings +=  rating: + 
self.pRating[int(__settings__.getSetting('rating'))]
 return advSettings
 
-def getImages(self, search, page=1):
+def getImages(self, search, page=1, epp=__settings__.getSetting('epp')):
 result = []
-raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.json + ?tags= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)) + limit= + str(__settings__.getSetting('epp')) + 
page= + str(page))
+raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.json + ?tags= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)) + limit= + str(epp) + page= + str(page))
 json = simplejson.loads(raw_result.read())
 return json
 
@@ -55,39 +73,59 @@ class moebooruApi:
 return result
 
 def getImageCount(self, search=): # Since the JSON answer doesn't 
include the total post count we need to parse XML.
-raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.xml + ?limit=1query= + urllib.quote_plus(str(search) + 
self.getAdvSearch(search)))
+raw_result = urllib.urlopen(__settings__.getSetting('server') + 
/post.xml + ?limit=1tags= + 

Re: [Xbmc-addons] [ZIP Pull] plugin.image.moebooru

2013-07-01 Thread Kibje
 *addon - plugin.image.moebooru
 *version - 0.8.0
 *url -

 https://bitbucket.org/C_Classic/xbmc.plugin.image.moebooru/downloads/plugin.image.moebooru-0.8.0.zip
 *xbmc version - Frodo


Updated, cheers

kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] script.module.addon.common

2013-07-01 Thread Kibje
On Sat, Jun 29, 2013 at 4:58 PM, Mike M mjm...@hotmail.com wrote:

 This is a rename of script.module.t0mm0.common with a couple small changes
 that would have otherwise broken existing addons

 Purpose is mainly to rename the module with a more generic name, and start
 adding new features without affecting other addons using the old
 t0mm0.common

 Let me know if this is ok, we would like t0mm0.common to remain for a
 small period of time

  * addon - script.module.addon.common
 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 9f9a167c666259bfc9b19f77cbb7cfdd1c2611ce
 * branch - master
 * xbmc version - frodo


 Is it still possible to add to the Eden repo?

 * addon - script.module.addon.common
 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - aa76897a8678a6befac9394bdab707048b39a1e1
 * branch - eden
 * xbmc version - eden

 Hi,

I have no problem with a different name for this addon because of changes
to the core functionality and to prevent breaking of addons.
I presume you will contact the addons using your addon and direct them to
start the new version whenever possible.

However, I can't push this script as it is now, because it is missing a
(required) language tag.
If you could correct this and resend a request I'll process it.

Sincerely,

Kibje
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Scripts branch, frodo, updated. 26125b5b0b09d8f04417f0472e576a144ba2cc07

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  26125b5b0b09d8f04417f0472e576a144ba2cc07 (commit)
  from  ce70dbb7e389e7ff6a349b129176c7548b3989ea (commit)

- Log -
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=26125b5b0b09d8f04417f0472e576a144ba2cc07

commit 26125b5b0b09d8f04417f0472e576a144ba2cc07
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:44:56 2013 +0200

[service.script.isyevents] updated to version 0.2.1

diff --git a/service.script.isyevents/ISYevents.py 
b/service.script.isyevents/ISYevents.py
index e4a4b5a..3b83ac3 100644
--- a/service.script.isyevents/ISYevents.py
+++ b/service.script.isyevents/ISYevents.py
@@ -29,7 +29,7 @@
 
 # CONSTANTS
 __author__ = 'Humble Robot'
-__version__ = '0.2.0'
+__version__ = '0.2.1'
 __url__ = 'https://code.google.com/p/isy-events/'
 __date__ = '4/2013'
 
@@ -38,6 +38,7 @@ __date__ = '4/2013'
 import sys
 # xbmc
 import xbmcaddon
+import xbmcgui
 
 # fetch addon information
 isy_events = xbmcaddon.Addon('service.script.isyevents')
@@ -61,7 +62,7 @@ password = isy_browse.getSetting('password')
 host = isy_browse.getSetting('host')
 port = int(isy_browse.getSetting('port'))
 usehttps = isy_browse.getSetting('usehttps') == 'true'
- 
+
 # open isy connection
 isy = pyisy.open(username, password, host, port, usehttps)
 # verify isy opened correctly
@@ -70,32 +71,44 @@ if isy.__dummy__:
 message = log.translator(35002)
 xbmc.executebuiltin('Notification(' + header + ',' + message + ', 15000)')
 
+# check last version run
+last_ver = isy_events.getSetting('last_run_ver')
+if last_ver != __version__:
+header = log.translator(36000)
+message = [log.translator(36001), log.translator(36002), 
log.translator(36003)]
+xbmcgui.Dialog().ok(header, message[0], message[1], message[2])
+isy_events.setSetting('last_run_ver', __version__)
+
 # create xbmc event handler
 xEvents = xb_events.xbmcEvents()
 # add handlers
 node_events = {
-'onStart': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_xbmc_start'), 
isy_events.getSetting('devact_xbmc_start')),
-'onQuit': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_xbmc_quit'), 
isy_events.getSetting('devact_xbmc_quit')),
-'onPlayMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_start'), 
isy_events.getSetting('devact_video_start')),
-'onStopMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_end'), 
isy_events.getSetting('devact_video_end')),
-'onPauseMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_pause'), 
isy_events.getSetting('devact_video_pause')),
-'onResumeMovie': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_video_resume'), 
isy_events.getSetting('devact_video_resume')),
-'onPlayMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_start'), 
isy_events.getSetting('devact_audio_start')),
-'onStopMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_end'), 
isy_events.getSetting('devact_audio_end')),
-'onPauseMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_pause'), 
isy_events.getSetting('devact_audio_pause')),
-'onResumeMusic': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('dev_audio_resume'), 
isy_events.getSetting('devact_audio_resume'))}
+'onStart': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_start'),
+'onQuit': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_quit'),
+'onScreenSaverOn': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_sson'),
+'onScreenSaverOff': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_xbmc_ssoff'),
+'onPlayMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_start'),
+'onStopMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_end'),
+'onPauseMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_pause'),
+'onResumeMovie': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_video_resume'),
+'onPlayMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_start'),
+'onStopMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_end'),
+'onPauseMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_pause'),
+'onResumeMusic': event_actions.ParseDeviceSetting(isy, isy_events, 
'dev_audio_resume')}
 xEvents.AddHandlers(node_events)
 program_events ={
-'onStart': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('prog_xbmc_start'), 
isy_events.getSetting('progact_xbmc_start')),
-'onQuit': event_actions.ParseActionSettings(isy, 
isy_events.getSetting('prog_xbmc_quit'), 
isy_events.getSetting('progact_xbmc_quit')),
-'onPlayMovie': event_actions.ParseActionSettings(isy, 

Re: [Xbmc-addons] [SVN Pull] service.script.isyevents

2013-07-01 Thread Kibje
On Thu, Jun 27, 2013 at 2:14 AM, Ryan Kraus rmkr...@gmail.com wrote:

 *addon -   service.script.isyevents
 *version - 0.2.1
 *url -
 https://isy-events.googlecode.com/svn/trunk/service.script.isyevents
 *revision - 47
 *branch - master
 *xbmc version - frodo


Updated it, cheers

Kibje

ps. your code looked a lot better than the pull request ;)
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Plugins branch, frodo, updated. d6e3628df8f0f97d5ac85738decde96c385f413d

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  d6e3628df8f0f97d5ac85738decde96c385f413d (commit)
  from  c86258fa9ddea6a9fab7ea89e0186499433d5cf3 (commit)

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

commit d6e3628df8f0f97d5ac85738decde96c385f413d
Author: kibje k...@xbmc.org
Date:   Mon Jul 1 12:54:54 2013 +0200

[plugin.video.orftvthek] updated to version 0.1.3

diff --git a/plugin.video.orftvthek/addon.xml b/plugin.video.orftvthek/addon.xml
index c7b3602..17707a3 100755
--- a/plugin.video.orftvthek/addon.xml
+++ b/plugin.video.orftvthek/addon.xml
@@ -1,8 +1,9 @@
 ?xml version=1.0 encoding=UTF-8?
-addon id=plugin.video.orftvthek name=ORF TVthek version=0.1.2 
provider-name=sofaking
+addon id=plugin.video.orftvthek name=ORF TVthek version=0.1.3 
provider-name=sofaking
 requires
 import addon=xbmc.python version=2.1.0/
 import addon=script.module.beautifulsoup/
+   import addon=script.common.plugin.cache version=0.9.1/
 /requires
 extension point=xbmc.python.pluginsource library=default.py
 providesvideo/provides
diff --git a/plugin.video.orftvthek/changelog.txt 
b/plugin.video.orftvthek/changelog.txt
index db5cda7..bab7b63 100755
--- a/plugin.video.orftvthek/changelog.txt
+++ b/plugin.video.orftvthek/changelog.txt
@@ -1,3 +1,8 @@
+0.1.3
+- added Search function
+- fixed the low resolution preview image problem
+- added History for Search function
+
 0.1.2
 - fixed bad view mode on aeon nox
 - added force view option
diff --git a/plugin.video.orftvthek/default.py 
b/plugin.video.orftvthek/default.py
index 461701e..2ef3622 100755
--- a/plugin.video.orftvthek/default.py
+++ b/plugin.video.orftvthek/default.py
@@ -8,11 +8,16 @@ import urlparse
 import os.path
 from xml.dom import Node;
 from xml.dom import minidom;
+try:
+   import StorageServer
+except:
+   import storageserverdummy as StorageServer
+cache = StorageServer.StorageServer(plugin.video.orftvthek, 99)
 
-version = 0.1.2
+version = 0.1.3
 plugin = ORF-TVthek- + version
 author = sofaking
-
+ 
 
 
 socket.setdefaulttimeout(30)
@@ -71,6 +76,15 @@ def 
createListItem(name,banner,summary,runtime,backdrop,videourl,playable,folder
backdrop = defaultbackdrop
 if banner == '':
banner = defaultbanner
+if /image1/ in banner:
+   if .jpeg in banner:
+  banner = banner.replace(/image1/,/image/)
+  newbanner = banner.split(/image/)
+  filename = newbanner[1]
+  
+  filename = filename.split(.jpeg)
+  number = int(filename[0])-2
+  banner = newbanner[0]+/image/+str(number)+.jpeg
 liz=xbmcgui.ListItem(cleanText(name), iconImage=banner, 
thumbnailImage=banner)
 liz.setInfo( type=Video, infoLabels={ Title: cleanText(name) } )
 liz.setInfo( type=Video, infoLabels={ Plot: cleanText(summary) } )
@@ -222,7 +236,11 @@ def getLinks(url,quality):
 flashVars = flashVarReg.findall(html)
 for flashVar in flashVars:
 xml = xmlVarRef.search(flashVar).group()
-image = %s/%s % (base_url,imgVarRef.search(html).group())
+try:
+   image = %s/%s % (base_url,imgVarRef.search(html).group())
+except:
+image = 
+pass
 flashDom = minidom.parseString(urllib.unquote(xml))
 asxurl = 
 asxUrls = flashDom.getElementsByTagName(AsxUrl)
@@ -275,6 +293,7 @@ def getMainMenu():
 addDirectory(Neu,defaultbanner,defaultbackdrop,,getNeu)
 addDirectory(Meist 
gesehen,defaultbanner,defaultbackdrop,,getMostViewed)
 addDirectory(Sendung 
verpasst?,defaultbanner,defaultbackdrop,,getArchiv)
+addDirectory(Suchen,defaultbanner,defaultbackdrop,,searchPhrase)
 xbmcplugin.setContent(pluginhandle,'episodes')
 xbmcplugin.endOfDirectory(pluginhandle)
 if forceView:
@@ -710,7 +729,104 @@ def getCategories():
 xbmcplugin.endOfDirectory(pluginhandle)
 if forceView:
 xbmc.executebuiltin(defaultViewMode)
+   
+
 
+def search():
+addDirectory(Suchen ...,defaultbanner,defaultbackdrop,,searchNew)
+cache.table_name = searchhistory
+some_dict = cache.get(searches).split(|)
+for str in reversed(some_dict):
+addDirectory(str,defaultbanner,defaultbackdrop,str.replace( 
,+),searchNew)
+xbmcplugin.setContent(pluginhandle,'episodes')
+xbmcplugin.endOfDirectory(pluginhandle)
+if forceView:
+   xbmc.executebuiltin(defaultViewMode)
+xbmcplugin.setPluginFanart(int(sys.argv[1]), defaultbackdrop, 
color2='0x3300')
+   
+def searchTV():
+keyboard = xbmc.Keyboard('')
+keyboard.doModal()
+if (keyboard.isConfirmed()):
+  cache.table_name = searchhistory
+  keyboard_in = keyboard.getText()
+  some_dict = cache.get(searches) + 

Re: [Xbmc-addons] [GIT Pull] ORF TVthek

2013-07-01 Thread Kibje

  *addon -   plugin.video.orftvthek
  *version - 0.1.3
  *url - https://github.com/s0faking/plugin.video.orftvthek.git 
 http://webmail.lowfidelity.at/?_task=mail_action=preview_uid=834_mbox=INBOX.Sent_framed=1
  *revision - c8aa315f69
  *branch - master
  *xbmc version - frodo

 Updated, cheers

Kibje

ps. next time please insert a correct URL - this one redirects to a webmail
login which b0rked up the push script.
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [GIT Pull] ORF TVthek

2013-07-01 Thread Daniel Weidacher

sorry mate. wont be using copy/paste from webmail next time ;).

cheers

Am 01.07.2013 12:57, schrieb Kibje:


  *addon -   plugin.video.orftvthek
  *version - 0.1.3
  *url -https://github.com/s0faking/plugin.video.orftvthek.git  
http://webmail.lowfidelity.at/?_task=mail_action=preview_uid=834_mbox=INBOX.Sent_framed=1
  *revision - c8aa315f69
  *branch - master
  *xbmc version - frodo

Updated, cheers

Kibje

ps. next time please insert a correct URL - this one redirects to a 
webmail login which b0rked up the push script.



--

 -=[]=-

  .lowfidelity OG
  Daniel Weidacher

[Senior Bootstrapper]

 www.lowfidelity.at
 d...@lowfidelity.at

  +43 1 9417809
 -=[]=-

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] Scripts branch, frodo, updated. 336e55f928da8779702dfb50c272c26604874d10

2013-07-01 Thread Kibje
The branch, frodo has been updated
   via  336e55f928da8779702dfb50c272c26604874d10 (commit)
  from  26125b5b0b09d8f04417f0472e576a144ba2cc07 (commit)

- Log -
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=336e55f928da8779702dfb50c272c26604874d10


---

Summary of changes:
 .../LICENSE.txt|0
 .../addon.xml  |   16 ++--
 script.module.addon.common/changelog.txt   |4 ++
 .../lib/addon}/__init__.py |0
 .../lib/addon}/common/__init__.py  |0
 .../lib/addon}/common/addon.py |   40 +++
 .../lib/addon}/common/net.py   |4 +-
 7 files changed, 49 insertions(+), 15 deletions(-)
 copy {script.games.rom.collection.browser = 
script.module.addon.common}/LICENSE.txt (100%)
 copy {script.module.t0mm0.common = script.module.addon.common}/addon.xml (54%)
 create mode 100644 script.module.addon.common/changelog.txt
 copy {script.ace.extrapack/resources = 
script.module.addon.common/lib/addon}/__init__.py (100%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/__init__.py (100%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/addon.py (94%)
 copy {script.module.t0mm0.common/lib/t0mm0 = 
script.module.addon.common/lib/addon}/common/net.py (99%)


hooks/post-receive
-- 
Scripts

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [SVN Pull] service.script.isyevents

2013-07-01 Thread Ryan Kraus
Haha. Thanks. I have a running theory that I can only do one thing well at
a time.

Ryan Kraus

On Monday, July 1, 2013, Kibje wrote:

 On Thu, Jun 27, 2013 at 2:14 AM, Ryan Kraus 
 rmkr...@gmail.comjavascript:_e({}, 'cvml', 'rmkr...@gmail.com');
  wrote:

 *addon -   service.script.isyevents
 *version - 0.2.1
 *url -
 https://isy-events.googlecode.com/svn/trunk/service.script.isyevents
 *revision - 47
 *branch - master
 *xbmc version - frodo


 Updated it, cheers

 Kibje

 ps. your code looked a lot better than the pull request ;)



-- 

Ryan Kraus
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] script.trakt

2013-07-01 Thread Justin Nemeth
Fixed in commit
073c364e842762c4fc8262d98746ee2e1aa30b85

Thanks!


On Mon, Jul 1, 2013 at 3:37 AM, Kibje k...@xbmc.org wrote:

 On Thu, Jun 27, 2013 at 7:37 PM, Justin Nemeth jus...@trakt.tv wrote:

 Just realized the original pull request email formatting was all messed
 up. Fixed below.

 *addon - script.trakt
 *version - 2.3.0
 *url - git://github.com/rectifyer/script.trakt.git
 *revision - 07131b41e5249b8e1e3ab1da627d187adc3e6a58
 *branch - master
 *xbmc version - frodo


 Sorry but I can't push this.
 * There is a *thumbs.db* included in your changes and there are
 windows-style line endings in *
 script.trakt/resources/language/Polish/strings.xml*
 *
 *
 Kibje

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] script.module.addon.common

2013-07-01 Thread Mike M
It's been one of those days :)

Updated Eden branch as well... thanks!!

* addon - script.module.addon.common
* version - 2.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git
* revision - 47fc858e7c71bc54230f72fb74a22f8142912296
* branch - master
* xbmc version - frodo
* addon - script.module.addon.common
* version - 1.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git
* revision - 0d87bd38862a777f9d0d7ca2e2c6e7f4ec2d0d66
* branch - eden
* xbmc version - eden

Date: Mon, 1 Jul 2013 16:51:13 +0200
Subject: Re: [Xbmc-addons] [Git Pull] script.module.addon.common
From: k...@xbmc.org
To: mjm...@hotmail.com

Please add them to the Eden branch as well, that branch is still missing the 
language tag.
I have already pushed the Frodo branch, but if you could fix the eden branch, 
then send a new request to the mailing list I can properly handle this - 
because right now I already pushed a version that was never officially 
requested. :)

Thanks,
Kibje

On Mon, Jul 1, 2013 at 4:28 PM, Mike M mjm...@hotmail.com wrote:




Hi 

Yes, I will start notifying devs to swap over to this module

Sorry I keep missing adding those tags, just added them in on the master branch 
(frodo)


thanks!

* addon - script.module.addon.common

* version - 2.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git
* revision - 47fc858e7c71bc54230f72fb74a22f8142912296

* branch - master
* xbmc version - frodo
* addon - script.module.addon.common
* version - 1.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git

* revision - aa76897a8678a6befac9394bdab707048b39a1e1
* branch - eden
* xbmc version - eden

Date: Mon, 1 Jul 2013 12:44:19 +0200
Subject: Re: [Xbmc-addons] [Git Pull] script.module.addon.common

From: k...@xbmc.org
To: mjm...@hotmail.com
CC: xbmc-addons@lists.sourceforge.net


On Sat, Jun 29, 2013 at 4:58 PM, Mike M mjm...@hotmail.com wrote:





This is a rename of script.module.t0mm0.common with a couple small changes that 
would have otherwise broken existing addons

Purpose is mainly to rename the module with a more generic name, and start 
adding new features without affecting other addons using the old t0mm0.common



Let me know if this is ok, we would like t0mm0.common to remain for a small 
period of time








* addon - script.module.addon.common
* version - 2.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git


* revision - 9f9a167c666259bfc9b19f77cbb7cfdd1c2611ce
* branch - master
* xbmc version - frodo


Is it still possible to add to the Eden repo?

* addon - script.module.addon.common


* version - 1.0.0
* url - git://github.com/Eldorados/script.module.addon.common.git
* revision - aa76897a8678a6befac9394bdab707048b39a1e1


* branch - eden
* xbmc version - edenHi,
I have no problem with a different name for this addon because of changes to 
the core functionality and to prevent breaking of addons.


I presume you will contact the addons using your addon and direct them to start 
the new version whenever possible.
However, I can't push this script as it is now, because it is missing a 
(required) language tag.

If you could correct this and resend a request I'll process it.
Sincerely,
Kibje 

  --
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] [Git Pull] plugin.video.greenpeace v1.0.3 (Eden) and v1.1.3 (Frodo) - New

2013-07-01 Thread José Antonio Montes
Hi,

This is the first pull request for Greenpeace videos video add-on:

* addon - plugin.video.greenpeace
* version - 1.0.3
* url - git://github.com/jamontes/plugin.video.greenpeace.git
* revision - f4fd6bcbb7dbf5b08e55f476d5c830120db6b627
* branch - eden
* xbmc version - eden

* addon - plugin.video.greenpeace
* version - 1.1.3
* url - git://github.com/jamontes/plugin.video.greenpeace.git
* revision - e9e70e5cd8d1d679ba3fb0d381f724283c4c99ca
* branch - frodo
* xbmc version - frodo


v1.0.3 (Eden)
- Support more than 40 sites. Almost all the sites with video content are 
supported.
- Refactoring and code cleaning.
- First official Eden release.

v1.1.3 (Frodo)
- Support more than 40 sites. Almost all the sites with video content are 
supported.
- Refactoring and code cleaning.
- First official Frodo release.


Thanks a lot and best regards,

 jamontes.

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [Git Pull] script.module.addon.common

2013-07-01 Thread Martijn Kaijser
No new additions to Eden repo allowed, only updates.
Sorry.

Martijn
On 1 Jul 2013 20:32, Mike M mjm...@hotmail.com wrote:

 It's been one of those days :)

 Updated Eden branch as well... thanks!!

 * addon - script.module.addon.common
 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 47fc858e7c71bc54230f72fb74a22f8142912296
 * branch - master
 * xbmc version - frodo


 * addon - script.module.addon.common
 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 0d87bd38862a777f9d0d7ca2e2c6e7f4ec2d0d66
 * branch - eden
 * xbmc version - eden



 --
 Date: Mon, 1 Jul 2013 16:51:13 +0200
 Subject: Re: [Xbmc-addons] [Git Pull] script.module.addon.common
 From: k...@xbmc.org
 To: mjm...@hotmail.com

 Please add them to the Eden branch as well, that branch is still missing
 the language tag.

 I have already pushed the Frodo branch, but if you could fix the eden
 branch, then send a new request to the mailing list I can properly handle
 this - because right now I already pushed a version that was never
 officially requested. :)

 Thanks,

 Kibje


 On Mon, Jul 1, 2013 at 4:28 PM, Mike M mjm...@hotmail.com wrote:

 Hi

 Yes, I will start notifying devs to swap over to this module

 Sorry I keep missing adding those tags, just added them in on the master
 branch (frodo)


 thanks!

 * addon - script.module.addon.common

 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - 47fc858e7c71bc54230f72fb74a22f8142912296

 * branch - master
 * xbmc version - frodo


 * addon - script.module.addon.common
 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git

 * revision - aa76897a8678a6befac9394bdab707048b39a1e1
 * branch - eden
 * xbmc version - eden



 --
 Date: Mon, 1 Jul 2013 12:44:19 +0200
 Subject: Re: [Xbmc-addons] [Git Pull] script.module.addon.common
 From: k...@xbmc.org
 To: mjm...@hotmail.com
 CC: xbmc-addons@lists.sourceforge.net

 On Sat, Jun 29, 2013 at 4:58 PM, Mike M mjm...@hotmail.com wrote:

 This is a rename of script.module.t0mm0.common with a couple small changes
 that would have otherwise broken existing addons

 Purpose is mainly to rename the module with a more generic name, and start
 adding new features without affecting other addons using the old
 t0mm0.common

 Let me know if this is ok, we would like t0mm0.common to remain for a
 small period of time

  * addon - script.module.addon.common
 * version - 2.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git


 * revision - 9f9a167c666259bfc9b19f77cbb7cfdd1c2611ce
 * branch - master
 * xbmc version - frodo


 Is it still possible to add to the Eden repo?

 * addon - script.module.addon.common


 * version - 1.0.0
 * url - git://github.com/Eldorados/script.module.addon.common.git
 * revision - aa76897a8678a6befac9394bdab707048b39a1e1


 * branch - eden
 * xbmc version - eden

 Hi,

 I have no problem with a different name for this addon because of changes
 to the core functionality and to prevent breaking of addons.
 I presume you will contact the addons using your addon and direct them to
 start the new version whenever possible.

 However, I can't push this script as it is now, because it is missing a
 (required) language tag.
 If you could correct this and resend a request I'll process it.

 Sincerely,

 Kibje




 --
 This SF.net email is sponsored by Windows:

 Build for Windows Store.

 http://p.sf.net/sfu/windows-dev2dev
 ___
 Xbmc-addons mailing list
 Xbmc-addons@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/xbmc-addons


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


[Xbmc-addons] [SVN Pull] skin.back-row

2013-07-01 Thread Sharpe
addon - skin.back-row
*version - 4.1.0
*url - https://svn.code.sf.net/p/xboxmediacenter/code/Back-Row/Frodo/
*revision - 3717
*xbmc version - frodo

Version 4.1.0
- Fixed an issue with text view dialog that was causing some video
addons to not load
- Updated language files from Transifex
- Changed the default file image
- Fixed a visibility bug in video library concerning .. label
- Updated language files from Transifex

Version 4.0.9
- Fixed an issue with the custom exit icon in the home controls

Hi can I request a skin pull please


Thanks

Steve
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [SVN Pull] skin.back-row

2013-07-01 Thread ronie

On 07/01/2013 09:13 PM, Sharpe wrote:

addon - skin.back-row
*version - 4.1.0
*url -|https://svn.code.sf.net/p/xboxmediacenter/code/Back-Row/Frodo/|
*revision - 3717
*xbmc version - frodo

Version 4.1.0
- Fixed an issue with text view dialog that was causing some video addons to 
not load
- Updated language files from Transifex
- Changed the default file image
- Fixed a visibility bug in video library concerning .. label

- Updated language files from Transifex

Version 4.0.9
- Fixed an issue with the custom exit icon in the home controls

Hi can I request a skin pull please
Thanks


Steve


updated, thx!

cheers,
ronie
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons


Re: [Xbmc-addons] [git pull] script.screensaver.bigpictures (frodo 0.1.1)

2013-07-01 Thread Tristan Fischer
*friendly bump* ;-)


2013/6/23 Tristan Fischer sph...@dersphere.de

 *addon - script.screensaver.bigpictures
 *version - 0.1.1
 *url - git://github.com/dersphere/script.screensaver.bigpictures.git
 *revision - 6532f72e35127b4f6dbb534695cfbc00acfb2de3
 *branch - master
 *xbmc version - frodo

 Changelog:
 0.1.1 (23.06.2013)
 - added preloading of the next image. This improves the sync between image
 and text
 - fixed screensaver exit on abort requested
 - added translations


 regards,
 sphere

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons