diff options
author | vdrfan <vdrfan@svn> | 2010-01-10 18:43:56 +0000 |
---|---|---|
committer | vdrfan <vdrfan@svn> | 2010-01-10 18:43:56 +0000 |
commit | df7e6b09f1b28357436dc10d30f3691e712c8c57 (patch) | |
tree | 08990e370ec8e9575f452a07d53a00ee1e96607e | |
parent | 23584b11ef34e203a4c64bd2db0dd99a5a86e154 (diff) |
fixed: wrong thumbs/fanarts in german ofdb.de movie scraper due to bad caching
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26648 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | system/scrapers/video/ofdb.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/scrapers/video/ofdb.xml b/system/scrapers/video/ofdb.xml index 101a588d77..522172a3ba 100644 --- a/system/scrapers/video/ofdb.xml +++ b/system/scrapers/video/ofdb.xml @@ -121,7 +121,7 @@ <expression><a href=.view.php.page=fassung&fid=([0-9]+)&vid=([0-9]+).>Kino:</expression> </RegExp> <!--URL to IMDB--> - <RegExp input="$$1" output="<url cache="ofdb-$$2-imdb.html" function="IMDB-Details">http://www.imdb.de/title/tt\2/</url>" dest="5+"> + <RegExp input="$$1" output="<url cache="ofdb-tt\2-imdb.html" function="IMDB-Details">http://www.imdb.de/title/tt\2/</url>" dest="5+"> <expression>(imdb.com/)Title\?([0-9]+)</expression> </RegExp> <!--URL to IMDBcredits--> @@ -129,7 +129,7 @@ <expression>(imdb.com/)Title\?([0-9]+)</expression> </RegExp> <!--URL to Fanart--> - <RegExp conditional="fanart" input="$$1" output="<url cache="ofdb-$$2-imdb.html" function="GetTMDBFanartById">http://www.imdb.de/title/tt\2</url>" dest="5+"> + <RegExp conditional="fanart" input="$$1" output="<url cache="ofdb-tt\2-imdb.html" function="GetTMDBFanartById">http://www.imdb.de/title/tt\2</url>" dest="5+"> <expression>(imdb.com/)Title\?([0-9]+)</expression> </RegExp> <!--URL to MoviePosterDB --> @@ -137,12 +137,12 @@ <expression>(imdb.com/)Title\?([0-9]+)</expression> </RegExp> <!-- Ofdb Poster --> - <RegExp input="$$3" output="<url cache="ofdb-$$2.html" function="GetOfdbThumb">\1</url>" dest="5+"> - <expression noclean="1"/> + <RegExp input="$$1" output="<url cache="ofdb-\1.html" function="GetOfdbThumb">$$3</url>" dest="5+"> + <expression>fid=([0-9]+)</expression> </RegExp> <!-- Cast --> - <RegExp input="$$2" output="<url cache="ofdb-$$2.html" function="GetMovieCast">$$3</url>" dest="5+"> - <expression/> + <RegExp input="$$1" output="<url cache="ofdb-\1.html" function="GetMovieCast">$$3</url>" dest="5+"> + <expression>fid=([0-9]+)</expression> </RegExp> <expression noclean="1"/> </RegExp> |