Add DogHouseDiaries, update changelog.

This commit is contained in:
Bastian Kleineidam 2013-03-15 07:04:19 +01:00
parent 6a2f55ddef
commit 88224fe21a
2 changed files with 13 additions and 3 deletions

View file

@ -3,13 +3,15 @@ Dosage 1.14 (released xx.xx.2013)
Features:
- comics: Added KeenSpot comic strips and enable ComicGenesis
comic strips
- comics: Added CucumberQuest, DerFlix, FonFlatter, FullFrontalNerdity,
GeeksNextDoor, KickInTheHead, OrnerBoy, Ruthe.
Closes: GH bug #15
- comics: Added CucumberQuest, DerFlix, DogHouseDiaries, FonFlatter,
FullFrontalNerdity, GeeksNextDoor, KickInTheHead, OrnerBoy, Ruthe.
Closes: GH bug #15, #19
Changes:
- comics: The scraper can check a list of previous and image link
regular expressions, not only a single one.
- comics: Continue searching for images if one image is not found.
Closes: GH bug #18
Dosage 1.13 (released 11.3.2013)

View file

@ -136,6 +136,14 @@ class DoemainOfOurOwn(_BasicScraper):
help = 'Index format: yyyy-mm-dd'
class DogHouseDiaries(_BasicScraper):
url = 'http://thedoghousediaries.com/'
stripUrl = url + '%s'
prevSearch = compile(tagre("a", "href", r'(http://thedoghousediaries\.com/\d+)', after="previous-comic"))
imageSearch = compile(tagre("img", "src", r'(http://thedoghousediaries\.com/comics/[^"]+)'))
help = 'Index format: number'
class DominicDeegan(_BasicScraper):
url = 'http://www.dominic-deegan.com/'
stripUrl = url + 'view.php?date=%s'