diff --git a/dosagelib/plugins/d.py b/dosagelib/plugins/d.py index edf4a2cb2..3fdb899bb 100644 --- a/dosagelib/plugins/d.py +++ b/dosagelib/plugins/d.py @@ -289,6 +289,17 @@ class DrFun(_BasicScraper): endOfLife = True +class Drive(_BasicScraper): + description = u'DRIVE tells the story of a second Spanish empire, a galactic empire, and its looming war with a race called The Continuum of Makers.' + url = 'http://www.drivecomic.com/' + rurl = escape(url) + stripUrl = url + 'archive/%s.html' + firstStripUrl = stripUrl % '090815' + imageSearch = compile(tagre("img", "src", r'(http://cdn\.drivecomic\.com/strips/main/[^"]+)')) + prevSearch = compile(tagre("a", "href", r'(%sarchive/\d+\.html)' % rurl) + "Previous") + help = 'Index format: yymmdd' + + # XXX navigation works only with JavaScript class _DrMcNinja(_BasicScraper): description = u'The Adventures of Dr. McNinja' diff --git a/dosagelib/plugins/g.py b/dosagelib/plugins/g.py index 2346b96f8..78e211438 100644 --- a/dosagelib/plugins/g.py +++ b/dosagelib/plugins/g.py @@ -178,7 +178,7 @@ class GrrlPower(_BasicScraper): help = 'Index format: number' -class GunnerkrigCourt(_BasicScraper): +class GunnerkriggCourt(_BasicScraper): description = u'Gunnerkrigg Court is a science-fantasy webcomic created by Tom Siddell. It is updated online three days a week.' url = 'http://www.gunnerkrigg.com/' stripUrl = url + '?p=%s'