Rename filenames in boilerplate
This commit is contained in:
parent
0b08f614a1
commit
0b58c9a26b
3 changed files with 2 additions and 2 deletions
23
tools/boilerplate_data/comic_module.py
Normal file
23
tools/boilerplate_data/comic_module.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<%inherit file="layout.py"/>
|
||||
from weboob.tools.capabilities.gallery.genericcomicreader import GenericComicReaderModule, DisplayPage
|
||||
|
||||
|
||||
__all__ = ['${r.classname}Module']
|
||||
|
||||
|
||||
class ${r.classname}Module(GenericComicReaderModule):
|
||||
NAME = '${r.name}'
|
||||
DESCRIPTION = u'${r.name} manga reading site'
|
||||
MAINTAINER = u'${r.author}'
|
||||
EMAIL = '${r.email}'
|
||||
VERSION = '${r.version}'
|
||||
LICENSE = 'AGPLv3+'
|
||||
|
||||
DOMAIN = 'www.${r.name}.com'
|
||||
BROWSER_PARAMS = dict(
|
||||
img_src_xpath="//img[@id='comic_page']/@src",
|
||||
page_list_xpath="(//select[@id='page_select'])[1]/option/@value")
|
||||
ID_REGEXP = r'[^/]+/[^/]+'
|
||||
URL_REGEXP = r'.+${r.name}.com/(%s).+' % ID_REGEXP
|
||||
ID_TO_URL = 'http://www.${r.name}.com/%s'
|
||||
PAGES = {URL_REGEXP: DisplayPage}
|
||||
Loading…
Add table
Add a link
Reference in a new issue