Merge pull request #6 from TobiX/for-upstream-2013-02-08
Fix for Spinnerette, 2 new comics
This commit is contained in:
commit
a61c4b4096
2 changed files with 18 additions and 1 deletions
|
@ -16,6 +16,15 @@ class PandyLand(_BasicScraper):
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
class ParadigmShift(_BasicScraper):
|
||||||
|
url = 'http://www.paradigmshiftmanga.com/'
|
||||||
|
starter = indirectStarter(url, compile(tagre("a", "href", r'([^"]+)', after="next-comic-link")))
|
||||||
|
imageUrl = url + 'ps/%s.html'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'([^"]*comics/ps/[^"]*)'))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="previous-comic-link"))
|
||||||
|
help = 'Index format: custom'
|
||||||
|
|
||||||
|
|
||||||
class PartiallyClips(_BasicScraper):
|
class PartiallyClips(_BasicScraper):
|
||||||
url = 'http://partiallyclips.com/'
|
url = 'http://partiallyclips.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
|
|
|
@ -109,6 +109,14 @@ class SinFest(_BasicScraper):
|
||||||
help = 'Index format: n (unpadded)'
|
help = 'Index format: n (unpadded)'
|
||||||
|
|
||||||
|
|
||||||
|
class SkinDeep(_BasicScraper):
|
||||||
|
url = 'http://www.skindeepcomic.com/'
|
||||||
|
stripUrl = url + 'archive/%s/'
|
||||||
|
imageSearch = compile(r'<span class="webcomic-object[^>]*><img src="([^"]*)"')
|
||||||
|
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="previous-webcomic-link"))
|
||||||
|
help = 'Index format: custom'
|
||||||
|
|
||||||
|
|
||||||
class SlightlyDamned(_BasicScraper):
|
class SlightlyDamned(_BasicScraper):
|
||||||
url = 'http://www.sdamned.com/'
|
url = 'http://www.sdamned.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
|
@ -163,7 +171,7 @@ class Spinnerette(_BasicScraper):
|
||||||
url = 'http://www.spinnyverse.com/'
|
url = 'http://www.spinnyverse.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://www\.spinnyverse\.com/comics/[^"]+)'))
|
imageSearch = compile(tagre("img", "src", r'(http://www\.spinnyverse\.com/comics/[^"]+)'))
|
||||||
prevSearch = compile(tagre("a", "href", r'(http://www\.spinnyverse\.com/[^"]+)', before="Previous"))
|
prevSearch = compile(tagre("a", "href", r'(http://www\.spinnyverse\.com/[^"]+)', before="Previous Comic"))
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue