Added KickInTheHead

This commit is contained in:
Bastian Kleineidam 2013-03-12 21:16:17 +01:00
parent 69ef34c4e2
commit 502a35166f
2 changed files with 10 additions and 1 deletions

View file

@ -3,7 +3,7 @@ Dosage 1.14 (released xx.xx.2013)
Features:
- comics: Added KeenSpot comic strips, enable ComicGenesis
comic strips, added DerFlix, FonFlatter, FullFrontalNerdity,
GeeksNextDoor, Ruthe.
GeeksNextDoor, KickInTheHead, Ruthe.
Closes: GH bug #15
Changes:

View file

@ -25,6 +25,15 @@ class Key(_BasicScraper):
help = 'Index format: nnn'
class KickInTheHead(_BasicScraper):
url = 'http://www.kickinthehead.org/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '2003/03/20/ipod-envy'
imageSearch = compile(tagre("img", "src", r'(http://www\.kickinthehead\.org/kickinthehead3/comics/\d+-\d+-\d+[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://www\.kickinthehead\.org/\d+/\d+/\d+/[^"]+)', after="navi-prev"))
help = 'Index format: yyyy/mm/dd/stripname'
class KillerKomics(_BasicScraper):
url = 'http://www.killerkomics.com/web-comics/index_ang.cfm'
stripUrl = 'http://www.killerkomics.com/web-comics/%s.cfm'