dosage/dosagelib/plugins/pensandtales.py

31 lines
1.1 KiB
Python
Raw Normal View History

2012-12-08 20:30:51 +00:00
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
2013-02-05 18:51:46 +00:00
# Copyright (C) 2012-2013 Bastian Kleineidam
2012-12-08 20:30:51 +00:00
from re import compile
from ..scraper import make_scraper
from ..util import tagre
_imageSearch = compile(tagre("img", "src", r'([^"]*comics/[^"]+)'))
def add(name, baseUrl, param="date"):
classname = 'PensAndTales_%s' % name
_prevSearch = compile(tagre("a", "href", r'([^"]*\?%s=\d+)' % param) +
'(?:' + tagre("img", "alt", r'Previous Comic') + '|' +
'[^<]+Previous' + ')')
globals()[classname] = make_scraper(classname,
name='PensAndTales/' + name,
url = baseUrl,
2012-12-08 20:30:51 +00:00
stripUrl = baseUrl + '?' + param + '=%s',
imageSearch = _imageSearch,
prevSearch = _prevSearch,
help='Index format: yyyymmdd'
)
# Most of the comics linked an pensandtales are broken and
# the rest does not have a common layout. It seems they allow
# almost arbitrary HTML layout.
add('FireflyCross', 'http://www.fireflycross.pensandtales.com/', param="p")
add('Evilish', 'http://evilish.pensandtales.com/')