mangafox: fix domain name change

This commit is contained in:
Noé Rubinstein 2012-04-06 12:18:52 +02:00
commit 99641aee5c

View file

@ -30,6 +30,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
ID_TO_URL = 'http://www.mangafox.com/manga/%s'
PAGES = {r'http://.+\.mangafox.\w+/manga/[^/]+/[^/]+/([^/]+/)?(.+\.html)?': DisplayPage}
URL_REGEXP = r'.+mangafox.(?:com|me)/manga/(%s).*' % ID_REGEXP
ID_TO_URL = 'http://www.mangafox.me/manga/%s'
PAGES = {r'http://(?:.+\.)?mangafox.\w+/manga/[^/]+/[^/]+/([^/]+/)?(.+\.html)?': DisplayPage}