Fix AGirlAndHerFed.

This commit is contained in:
Bastian Kleineidam 2012-09-24 20:52:08 +02:00
parent a350102aee
commit e79649a9ad

View file

@ -221,10 +221,10 @@ class ASkeweredParadise(_BasicScraper):
class AGirlAndHerFed(_BasicScraper): class AGirlAndHerFed(_BasicScraper):
starter = bounceStarter('http://www.agirlandherfed.com/', starter = bounceStarter('http://www.agirlandherfed.com/',
compile(r' href="(/comic/\?\d+)" class="navigationActive">Next</a>\]')) compile(r'<a href="([^"]+)">[^>]+Back'))
imageUrl = 'http://www.agirlandherfed.com/comic/?%s' imageUrl = 'http://www.agirlandherfed.com/img/strip/%s'
imageSearch = compile(r'<img src="(/images/comics/.+?)"') imageSearch = compile(r'<img src="(/img/strip/[^"]+\.jpg)"')
prevSearch = compile(r' href="(/comic/\?\d+)" class="navigationActive">Previous</a>\]') prevSearch = compile(r'<a href="([^"]+)">[^>]+Back')
help = 'Index format: nnn' help = 'Index format: nnn'
@classmethod @classmethod