Added comic DungeonsAndDenizens

This commit is contained in:
Freestila 2014-02-27 15:08:07 +01:00
parent b8fefb37c0
commit 53ebb51b10

View file

@ -325,3 +325,11 @@ class _DumbingOfAge(_BasicScraper):
prevSearch = compile(tagre("a", "href", r'(%s\d+/[^"]+)' % rurl, after="prev")) prevSearch = compile(tagre("a", "href", r'(%s\d+/[^"]+)' % rurl, after="prev"))
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl)) imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl))
help = 'Index format: yyyy/comic/book-num/seriesname/stripname' help = 'Index format: yyyy/comic/book-num/seriesname/stripname'
class DungeonsAndDenizens(_BasicScraper):
url = 'http://dungeond.com/'
stripUrl = url + '\d/\d/\d/%s/'
firstStripUrl = stripUrl % '08232005'
imageSearch = compile(tagre("img", "src", r'(%sfiles//comics/[^"]+)' % url))
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % url) + "Previous")
help = 'Index format: ddmmyyyy'