Merge branch 'master' of https://github.com/mbrandis/dosage into mbrandis-master

This commit is contained in:
Bastian Kleineidam 2013-07-04 20:03:11 +02:00
commit f78d28fba8

View file

@ -563,3 +563,18 @@ class SupernormalStep(_BasicScraper):
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl)) imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl, after="prev")) prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl, after="prev"))
help = 'Index format: number' help = 'Index format: number'
class ShermansLagoon(_BasicScraper):
description = u"Sherman's Lagoon by Jim Toomey"
url = 'http://shermanslagoon.com/'
stripUrl = url + 'comics/%s'
firstStripUrl = stripUrl % '/december-29-2003/'
imageSearch = compile(r'<img src="(http://safr.kingfeatures.com/idn/etv/zone/xml/content.php\?file=.+?)" />')
prevSearch = compile(r'<a href="(http://shermanslagoon.com/comics/.+?/)" rel="prev"')
@classmethod
def namer(cls, imageUrl, pageUrl):
import datetime
mylist = []
mylist.append(datetime.date.today())
return "%s" % mylist[0]