This commit is contained in:
Bastian Kleineidam 2012-12-09 20:15:22 +01:00
parent 3a3a800798
commit 6c0ad90c15
3 changed files with 1 additions and 5 deletions

View file

@ -134,4 +134,3 @@ class GreystoneInn(_BasicScraper):
imageSearch=compile(tagre("img", "src", r'(/comic[s|/][^"]+)'))
prevSearch=compile(tagre("a", "href", r'[^"]*(/d/\d+\.s?html)')+r"[^>]+/images/(?:nav_02|previous_day)\.gif")
help='Index format: yyyymmdd'

View file

@ -184,6 +184,7 @@ class SomethingPositive(_BasicScraper):
class SexyLosers(_BasicScraper):
adult = True
stripUrl = 'http://www.sexylosers.com/%s.html'
imageSearch = compile(r'<img src\s*=\s*"\s*(comics/[\w\.]+?)"', IGNORECASE)
prevSearch = compile(r'<a href="(/\d{3}\.\w+?)"><font color = FFAAAA><<', IGNORECASE)
@ -198,7 +199,6 @@ class SexyLosers(_BasicScraper):
return index + '-' + title
class StarCrossdDestiny(_BasicScraper):
latestUrl = 'http://www.starcrossd.net/comic.html'
stripUrl = 'http://www.starcrossd.net/archives/%s.html'
@ -241,4 +241,3 @@ class SMBC(_BasicScraper):
imageSearch = compile(r'<img src=\'(.+?\d{8}.\w{1,4})\'>')
prevSearch = compile(r'131,13,216,84"\n\s+href="(.+?)#comic"\n>', MULTILINE)
help = 'Index format: nnnn'

View file

@ -22,5 +22,3 @@ class YouSayItFirst(_BasicScraper):
imageSearch = compile(tagre("img", "src", r"(http://www\.yousayitfirst\.com/comics/[^>']+)", quote="'?"))
prevSearch = compile(tagre("a", "href", r'(http://www\.yousayitfirst\.com/comics/index\.php\?date=\d+)', quote="'") + "Previous")
help = 'Index format: yyyymmdd'