fix mangafox, chiennes

This commit is contained in:
Noe Rubinstein 2012-03-04 01:51:35 +01:00 committed by Romain Bignon
commit 8fcf695783

View file

@ -29,6 +29,6 @@ class MangafoxBackend(GenericComicReaderBackend):
page_list_xpath="(//select[@onchange='change_page(this)'])[1]/option[text()!='Comments']/@value",
page_to_location="%s.html")
ID_REGEXP = r'[^/]+/[^/]+(?:/[^/]+)?'
URL_REGEXP = r'.+mangafox.com/manga/(%s).+' % ID_REGEXP
URL_REGEXP = r'.+mangafox.com/manga/(%s).*' % ID_REGEXP
ID_TO_URL = 'http://www.mangafox.com/manga/%s'
PAGES = { r'http://.+\.mangafox.\w+/manga/[^/]+/[^/]+/([^/]+/)?.+\.html': DisplayPage }
PAGES = { r'http://.+\.mangafox.\w+/manga/[^/]+/[^/]+/([^/]+/)?(.+\.html)?': DisplayPage }