The branch, eden has been updated
       via  09de8b367f4a40efa08e5bbcc21c4454365a4c2e (commit)
      from  d4b3925f31fd648ca7b09ff3483eccfdf1511ba5 (commit)

- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scrapers;a=commit;h=09de8b367f4a40efa08e5bbcc21c4454365a4c2e

commit 09de8b367f4a40efa08e5bbcc21c4454365a4c2e
Author: olympia <olym...@xbmc.org>
Date:   Thu May 24 16:48:10 2012 +0200

    [metadata.artists.last.fm] updated to version 1.3.1

diff --git a/metadata.artists.last.fm/addon.xml 
b/metadata.artists.last.fm/addon.xml
index 5f7d69a..9699302 100644
--- a/metadata.artists.last.fm/addon.xml
+++ b/metadata.artists.last.fm/addon.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="metadata.artists.last.fm"
        name="Last.FM"
-       version="1.3.0"
+       version="1.3.1"
        provider-name="Team XBMC">
   <requires>
     <import addon="xbmc.metadata" version="1.0"/>
-    <import addon="metadata.common.last.fm" version="1.2.0"/>
+    <import addon="metadata.common.last.fm" version="1.2.1"/>
     <import addon="metadata.common.htbackdrops.com" version="1.1.0"/>
   </requires>
   <extension point="xbmc.metadata.scraper.artists"
diff --git a/metadata.artists.last.fm/lastfm.xml 
b/metadata.artists.last.fm/lastfm.xml
index bc43f0c..0442474 100644
--- a/metadata.artists.last.fm/lastfm.xml
+++ b/metadata.artists.last.fm/lastfm.xml
@@ -47,10 +47,10 @@
                        <RegExp input="$$7" output="&lt;chain 
function=&quot;GetLastFMDiscographyByMBID&quot;&gt;\1&lt;/chain&gt;" dest="5+">
                                <expression noclean="1">(.+)</expression>
                        </RegExp>
-                       <RegExp input="$$7" output="&lt;chain 
function=&quot;GetLastFMGenresByMBID&quot;&gt;\1&lt;/chain&gt;" dest="5+">
+                       <RegExp input="$$7" output="&lt;chain 
function=&quot;GetLastFMArtistGenresByMBID&quot;&gt;\1&lt;/chain&gt;" dest="5+">
                                <expression noclean="1">(.+)</expression>
                        </RegExp>
-                       <RegExp input="$$7" output="&lt;chain 
function=&quot;GetLastFMStylesByMBID&quot;&gt;\1&lt;/chain&gt;" dest="5+">
+                       <RegExp input="$$7" output="&lt;chain 
function=&quot;GetLastFMArtistStylesByMBID&quot;&gt;\1&lt;/chain&gt;" dest="5+">
                                <expression noclean="1">(.+)</expression>
                        </RegExp>
                        <expression noclean="1" />
diff --git a/metadata.common.last.fm/addon.xml 
b/metadata.common.last.fm/addon.xml
index b77ca37..9eea278 100644
--- a/metadata.common.last.fm/addon.xml
+++ b/metadata.common.last.fm/addon.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <addon id="metadata.common.last.fm"
        name="Last.FM"
-       version="1.2.0"
+       version="1.2.1"
        provider-name="Team XBMC">
   <requires>
     <import addon="xbmc.metadata" version="1.0"/>
diff --git a/metadata.common.last.fm/lastfm.xml 
b/metadata.common.last.fm/lastfm.xml
index 676951a..494f487 100644
--- a/metadata.common.last.fm/lastfm.xml
+++ b/metadata.common.last.fm/lastfm.xml
@@ -32,6 +32,34 @@
                </RegExp>
        </ParseLastFMBiography>
 
+       <GetLastFMArtistGenresByMBID dest="5">
+               <RegExp input="$$1" output="&lt;details&gt;&lt;url 
function=&quot;ParseLastFMArtistGenres&quot; 
cache=&quot;lastfmgenres-\1.xml&quot;&gt;http://ws.audioscrobbler.com/2.0/?method=artist.gettoptags&amp;amp;mbid=\1&amp;amp;api_key=71e468a84c1f40d4991ddccc46e40f1b&lt;/url&gt;&lt;/details&gt;";
 dest="5">
+                       <expression noclean="1"/>
+               </RegExp>
+       </GetLastFMArtistGenresByMBID>
+       <ParseLastFMArtistGenres dest="5">
+               <RegExp input="$$4" output="&lt;details&gt;\1&lt;/details&gt;" 
dest="5">
+                       <RegExp input="$$1" 
output="&lt;genre&gt;\1&lt;/genre&gt;" dest="4">
+                               <expression 
noclean="1">&lt;tag&gt;.*?&lt;name&gt;([^/lt;]*)&lt;/name&gt;</expression>
+                       </RegExp>
+                       <expression noclean="1" />
+               </RegExp>
+       </ParseLastFMArtistGenres>
+
+       <GetLastFMArtistStylesByMBID dest="5">
+               <RegExp input="$$1" output="&lt;details&gt;&lt;url 
function=&quot;ParseLastFMArtistStyles&quot; 
cache=&quot;lastfmgenres-\1.xml&quot;&gt;http://ws.audioscrobbler.com/2.0/?method=artist.gettoptags&amp;amp;mbid=\1&amp;amp;api_key=71e468a84c1f40d4991ddccc46e40f1b&lt;/url&gt;&lt;/details&gt;";
 dest="5">
+                       <expression noclean="1"/>
+               </RegExp>
+       </GetLastFMArtistStylesByMBID>
+       <ParseLastFMArtistStyles dest="5">
+               <RegExp input="$$4" output="&lt;details&gt;\1&lt;/details&gt;" 
dest="5">
+                       <RegExp input="$$1" 
output="&lt;style&gt;\1&lt;/style&gt;" dest="4">
+                               <expression repeat="yes" 
noclean="1">&lt;tag&gt;.*?&lt;name&gt;([^/lt;]*)&lt;/name&gt;</expression>
+                       </RegExp>
+                       <expression noclean="1" />
+               </RegExp>
+       </ParseLastFMArtistStyles>
+
        <GetLastFMArtistThumbsByMBID dest="5">
                <RegExp input="$$1" output="&lt;details&gt;&lt;url 
function=&quot;ParseLastFMArtistThumbs&quot; 
cache=&quot;lastfmartistimages-\1.xml&quot;&gt;http://ws.audioscrobbler.com/2.0/?method=artist.getimages&amp;amp;mbid=\1&amp;amp;api_key=71e468a84c1f40d4991ddccc46e40f1b&lt;/url&gt;&lt;/details&gt;";
 dest="5">
                        <expression noclean="1" />
@@ -73,31 +101,4 @@
                </RegExp>
        </ParseLastFMAlbumThumbs>
 
-       <GetLastFMGenresByMBID dest="5">
-               <RegExp input="$$1" output="&lt;details&gt;&lt;url 
function=&quot;ParseLastFMGenres&quot; 
cache=&quot;lastfmgenres-\1.xml&quot;&gt;http://ws.audioscrobbler.com/2.0/?method=artist.gettoptags&amp;amp;mbid=\1&amp;amp;api_key=71e468a84c1f40d4991ddccc46e40f1b&lt;/url&gt;&lt;/details&gt;";
 dest="5">
-                       <expression noclean="1"/>
-               </RegExp>
-       </GetLastFMGenresByMBID>
-       <ParseLastFMGenres dest="5">
-               <RegExp input="$$4" output="&lt;details&gt;\1&lt;/details&gt;" 
dest="5">
-                       <RegExp input="$$1" 
output="&lt;genre&gt;\1&lt;/genre&gt;" dest="4">
-                               <expression 
noclean="1">&lt;tag&gt;.*?&lt;name&gt;([^/lt;]*)&lt;/name&gt;</expression>
-                       </RegExp>
-                       <expression noclean="1" />
-               </RegExp>
-       </ParseLastFMGenres>
-
-       <GetLastFMStylesByMBID dest="5">
-               <RegExp input="$$1" output="&lt;details&gt;&lt;url 
function=&quot;ParseLastFMStyles&quot; 
cache=&quot;lastfmgenres-\1.xml&quot;&gt;http://ws.audioscrobbler.com/2.0/?method=artist.gettoptags&amp;amp;mbid=\1&amp;amp;api_key=71e468a84c1f40d4991ddccc46e40f1b&lt;/url&gt;&lt;/details&gt;";
 dest="5">
-                       <expression noclean="1"/>
-               </RegExp>
-       </GetLastFMStylesByMBID>
-       <ParseLastFMStyles dest="5">
-               <RegExp input="$$4" output="&lt;details&gt;\1&lt;/details&gt;" 
dest="5">
-                       <RegExp input="$$1" 
output="&lt;style&gt;\1&lt;/style&gt;" dest="4">
-                               <expression repeat="yes" 
noclean="1">&lt;tag&gt;.*?&lt;name&gt;([^/lt;]*)&lt;/name&gt;</expression>
-                       </RegExp>
-                       <expression noclean="1" />
-               </RegExp>
-       </ParseLastFMStyles>
 </scraperfunctions>

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

Summary of changes:
 metadata.artists.last.fm/addon.xml  |    4 +-
 metadata.artists.last.fm/lastfm.xml |    4 +-
 metadata.common.last.fm/addon.xml   |    2 +-
 metadata.common.last.fm/lastfm.xml  |   55 ++++++++++++++++++-----------------
 4 files changed, 33 insertions(+), 32 deletions(-)


hooks/post-receive
-- 
Scrapers

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Xbmc-addons mailing list
Xbmc-addons@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Reply via email to