Fix MadamAndEve.
This commit is contained in:
parent
c95a447305
commit
3e74dc9956
2 changed files with 4 additions and 3 deletions
|
@ -11,8 +11,8 @@ Changes:
|
||||||
Patch by Dirk Reiners.
|
Patch by Dirk Reiners.
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
- comics: Fix DorkTower and Saturday Morning Breakfast Cereal,
|
- comics: Fix DorkTower, MadamAndEve and Saturday Morning Breakfast
|
||||||
and improve image filenames of CtrlAltDel.
|
Cereal, and improve image filenames of CtrlAltDel.
|
||||||
Patch by Dirk Reiners.
|
Patch by Dirk Reiners.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,12 @@ class MacHall(_BasicScraper):
|
||||||
|
|
||||||
|
|
||||||
# broken links - disable for now
|
# broken links - disable for now
|
||||||
class _MadamAndEve(_BasicScraper):
|
class MadamAndEve(_BasicScraper):
|
||||||
url = 'http://www.madamandeve.co.za/week_of_cartns.php'
|
url = 'http://www.madamandeve.co.za/week_of_cartns.php'
|
||||||
stripUrl = None
|
stripUrl = None
|
||||||
imageSearch = compile(r'<IMG BORDER="0" SRC="(cartoons/me\d{6}\.(gif|jpg))">')
|
imageSearch = compile(r'<IMG BORDER="0" SRC="(cartoons/me\d{6}\.(gif|jpg))">')
|
||||||
prevSearch = compile(r'<a href="(weekend_cartoon.php)"')
|
prevSearch = compile(r'<a href="(weekend_cartoon.php)"')
|
||||||
|
multipleImagesPerStrip = True
|
||||||
|
|
||||||
|
|
||||||
class MagickChicks(_BasicScraper):
|
class MagickChicks(_BasicScraper):
|
||||||
|
|
Loading…
Reference in a new issue