ff21df596b
Maintaining the descriptions creates quite a bit of overhead (finding them, copying them, checking if they are still correct) for a minimal user benefit. PS: Viewing this diff should be easier in a difftool that shows changes in a line, for example kdiff3.
22 lines
776 B
Python
22 lines
776 B
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
|
|
from re import compile
|
|
from ..scraper import _BasicScraper
|
|
from ..util import tagre
|
|
|
|
|
|
class YAFGC(_BasicScraper):
|
|
url = 'http://yafgc.net/'
|
|
stripUrl = url + '?id=%s'
|
|
firstStripUrl = stripUrl % '1'
|
|
imageSearch = compile(tagre("img", "src", r'(http://(?:www\.)?yafgc\.net/img/comic/\d+\.jpg)'))
|
|
prevSearch = compile(tagre("a", "href", r'(http://(?:www\.)?yafgc\.net/\?id=\d+)') +
|
|
tagre("img", "src", r'/img/navbar/go_to_previous\.gif'))
|
|
help = 'Index format: number'
|
|
|
|
@classmethod
|
|
def prevUrlModifier(cls, prevUrl):
|
|
if prevUrl:
|
|
return prevUrl.replace("www.yafgc.net", "yafgc.net")
|