Added CucumberQuest

This commit is contained in:
Bastian Kleineidam 2013-03-12 21:36:13 +01:00
parent 79f0f4b36c
commit e739eb7992
2 changed files with 13 additions and 2 deletions

View file

@ -1,8 +1,9 @@
Dosage 1.14 (released xx.xx.2013)
Features:
- comics: Added KeenSpot comic strips, enable ComicGenesis
comic strips, added DerFlix, FonFlatter, FullFrontalNerdity,
- comics: Added KeenSpot comic strips and enable ComicGenesis
comic strips
- comics: Added CucumberQuest, DerFlix, FonFlatter, FullFrontalNerdity,
GeeksNextDoor, KickInTheHead, OrnerBoy, Ruthe.
Closes: GH bug #15

View file

@ -325,3 +325,13 @@ class CraftedFables(_BasicScraper):
imageSearch = compile(tagre("img", "src", r'(http://www\.caf-fiends\.net/craftedfables/comics/[^"]+)'))
prevSearch = compile(r'<a href="(http://www.caf-fiends.net/craftedfables/.+?)"><span class="prev">')
help = 'Index format: nnn'
class CucumberQuest(_BasicScraper):
url = 'http://cucumber.gigidigi.com/'
stripUrl = url + 'archive/page-%s/'
starter = indirectStarter(url + 'recent.html',
compile(r'window\.location="(/archive/page-\d+/)"'))
imageSearch = compile(tagre("img", "src", r'(http://cucumber\.gigidigi\.com/wp-content/webcomic/cq/\d+[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://cucumber\.gigidigi\.com/archive/page-\d+/)', after="previous"))
help = 'Index format: number'