Fix Misfile, add Misfile/HellHigh

This commit is contained in:
Techwolf 2019-07-02 21:43:45 -07:00 committed by Tobias Gruetzmacher
parent 6f47be87f7
commit 23afbd1fb7

View file

@ -134,13 +134,19 @@ class Metacarpolis(_ComicControlScraper):
url = 'http://www.metacarpolis.com' url = 'http://www.metacarpolis.com'
class Misfile(_BasicScraper): class Misfile(_ComicControlScraper):
url = 'http://www.misfile.com/' url = 'http://www.misfile.com/misfile/'
stripUrl = url + '?date=%s' stripUrl = url + '%s'
firstStripUrl = stripUrl % '2004-02-22' firstStripUrl = stripUrl % '2004-02-22'
imageSearch = compile(tagre("img", "src", r"(comics/[^']+)", quote="'")) endOfLife = True
prevSearch = compile(tagre("link", "href", r"([^']+)", quote="'", help = 'Index format: yyyy-mm-dd'
before="Previous"))
class MisfileHellHigh(Misfile):
name = 'Misfile/HellHigh'
url = 'http://www.misfile.com/hell-high/'
stripUrl = url + '%s'
firstStripUrl = stripUrl % '2019-08-29'
help = 'Index format: yyyy-mm-dd' help = 'Index format: yyyy-mm-dd'