Fix VGCats, VGCats/Adventure, VGCats/Super
This commit is contained in:
parent
c43bc0cef4
commit
9c87c214b6
1 changed files with 3 additions and 1 deletions
|
@ -26,7 +26,7 @@ class VGCats(_ParserScraper):
|
||||||
url = 'https://www.vgcats.com/comics/'
|
url = 'https://www.vgcats.com/comics/'
|
||||||
stripUrl = url + '?strip_id=%s'
|
stripUrl = url + '?strip_id=%s'
|
||||||
firstStripUrl = stripUrl % '0'
|
firstStripUrl = stripUrl % '0'
|
||||||
imageSearch = '//td/img[contains(@src, "/images/")]'
|
imageSearch = '//td/img[contains(@src, "images/")]'
|
||||||
prevSearch = '//a[img[contains(@src, "back.")]]'
|
prevSearch = '//a[img[contains(@src, "back.")]]'
|
||||||
help = 'Index format: n (unpadded)'
|
help = 'Index format: n (unpadded)'
|
||||||
|
|
||||||
|
@ -35,12 +35,14 @@ class VGCatsAdventure(VGCats):
|
||||||
name = 'VGCats/Adventure'
|
name = 'VGCats/Adventure'
|
||||||
url = 'http://www.vgcats.com/ffxi/'
|
url = 'http://www.vgcats.com/ffxi/'
|
||||||
stripUrl = url + '?strip_id=%s'
|
stripUrl = url + '?strip_id=%s'
|
||||||
|
imageSearch = '//p/img[contains(@src, "images/")]'
|
||||||
|
|
||||||
|
|
||||||
class VGCatsSuper(VGCats):
|
class VGCatsSuper(VGCats):
|
||||||
name = 'VGCats/Super'
|
name = 'VGCats/Super'
|
||||||
url = 'http://www.vgcats.com/super/'
|
url = 'http://www.vgcats.com/super/'
|
||||||
stripUrl = url + '?strip_id=%s'
|
stripUrl = url + '?strip_id=%s'
|
||||||
|
imageSearch = '//p/img[contains(@src, "images/")]'
|
||||||
|
|
||||||
|
|
||||||
class VickiFox(_ParserScraper):
|
class VickiFox(_ParserScraper):
|
||||||
|
|
Loading…
Reference in a new issue