Merge pull request #94 from Manabi/master
Added definition for Drive comic Conflicts: dosagelib/plugins/g.py
This commit is contained in:
commit
b5ed4c56b6
2 changed files with 12 additions and 1 deletions
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue