# -*- coding: iso-8859-1 -*- # Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs # Copyright (C) 2012 Bastian Kleineidam from re import compile, IGNORECASE from ..scraper import _BasicScraper from ..util import tagre # broken links - disable for now class _MadamAndEve(_BasicScraper): latestUrl = 'http://www.madamandeve.co.za/week_of_cartns.php' stripUrl = None imageSearch = compile(r'') prevSearch = compile(r'Prev') help = 'Index format: nnnn' class MacHall(_BasicScraper): latestUrl = 'http://www.machall.com/' stripUrl = latestUrl + 'view.php?date=%s' imageSearch = compile(r']+?src=\'drop_shadow/previous.gif\'>') help = 'Index format: yyyy-mm-dd' class Melonpool(_BasicScraper): latestUrl = 'http://www.melonpool.com/' stripUrl = latestUrl + '?p=%s' imageSearch = compile(tagre("img", "src", r'(http://www\.melonpool\.com/comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(http://www\.melonpool\.com/\?p=\d+)', after="prev")) help = 'Index format: n' class Misfile(_BasicScraper): latestUrl = 'http://www.misfile.com/' stripUrl = latestUrl + '?date=%s' imageSearch = compile(tagre("img", "src", r'(comics/[^"]+)')) prevSearch = compile(tagre("link", "href", r'([^"]+)', before="Previous")) help = 'Index format: yyyy-mm-dd' class MysteriesOfTheArcana(_BasicScraper): latestUrl = 'http://mysteriesofthearcana.com/' stripUrl = latestUrl + 'index.php?action=comics&cid=%s' imageSearch = compile(tagre("img", "src", r'(image\.php\?type=com&i=[^"]+)')) prevSearch = compile(tagre("a", "href", r'()', after="navprevius")) help = 'Index format: n (unpadded)' # XXX move to keenspot? class MysticRevolution(_BasicScraper): latestUrl = 'http://mysticrevolution.keenspot.com/' stripUrl = latestUrl + '?cid=%s' imageSearch = compile(tagre("img", "src", r'(http://cdn\.mysticrevolution\.keenspot\.com/comics/[^"]+)')) prevSearch = compile(tagre("link", "rel", r'(\?cid=\d+)', before="prev")) help = 'Index format: n (unpadded)'