diff --git a/weboob/backends/mangafox/__init__.py b/weboob/backends/mangafox/__init__.py
new file mode 100644
index 00000000..ff52fc38
--- /dev/null
+++ b/weboob/backends/mangafox/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+
+# Copyright(C) 2010-2011 Roger Philibert
+#
+# This file is part of weboob.
+#
+# weboob is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# weboob is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with weboob. If not, see .
+
+from .backend import MangafoxBackend
+
+__all__ = ['MangafoxBackend']
diff --git a/weboob/backends/mangafox/backend.py b/weboob/backends/mangafox/backend.py
new file mode 100644
index 00000000..ddb66c88
--- /dev/null
+++ b/weboob/backends/mangafox/backend.py
@@ -0,0 +1,97 @@
+# -*- coding: utf-8 -*-
+
+# Copyright(C) 2010-2011 Roger Philibert
+#
+# This file is part of weboob.
+#
+# weboob is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# weboob is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with weboob. If not, see .
+
+from __future__ import with_statement
+
+try:
+ import simplejson as json
+except ImportError:
+ import json
+
+import re
+
+from weboob.capabilities.gallery import ICapGallery, BaseGallery, BaseImage
+from weboob.tools.backend import BaseBackend
+from weboob.tools.browser import BaseBrowser, BasePage
+
+__all__ = ['MangafoxBackend']
+
+class DisplayPage(BasePage):
+ def get_page(self, gallery):
+ src = self.document.xpath("//img[@id='image']/attribute::src")[0]
+
+ return BaseImage(src,
+ gallery=gallery,
+ url=src)
+
+ def next_page_url(self):
+ return self.document.xpath("//a[img[@id='image']]/attribute::href")[0]
+
+ def is_last_page(self):
+ return len(self.document.xpath("//a[img[@id='image']][@href='javascript:void(0);']"))
+
+class MangafoxBrowser(BaseBrowser):
+ PAGES = { r'http://.+\.mangafox.\w+/manga/[^/]+/[^/]+/[^/]+/.+\.html': DisplayPage }
+
+ def iter_gallery_images(self, gallery):
+ self.location(gallery.url)
+ assert self.is_on_page(DisplayPage)
+
+ while not self.page.is_last_page():
+ yield self.page.get_page(gallery)
+ self.location(self.page.next_page_url())
+
+ def fill_image(self, image, fields):
+ if 'data' in fields:
+ image.data = self.readurl(image.url)
+
+class MangafoxBackend(BaseBackend, ICapGallery):
+ NAME = 'mangafox'
+ MAINTAINER = 'Roger Philibert'
+ EMAIL = 'roger.philibert@gmail.com'
+ VERSION = '0.9'
+ DESCRIPTION = 'Mangafox'
+ LICENSE = 'AGPLv3+'
+ BROWSER = MangafoxBrowser
+
+ def iter_gallery_images(self, gallery):
+ with self.browser:
+ return self.browser.iter_gallery_images(gallery)
+
+ def get_gallery(self, _id):
+ match = re.match(r'(?:(?:.+mangafox.com/manga)?/)?([^/]+/[^/]+/[^/]+)', _id)
+ if match is None:
+ return None
+
+ _id = match.group(1)
+
+ gallery = BaseGallery(_id, url=('http://www.mangafox.com/manga/%s' % _id))
+ with self.browser:
+ return gallery
+
+ def fill_gallery(self, gallery, fields):
+ gallery.title = gallery.id
+
+ def fill_image(self, image, fields):
+ with self.browser:
+ self.browser.fill_image(image, fields)
+
+ OBJECTS = {
+ BaseGallery: fill_gallery,
+ BaseImage: fill_image }