The branch, frodo has been updated
       via  2bbf72ee8b150d72f13f6ab63adc650934eab8f4 (commit)
       via  1a5e74bc5a3a402768e648f62b0e5817ce4c46a1 (commit)
      from  f5f392f55710864bc4d99dfaa846f5f2c03a7968 (commit)

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

commit 2bbf72ee8b150d72f13f6ab63adc650934eab8f4
Author: M. Kaijser <[email protected]>
Date:   Tue May 7 10:03:54 2013 +0200

    [script.screensaver.bigpictures] 0.1.0

diff --git a/script.screensaver.bigpictures/addon.xml 
b/script.screensaver.bigpictures/addon.xml
index 4e5b129..969d165 100644
--- a/script.screensaver.bigpictures/addon.xml
+++ b/script.screensaver.bigpictures/addon.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="script.screensaver.bigpictures" name="The Big Pictures Screensaver" 
version="0.0.2" provider-name="Tristan Fischer ([email protected])">
+<addon id="script.screensaver.bigpictures" name="The Big Pictures Screensaver" 
version="0.1.0" provider-name="Tristan Fischer ([email protected])">
     <requires>
         <import addon="xbmc.python" version="2.1.0"/>
-        <import addon="script.module.bigpictures" version="1.0.1"/>
+        <import addon="script.module.bigpictures" version="1.1.1"/>
     </requires>
     <extension point="xbmc.ui.screensaver" library="screensaver.py" />
     <extension point="xbmc.addon.metadata">
diff --git a/script.screensaver.bigpictures/changelog.txt 
b/script.screensaver.bigpictures/changelog.txt
index 3df6555..2f76f56 100644
--- a/script.screensaver.bigpictures/changelog.txt
+++ b/script.screensaver.bigpictures/changelog.txt
@@ -1,3 +1,6 @@
+0.1.0 (05.05.2013)
+ - added possibility to choose enabled scrapers
+
 0.0.2 (02.04.2013)
  - fixed image duration
 
diff --git 
a/script.screensaver.bigpictures/resources/language/English/strings.xml 
b/script.screensaver.bigpictures/resources/language/English/strings.xml
index ec4fe68..c681497 100644
--- a/script.screensaver.bigpictures/resources/language/English/strings.xml
+++ b/script.screensaver.bigpictures/resources/language/English/strings.xml
@@ -2,4 +2,12 @@
 <strings>
     <!-- Settings -->
     <string id="32110">Picture duration (seconds)</string>
+    <!-- Scrapers -->
+    <string id="32400">The Big Picture - Boston.com</string>
+    <string id="32401">In Focus - The Atlantic</string>
+    <string id="32402">Sacramento Bee - The Frame</string>
+    <string id="32403">Photo Journal - Wall Street Journal</string>
+    <string id="32404">TotallyCoolPix.com</string>
+    <string id="32405">LightBox - From the photo editors of TIME</string>
+    <string id="32406">Lens Blog - The New York Times</string>
 </strings>
diff --git a/script.screensaver.bigpictures/resources/settings.xml 
b/script.screensaver.bigpictures/resources/settings.xml
index 52c352b..da6cc68 100644
--- a/script.screensaver.bigpictures/resources/settings.xml
+++ b/script.screensaver.bigpictures/resources/settings.xml
@@ -1,4 +1,11 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <settings>
-        <setting id="picture_duration" type="labelenum" label="32110" 
default="5" values="5|15|30|60"/>
+    <setting id="picture_duration" type="labelenum" label="32110" default="5" 
values="5|15|30|60"/>
+    <setting id="enable_TheBigPictures" type="bool" label="32400" 
default="true"/>
+    <setting id="enable_AtlanticInFocus" type="bool" label="32401" 
default="true"/>
+    <setting id="enable_SacBeeFrame" type="bool" label="32402" default="true"/>
+    <setting id="enable_WallStreetJournal" type="bool" label="32403" 
default="true"/>
+    <setting id="enable_TotallyCoolPix" type="bool" label="32404" 
default="true"/>
+    <setting id="enable_TimeLightbox" type="bool" label="32405" 
default="true"/>
+    <setting id="enable_NewYorkTimesLens" type="bool" label="32406" 
default="true"/>
 </settings>
\ No newline at end of file
diff --git a/script.screensaver.bigpictures/screensaver.py 
b/script.screensaver.bigpictures/screensaver.py
index 26baea5..b75e94f 100644
--- a/script.screensaver.bigpictures/screensaver.py
+++ b/script.screensaver.bigpictures/screensaver.py
@@ -23,7 +23,7 @@ import xbmcaddon
 import xbmcgui
 import xbmc
 
-from thebigpictures import ScraperManager
+from thebigpictures import ScraperManager, ALL_SCRAPERS
 
 addon = xbmcaddon.Addon()
 addon_name = addon.getAddonInfo('name')
@@ -55,10 +55,17 @@ class Screensaver(xbmcgui.WindowXMLDialog):
             int(addon.getSetting('picture_duration')) * 1000
         )
 
+        self.get_scrapers()
         self.slideshow()
 
+    def get_scrapers(self):
+        enabled_scrapers = []
+        for scraper in ALL_SCRAPERS:
+            if addon.getSetting('enable_%s' % scraper) == 'true':
+                enabled_scrapers.append(scraper)
+        self.scraper_manager = ScraperManager(enabled_scrapers)
+
     def slideshow(self):
-        self.scraper_manager = ScraperManager()
         self.scraper_manager.shuffle()
         while not self.abort_requested:
             self.scraper_manager.next()

http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=1a5e74bc5a3a402768e648f62b0e5817ce4c46a1

commit 1a5e74bc5a3a402768e648f62b0e5817ce4c46a1
Author: M. Kaijser <[email protected]>
Date:   Tue May 7 10:02:44 2013 +0200

    [script.image.bigpictures] 4.1.0

diff --git a/script.image.bigpictures/addon.xml 
b/script.image.bigpictures/addon.xml
index ddbac01..ba26b90 100644
--- a/script.image.bigpictures/addon.xml
+++ b/script.image.bigpictures/addon.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="script.image.bigpictures" name="The Big Picture" version="4.0.0" 
provider-name="Tristan Fischer ([email protected])">
+<addon id="script.image.bigpictures" name="The Big Picture" version="4.1.0" 
provider-name="Tristan Fischer ([email protected])">
     <requires>
         <import addon="xbmc.python" version="2.1.0"/>
-        <import addon="script.module.bigpictures" version="1.0.1"/>
+        <import addon="script.module.bigpictures" version="1.1.1"/>
     </requires>
     <extension point="xbmc.python.script" library="script.py">
         <provides>image</provides>
@@ -14,27 +14,47 @@
         <!-- translation commit: 57be6eca35e70e101e45aa09a73de9b01194321e -->
         <platform>all</platform>
         <language />
+        <website></website>
+        <source>https://github.com/dersphere/script.image.bigpictures</source>
+        <forum>http://forum.xbmc.org/showthread.php?tid=97605</forum>
+        <email>[email protected]</email>
+        <license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
+        <summary lang="be">Photojournalism</summary>
         <summary lang="cs">Fotoreportáže</summary>
+        <summary lang="da">Fotojournalistik</summary>
         <summary lang="de">Fotojournalismus</summary>
         <summary lang="el">Φωτορεπορτάζ</summary>
         <summary lang="en">Photojournalism</summary>
+        <summary lang="es">Fotoperiodismo</summary>
+        <summary lang="fa_IR">عکس های خبری</summary>
         <summary lang="fr">Photojournalisme</summary>
+        <summary lang="gl">Fotoxornalismo</summary>
+        <summary lang="hu">Sajtófotók</summary>
+        <summary lang="it">Fotagiornalismo</summary>
         <summary lang="ko">포토저널리즘</summary>
         <summary lang="lt">Fotoreportažai</summary>
         <summary lang="nl">Fotojournalisme</summary>
         <summary lang="pl">Reportaże</summary>
+        <summary lang="pt">Fotojornalismo</summary>
         <summary lang="pt_BR">Fotojornalismo</summary>
+        <summary lang="sk">Foto-žurnalistika</summary>
         <summary lang="sv">Fotojournalism</summary>
+        <summary lang="zh">新闻摄影</summary>
         <description lang="cs">Tento doplněk poskytuje přístup k 
nádherným albům a fotografiím z vybraných webových stránek s 
fotoreportážemi.[CR]- Boston.com: The Big Picture[CR]- The Atlantic: In 
Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: The Photo 
Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- 
NewYorkTimes.com: Lens Blog</description>
         <description lang="de">Dieses Addon bietet schöne Alben und Photos 
von Fotojournalismus Webseiten.[CR][CR]- Boston.com: The Big Picture[CR]- The 
Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: The 
Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- 
NewYorkTimes.com: Lens Blog</description>
         <description lang="el">Αυτό το πρόσθετο παρέχει 
όμορφα άλμπουμ και φωτογραφίες από 
διάφορες ιστοσελίδες φωτορεπορτάζ.[CR]- 
Boston.com: The Big Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: 
The Frame[CR]- Wallstreetjournal: The Photo Journal[CR]- 
TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- NewYorkTimes.com: 
Lens Blog</description>
         <description lang="en">This addon provides beautiful albums and photos 
from some nice photojournalism websites.[CR]- Boston.com: The Big Picture[CR]- 
The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: 
The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - 
Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
+        <description lang="es">Este complemento muestra hermosos álbumes y 
fotos de algunas webs de fotoperiodismo.[CR]- Boston.com: The Big Picture[CR]- 
The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: 
The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - 
Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
         <description lang="fr">Cet addon affiche de magnifiques albums et 
photos de plusieurs sites Web de photojournalisme.[CR]- Boston.com: The Big 
Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- 
Wallstreetjournal: The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
+        <description lang="gl">Este complemento prové de fermosos álbums e 
fotos dalgúns dos mellores sitios web de fotoxornalismo.[CR]- Boston.com: The 
Big Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- 
Wallstreetjournal: The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
+        <description lang="it">Questo addon fornisce bei album e foto da 
alcuni siti di fotogiornalismo. [CR]- Boston.com: The Big Picture[CR]- The 
Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: The 
Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- 
NewYorkTimes.com: Lens Blog</description>
         <description lang="ko">이 애드온은 사진저널리즘 
웹사이트의 아름다운 앨범과 사진들을 보여줍니다.[CR]- 
Boston.com: The Big Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: 
The Frame[CR]- Wallstreetjournal: The Photo Journal[CR]- 
TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- NewYorkTimes.com: 
Lens Blog</description>
         <description lang="lt">Šis priedas yra gražių albumų ir nuotraukų 
rinkinys iš fotožurnalistikos svetainių[Cr]- Boston.com: The Big 
Picture[CR]- Atlanto: In Focus[CR]- Sacramento Bee: Frame[CR]- 
Wallstreetjournal: Nuotraukų žurnalo [CR]- TotallyCoolPix.com [CR]- Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
         <description lang="nl">Deze addon toont prachtige albums en fotos van 
enkele knappe photojournalisme websites.[CR]- Boston.com: The Big Picture[CR]- 
The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- Wallstreetjournal: 
The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: LightBox - 
Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
         <description lang="pl">Wtyczka ta daje ci dostęp do pięknych 
albumów oraz zdjęć z paru niezłych witryn fotodziennikarskich. [CR]- 
Boston.com: The Big Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: 
The Frame[CR]- Wallstreetjournal: The Photo Journal[CR]- 
TotallyCoolPix.com[CR]- Time.com: LightBox - zbliżnie[CR]- NewYorkTimes.com: 
Lens Blog</description>
+        <description lang="pt">Este addon apresenta belíssimos álbuns e 
fotografias de alguns bons sites de fotojornalismo.[CR]- Boston.com: The Big 
Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- 
Wallstreetjournal: The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
         <description lang="pt_BR">Este addon oferece belos álbuns e fotos de 
alguns dos principais sites de fotojornalismo ​​[CR] - Boston.com:. The Big 
Picture [CR] - The Atlantic: Em Foco [CR] - Sacramento Bee: The Frame [CR] - 
Wallstreetjournal: A Foto Jornal [CR] - TotallyCoolPix.com [CR] - Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
         <description lang="sv">Detta tillägg ger tillgång till vackra album 
och foton från några trevliga fotojournalism webbplatser.[CR]- Boston.com: 
The Big Picture[CR]- The Atlantic: In Focus[CR]- Sacramento Bee: The Frame[CR]- 
Wallstreetjournal: The Photo Journal[CR]- TotallyCoolPix.com[CR]- Time.com: 
LightBox - Closeup[CR]- NewYorkTimes.com: Lens Blog</description>
+        <description 
lang="zh">本插件提供优秀新闻摄影网站的漂亮相册和ç…
§ç‰‡ã€‚[CR]- Boston.com: The Big Picture[CR]- The Atlantic: In Focus[CR]- 
Sacramento Bee: The Frame[CR]- Wallstreetjournal: The Photo Journal[CR]- 
TotallyCoolPix.com[CR]- Time.com: LightBox - Closeup[CR]- NewYorkTimes.com: 
Lens Blog</description>
     </extension>
 </addon>
diff --git a/script.image.bigpictures/changelog.txt 
b/script.image.bigpictures/changelog.txt
index eec0810..0daaf29 100644
--- a/script.image.bigpictures/changelog.txt
+++ b/script.image.bigpictures/changelog.txt
@@ -1,27 +1,31 @@
-4.0.0
+4.1.0 (05.05.2013)
+  added possibility to choose enabled scrapers
+  updated Translations
+
+4.0.0 (17.03.2013)
   New Scraper: NewYorkTimes.com - Lens Blog
   New Default Skin (thx Jugger)
   Fixed Slideshow on Frodo (press PLAY to start)
   Code rewrite
   All Scrapers fixed
 
-3.0.5
+3.0.5 (18.11.2012)
   Fixed: Time.com Lightbox photosets
   Updated Translations
 
-3.0.4
+3.0.4 (29.07.2012)
   Fixed: "The Big Picture"-scraper
   Fixed: "Wallstreet Jouarnal"-scraper
 
-3.0.3
+3.0.3 (18.04.2012)
   Fixed TheSacramentoBee
   Fixed Time.com: LightBox 
   Added Czech Translation (thx to Spike)
 
-3.0.2
+3.0.2 (03.03.2012)
   Fix for startup error (default->Default)
 
-3.0.0
+3.0.0 (03.03.2012)
   Complete code rewrite
   Added: Slideshow feature (press play)
   Added: Plugin-mode for slideshow and screensaver mode
@@ -35,7 +39,7 @@
   Added: French translation (thx to stombi)
   Added: Dutch translation (thx to apeeters)
 
-2.0.3
+2.0.3 (27.01.2012)
   Added: New Scraper "TotallyCoolPix.com"
   Added: New Scraper "Time.com: LightBox - Closeup"
   Changed: How using 'keep' as default aspect-ratio (press 0 or set in 
settings to change)
@@ -43,10 +47,10 @@
   Changed: The spinning loading animation logic
   Fixed: ATV2-Remote Keymaps
 
-2.0.2
+2.0.2 (04.12.2011)
   Fixed import error
 
-2.0.1
+2.0.1 (07.11.2011)
   New plugin-way for scrapers
   Fixed: Wallstreetjournal Scraper
   Fixed: Sacramento Bee Scraper
@@ -54,10 +58,10 @@
   Fixed: Back-key in Eden
   Code Improvements
 
-2.0.0
+2.0.0 (03.06.2011)
   Eden release
 
-1.5.0
+1.5.0 (03.06.2011)
   Added: New Scraper: 'The Atlantic: In Focus'
   Removed: Scraper 'Boston.com: The Big Shot' - outdated
   Added: Function and Setting for changing the aspect-ratio of the Pictures
@@ -68,19 +72,19 @@
   Changed: The usage help is now replaced by a settings "help"-section
   Cosmetic: more pep8 conformity
 
-1.4.2
+1.4.2 (23.04.2011)
   Fixed: Error with external Python and os.makedirs(cachedir) with cachedir = 
"special://..."
   Fixed TheSacramentoBee wasn't able to get Photos
   Fixed WallStreetJournal wasn't able to get Photos
 
-1.4.1
+1.4.1 (22.04.2011)
   Fixed: boston.com now needs a referer for the photosets
   Improved: Better class Inheritance
   Cosmetic: pep8 (except line length)
   Improved: The german, english and french usage instructions (and shorten 
them)
   Fixed: The Help now appears only on the first album or photoset
 
-1.4.0
+1.4.0 (24.03.2011)
   Changed: Skin has a new Look - thanks to Jezz_X
   Changed: Skin is now animated
   Changed: Dedicated Usage-Help-Box (hides if any key is pressed)
@@ -90,15 +94,15 @@
   Improved: Respect pep8 styleguide (except line length...)
   Improved: Skin XML-File is now clean
 
-1.3.2
+1.3.2 (07.11.2010)
   Changed: Don't use 'os.getcwd()'
   Improved: author, name, id, version only at one place
   Improved: Make it possible for skins to override the scripts skin (thanks to 
Jeroen)
 
-1.3.1
+1.3.1 (19.10.2010)
   Fixed: Crash/Hang when using Alaska/Rapier-Skin
 
-1.3.0
+1.3.0 (19.10.2010)
   Added: The possibility to get albums/images from more than one website 
(switch source)
   Added: New Scraper 'Wallstreetjournal: The Photo Journal'
   Added: New Scraper 'Boston.com: The Big Shot'
@@ -108,11 +112,11 @@
   Fixed: TBP-Scraper: removed #-sign at the end of the picture
   Improved: Changes to the icon.png (more padding)
 
-1.2.0
+1.2.0 (10.10.2010)
   Ported to be dharma compatible by sphere (with permission of rwparris2)
   Added: German Translation
   Changed: Addon ported from plugin which called script to native script
   Added: New icon.png
 
-1.1.2
+1.1.2 (2010)
   Released as plugin for camelot by rwparris2
\ No newline at end of file
diff --git a/script.image.bigpictures/resources/language/Czech/strings.xml 
b/script.image.bigpictures/resources/language/Czech/strings.xml
index b0de7d3..aab5801 100644
--- a/script.image.bigpictures/resources/language/Czech/strings.xml
+++ b/script.image.bigpictures/resources/language/Czech/strings.xml
@@ -29,7 +29,7 @@
 
     <!-- Script strings -->
     <string id="32300">Zvolte výchozí cestu pro stahování</string>
-    <string id="32301">Získávání dat…</string>
+    <string id="32301">Získávám data…</string>
     <string id="32302">%d. položka z %d</string>
     <string id="32303">Aktuální položka: %s %d%%</string>
     <string id="32304">Stahuje se do: %s</string>
diff --git a/script.image.bigpictures/resources/language/English/strings.xml 
b/script.image.bigpictures/resources/language/English/strings.xml
index 10d9f12..e0e79ea 100644
--- a/script.image.bigpictures/resources/language/English/strings.xml
+++ b/script.image.bigpictures/resources/language/English/strings.xml
@@ -26,6 +26,7 @@
     <!-- Settings categories -->
     <string id="32200">Help</string>
     <string id="32201">Settings</string>
+    <string id="32202">Sources</string>
 
     <!-- Script strings -->
     <string id="32300">Choose default download path</string>
@@ -33,4 +34,12 @@
     <string id="32302">Item %d/%d</string>
     <string id="32303">Current item: %s %d%%</string>
     <string id="32304">Downloading to: %s</string>
+    <!-- Scrapers -->
+    <string id="32400">The Big Picture - Boston.com</string>
+    <string id="32401">In Focus - The Atlantic</string>
+    <string id="32402">Sacramento Bee - The Frame</string>
+    <string id="32403">Photo Journal - Wall Street Journal</string>
+    <string id="32404">TotallyCoolPix.com</string>
+    <string id="32405">LightBox - From the photo editors of TIME</string>
+    <string id="32406">Lens Blog - The New York Times</string>
 </strings>
diff --git a/script.image.bigpictures/resources/settings.xml 
b/script.image.bigpictures/resources/settings.xml
index ffb1db4..f87423e 100644
--- a/script.image.bigpictures/resources/settings.xml
+++ b/script.image.bigpictures/resources/settings.xml
@@ -17,4 +17,13 @@
         <setting id="random_slideshow" type="bool" label="32130" 
default="false"/>
         <setting id="download_path" type="folder" source="files" label="32140" 
 option="writeable" default=""/>
     </category>
+    <category label="32202">
+        <setting id="enable_TheBigPictures" type="bool" label="32400" 
default="true"/>
+        <setting id="enable_AtlanticInFocus" type="bool" label="32401" 
default="true"/>
+        <setting id="enable_SacBeeFrame" type="bool" label="32402" 
default="true"/>
+        <setting id="enable_WallStreetJournal" type="bool" label="32403" 
default="true"/>
+        <setting id="enable_TotallyCoolPix" type="bool" label="32404" 
default="true"/>
+        <setting id="enable_TimeLightbox" type="bool" label="32405" 
default="true"/>
+        <setting id="enable_NewYorkTimesLens" type="bool" label="32406" 
default="true"/>
+    </category>
 </settings>
\ No newline at end of file
diff --git a/script.image.bigpictures/script.py 
b/script.image.bigpictures/script.py
index a36cf04..98d9f2e 100644
--- a/script.image.bigpictures/script.py
+++ b/script.image.bigpictures/script.py
@@ -26,7 +26,7 @@ import xbmc
 import xbmcaddon
 import xbmcgui
 
-from thebigpictures import ScraperManager
+from thebigpictures import ScraperManager, ALL_SCRAPERS
 
 addon = xbmcaddon.Addon()
 addon_path = addon.getAddonInfo('path')
@@ -107,7 +107,14 @@ class GUI(xbmcgui.WindowXML):
 
     def __init__(self, skin_file, addon_path):
         self.log('__init__')
-        self.scraper_manager = ScraperManager()
+        self.getScrapers()
+
+    def getScrapers(self):
+        enabled_scrapers = []
+        for scraper in ALL_SCRAPERS:
+            if addon.getSetting('enable_%s' % scraper) == 'true':
+                enabled_scrapers.append(scraper)
+        self.scraper_manager = ScraperManager(enabled_scrapers)
 
     def onInit(self):
         self.log('onInit')

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

Summary of changes:
 script.image.bigpictures/addon.xml                 |   24 ++++++++++-
 script.image.bigpictures/changelog.txt             |   42 +++++++++++---------
 .../resources/language/Afrikaans/strings.xml       |    8 ++++
 .../resources/language/Albanian/strings.xml        |    8 ++++
 .../resources/language/Amharic/strings.xml         |    8 ++++
 .../resources/language/Arabic/strings.xml          |    8 ++++
 .../resources/language/Basque/strings.xml          |    8 ++++
 .../resources/language/Belarusian/strings.xml      |   36 +++++++++++++++++
 .../resources/language/Bosnian/strings.xml         |    8 ++++
 .../resources/language/Bulgarian/strings.xml       |    8 ++++
 .../resources/language/Catalan/strings.xml         |    8 ++++
 .../language/Chinese (Simple)/strings.xml          |   36 +++++++++++++++++
 .../language/Chinese (Traditional)/strings.xml     |    8 ++++
 .../resources/language/Croatian/strings.xml        |    8 ++++
 .../resources/language/Czech/strings.xml           |    2 +-
 .../resources/language/Danish/strings.xml          |   36 +++++++++++++++++
 .../resources/language/English/strings.xml         |    9 ++++
 .../resources/language/Esperanto/strings.xml       |    8 ++++
 .../resources/language/Estonian/strings.xml        |   10 +++++
 .../resources/language/Finnish/strings.xml         |   10 +++++
 .../resources/language/Galician/strings.xml        |   36 +++++++++++++++++
 .../resources/language/Hebrew/strings.xml          |    8 ++++
 .../language/Hindi (Devanagiri)/strings.xml        |    8 ++++
 .../resources/language/Hungarian/strings.xml       |   36 +++++++++++++++++
 .../resources/language/Icelandic/strings.xml       |   10 +++++
 .../resources/language/Indonesian/strings.xml      |    8 ++++
 .../resources/language/Italian/strings.xml         |   36 +++++++++++++++++
 .../resources/language/Japanese/strings.xml        |    8 ++++
 .../resources/language/Latvian/strings.xml         |    8 ++++
 .../resources/language/Macedonian/strings.xml      |    8 ++++
 .../resources/language/Malay/strings.xml           |    8 ++++
 .../resources/language/Malayalam/strings.xml       |    8 ++++
 .../resources/language/Maltese/strings.xml         |    8 ++++
 .../resources/language/Norwegian/strings.xml       |    8 ++++
 .../resources/language/Persian (Iran)/strings.xml  |   36 +++++++++++++++++
 .../resources/language/Persian/strings.xml         |    8 ++++
 .../resources/language/Portuguese/strings.xml      |   36 +++++++++++++++++
 .../resources/language/Romanian/strings.xml        |    8 ++++
 .../resources/language/Russian/strings.xml         |   10 +++++
 .../language/Serbian (Cyrillic)/strings.xml        |    8 ++++
 .../resources/language/Serbian/strings.xml         |    8 ++++
 .../resources/language/Slovak/strings.xml          |   36 +++++++++++++++++
 .../resources/language/Slovenian/strings.xml       |    8 ++++
 .../language/Spanish (Argentina)/strings.xml       |    8 ++++
 .../language/Spanish (Mexico)/strings.xml          |   10 +++++
 .../resources/language/Spanish/strings.xml         |   36 +++++++++++++++++
 .../resources/language/Thai/strings.xml            |   10 +++++
 .../resources/language/Turkish/strings.xml         |    8 ++++
 .../resources/language/Ukrainian/strings.xml       |    8 ++++
 .../resources/language/Vietnamese/strings.xml      |    8 ++++
 script.image.bigpictures/resources/settings.xml    |    9 ++++
 script.image.bigpictures/script.py                 |   11 ++++-
 script.screensaver.bigpictures/addon.xml           |    4 +-
 script.screensaver.bigpictures/changelog.txt       |    3 +
 .../resources/language/English/strings.xml         |    8 ++++
 .../resources/settings.xml                         |    9 ++++-
 script.screensaver.bigpictures/screensaver.py      |   11 ++++-
 57 files changed, 763 insertions(+), 29 deletions(-)
 create mode 100644 
script.image.bigpictures/resources/language/Afrikaans/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Albanian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Amharic/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Arabic/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Basque/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Belarusian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Bosnian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Bulgarian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Catalan/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Chinese 
(Simple)/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Chinese 
(Traditional)/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Croatian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Danish/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Esperanto/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Estonian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Finnish/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Galician/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Hebrew/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Hindi 
(Devanagiri)/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Hungarian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Icelandic/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Indonesian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Italian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Japanese/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Latvian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Macedonian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Malay/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Malayalam/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Maltese/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Norwegian/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Persian 
(Iran)/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Persian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Portuguese/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Romanian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Russian/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Serbian 
(Cyrillic)/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Serbian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Slovak/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Slovenian/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Spanish 
(Argentina)/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Spanish 
(Mexico)/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Spanish/strings.xml
 create mode 100644 script.image.bigpictures/resources/language/Thai/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Turkish/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Ukrainian/strings.xml
 create mode 100644 
script.image.bigpictures/resources/language/Vietnamese/strings.xml


hooks/post-receive
-- 
Scripts

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to