Updated GirlGenius to new markup

GG markup has changed, so I fixed the prevSearch regex to find the
"previous" button on the redesigned page.

As well, I set multipleImagesPerStrip to true, since there are quite a
few comics with multiple images that were being discarded.
This commit is contained in:
Keith Beckman 2014-06-13 16:43:40 -04:00
parent 94090da813
commit 236b840363

View file

@ -111,11 +111,11 @@ class GirlGenius(_BasicScraper):
stripUrl = url + '?date=%s'
firstStripUrl = stripUrl % '20021104'
imageSearch = compile(tagre("img", "src", r"(%sggmain/strips/[^']*)" % rurl, quote="'"))
prevSearch = compile(tagre("a", "href", r"(%s[^']+)" % rurl, quote="'") +
tagre("img", "alt", "The Previous Comic", quote="'"))
prevSearch = compile(tagre("a", "id", "topprev", quote="\"",
before=r"(%s[^\"']+)" % rurl))
multipleImagesPerStrip = True
help = 'Index format: yyyymmdd'
class GirlsWithSlingshots(_BasicScraper):
url = 'http://www.girlswithslingshots.com/'
rurl = escape(url)