Fix ExtraLife and EyeOfRamalach

This commit is contained in:
Bastian Kleineidam 2013-04-04 18:30:02 +02:00
parent 3fd4cfea0d
commit 3078c5ec73

View file

@ -149,14 +149,14 @@ class ExploitationNow(_BasicScraper):
class ExtraLife(_BasicScraper): class ExtraLife(_BasicScraper):
url = 'http://www.myextralife.com/' url = 'http://www.myextralife.com/'
stripUrl = url + 'comic/%s/' stripUrl = url + 'comic/%s/'
imageSearch = compile(tagre("img", "src", r'(http://www\.myextralife\.com/comics/[^"]+)')) imageSearch = compile(tagre("img", "src", r'(http://www\.myextralife\.com/wp-content/uploads/[^"]+)', before="comic"))
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="prev")) prevSearch = compile(tagre("a", "href", r'([^"]+)', before="prev_comic"))
help = 'Index format: stripname' help = 'Index format: stripname'
class EyeOfRamalach(_BasicScraper): class EyeOfRamalach(_BasicScraper):
url = 'http://theeye.katbox.net/' url = 'http://theeye.katbox.net/'
stripUrl = url + 'comic/%s/' stripUrl = url + 'comic/%s/'
imageSearch = compile(tagre("img", "src", r'(http://theeye\.katbox\.net/wp-content/uploads/[^"]+final[^"]+)')) imageSearch = compile(tagre("img", "src", r'(http://theeye\.katbox\.net/wp-content/uploads/[^"]+)', after="data-webcomic-parent"))
prevSearch = compile(tagre("a", "href", r'(http://theeye\.katbox\.net/comic/[^"]+)', after="previous")) prevSearch = compile(tagre("a", "href", r'(http://theeye\.katbox\.net/comic/[^"]+)', after="previous"))
help = 'Index format: stripname' help = 'Index format: stripname'