The branch, dharma has been updated
via fba7e2ece068ff643fe6b18fa7c9cd87efc7e5c6 (commit)
from 208e7845c7eb7b46913f4d7a028fa4b552cd70c1 (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scrapers;a=commit;h=fba7e2ece068ff643fe6b18fa7c9cd87efc7e5c6
commit fba7e2ece068ff643fe6b18fa7c9cd87efc7e5c6
Author: olympia <[email protected]>
Date: Sat Nov 26 22:43:27 2011 +0100
[metadata.rottentomatoes.com] added initial version after site changes
diff --git a/metadata.rottentomatoes.com/addon.xml
b/metadata.rottentomatoes.com/addon.xml
index ced0793..2f6a90c 100644
--- a/metadata.rottentomatoes.com/addon.xml
+++ b/metadata.rottentomatoes.com/addon.xml
@@ -1,26 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="metadata.rottentomatoes.com"
name="Rotten Tomatoes"
- version="1.0.4"
- provider-name="Redtapemedia">
+ version="1.0.0"
+ provider-name="Team XBMC">
<requires>
<import addon="xbmc.metadata" version="1.0"/>
- <import addon="metadata.common.imdb.com" version="1.0"/>
+ <import addon="metadata.common.themoviedb.org" version="1.1.0"/>
+ <import addon="metadata.common.hdtrailers.net" version="1.0.6"/>
+ <import addon="metadata.common.imdb.com" version="2.1.3"/>
+ <import addon="metadata.common.rottentomatoes.com" version="1.0.0"/>
+ <import addon="plugin.video.youtube" version="2.1.0"/>
</requires>
<extension point="xbmc.metadata.scraper.movies"
language="en"
- library="rottentomatoes.xml"/>
+ library="rt.xml"/>
<extension point="xbmc.addon.metadata">
- <summary lang="en">Rotten Tomatoes Movie Scraper</summary>
- <summary lang="hu">Rotten Tomatoes filmadat leolvasó</summary>
- <summary lang="kr">Rotten Tomatoes ìí ì¤í¬ëí¼</summary>
- <summary lang="pl">Scraper filmów Rotten Tomatoes</summary>
- <summary lang="pt">Scraper de filmes Rotten Tomatoes</summary>
- <description lang="en">Download Movie information from
www.rottentomatoes.com</description>
- <description lang="hu">Film információk letöltése a
www.rottentomatoes.com webhelyrÅl</description>
- <description lang="kr">www.rottentomatoes.comìì ìí ì ë³´
ë¤ì´ë¡ë</description>
- <description lang="pl">Pobieraj informacje o filmach z
www.rottentomatoes.com</description>
- <description lang="pt">Descarregar informação de filmes de
www.rottentomatoes.com</description>
- <broken>Doesn't find any movie</broken>
+ <summary lang="en">RT Movie Scraper</summary>
+ <summary lang="de">Film-Scraper für RT</summary>
+ <summary lang="es">Scraper de pelÃculas de RT</summary>
+ <summary lang="hu">RT filmadat leolvasó</summary>
+ <summary lang="nl">RT-filmscraper</summary>
+ <summary lang="pl">Scraper filmowy RT</summary>
+ <summary lang="pt">Scraper de filmes RT</summary>
+ <summary lang="ro">Scraper de filme RT</summary>
+ <summary lang="ru">ÐбÑабоÑÑик ФилÑмов Ð´Ð»Ñ RT</summary>
+ <summary lang="zh">RTçµå½±å®åå¨</summary>
+ <description lang="en">Rotten Tomatoes is a website devoted to reviews,
information, and news of filmsâwidely known as a film review aggregator. Its
name derives from the cliché of audiences throwing tomatoes and other
vegetables at a poor stage performance.</description>
+ <platform>all</platform>
</extension>
</addon>
diff --git a/metadata.rottentomatoes.com/resources/language/English/strings.xml
b/metadata.rottentomatoes.com/resources/language/English/strings.xml
index 8affc1e..171bfb8 100644
--- a/metadata.rottentomatoes.com/resources/language/English/strings.xml
+++ b/metadata.rottentomatoes.com/resources/language/English/strings.xml
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<strings>
- <string id="30000">Location</string>
- <string id="30001">Rating type</string>
- <string id="30002">Retrieve classification reason</string>
- <string id="30003">Retrieve fanart</string>
- <string id="30004">Retrieve thumbs</string>
+ <string id="30005">Fetch Poster from TMDb</string>
+ <string id="30000">Enable Fanart</string>
+ <string id="30001">Prefer Trailer from HD-Trailers.net</string>
+ <string id="30003">Get rating from IMDb</string>
+ <string id="30007">Get Critics Rating</string>
+ <string id="30006">Get Audience Rating</string>
+ <string id="30008">Fetch Plot from IMDb</string>
</strings>
diff --git a/metadata.rottentomatoes.com/resources/settings.xml
b/metadata.rottentomatoes.com/resources/settings.xml
index ca26d3e..d7237c0 100644
--- a/metadata.rottentomatoes.com/resources/settings.xml
+++ b/metadata.rottentomatoes.com/resources/settings.xml
@@ -1,8 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<settings>
- <setting label="30000" type="labelenum" id="locality" values="us|au|uk"
default="au"/>
- <setting label="30001" type="labelenum" id="ratetype" values="Overall|Top
Critics|RT Community" default="Overall"/>
- <setting label="30002" type="bool" id="classreason" default="true"/>
- <setting label="30003" type="bool" id="fanart" default="true"/>
- <setting label="30004" type="bool" id="thumbs" default="true"/>
+ <setting label="30005" type="bool" id="tmdbthumbs" default="false"/>
+ <setting label="30000" type="bool" id="fanart" default="true"/>
+ <setting type="sep"/>
+ <setting label="30007" type="bool" id="criticsscore" default="true"/>
+ <setting label="30006" type="bool" id="audiencescore" default="true"/>
+ <setting type="sep"/>
+ <setting label="30008" type="bool" id="imdbplot" default="false"/>
+ <setting type="sep"/>
+ <setting label="30001" type="labelenum" values="No|480p|720p|1080p"
id="TrailerQ" default="No"/>
</settings>
-----------------------------------------------------------------------
Summary of changes:
metadata.common.rottentomatoes.com/addon.xml | 27 ++++
metadata.common.rottentomatoes.com/rt.xml | 44 +++++++
metadata.rottentomatoes.com/addon.xml | 35 +++---
metadata.rottentomatoes.com/changelog.txt | 3 +
.../resources/language/English/strings.xml | 12 +-
.../resources/language/Hungarian/strings.xml | 8 --
.../resources/language/Korean/strings.xml | 8 --
.../resources/language/Polish/strings.xml | 8 --
.../resources/language/Portuguese/strings.xml | 8 --
metadata.rottentomatoes.com/resources/settings.xml | 14 ++-
metadata.rottentomatoes.com/rottentomatoes.xml | 128 --------------------
metadata.rottentomatoes.com/rt.xml | 98 +++++++++++++++
12 files changed, 208 insertions(+), 185 deletions(-)
create mode 100644 metadata.common.rottentomatoes.com/addon.xml
create mode 100644 metadata.common.rottentomatoes.com/rt.xml
create mode 100644 metadata.rottentomatoes.com/changelog.txt
delete mode 100644
metadata.rottentomatoes.com/resources/language/Hungarian/strings.xml
delete mode 100644
metadata.rottentomatoes.com/resources/language/Korean/strings.xml
delete mode 100644
metadata.rottentomatoes.com/resources/language/Polish/strings.xml
delete mode 100644
metadata.rottentomatoes.com/resources/language/Portuguese/strings.xml
delete mode 100644 metadata.rottentomatoes.com/rottentomatoes.xml
create mode 100644 metadata.rottentomatoes.com/rt.xml
hooks/post-receive
--
Scrapers
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, application performance,
security threats, fraudulent activity, and more. Splunk takes this
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons