OLD | NEW |
(Empty) | |
| 1 # coding: utf-8 |
| 2 |
| 3 # This file is part of the Adblock Plus web scripts, |
| 4 # Copyright (C) 2006-2013 Eyeo GmbH |
| 5 # |
| 6 # Adblock Plus is free software: you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License version 3 as |
| 8 # published by the Free Software Foundation. |
| 9 # |
| 10 # Adblock Plus is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. |
| 14 # |
| 15 # You should have received a copy of the GNU General Public License |
| 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 |
| 18 from sitescripts.web.converters import converters, TemplateConverter |
| 19 |
| 20 def process_page(source, locale, page, format): |
| 21 params = { |
| 22 "source": source, |
| 23 "template": "default", |
| 24 "locale": locale, |
| 25 "title": "title", |
| 26 "page": page, |
| 27 "pagedata": source.read_page(page, format), |
| 28 "toc": True, |
| 29 "config": source.read_config(), |
| 30 } |
| 31 |
| 32 try: |
| 33 converter = converters[format](params) |
| 34 except KeyError: |
| 35 raise Exception("Page %s uses unknown format %s" % (page, format)) |
| 36 |
| 37 # Note: The converter might change some parameters so we can only read in |
| 38 # template and locale data here. |
| 39 params["templatedata"] = source.read_template(params["template"]) |
| 40 params["localedata"] = source.read_locale(params["locale"], params["page"]) |
| 41 template_converter = TemplateConverter(params, key="templatedata") |
| 42 |
| 43 params["available_locales"] = sorted( |
| 44 filter( |
| 45 lambda locale: source.has_locale(locale, params["page"]), |
| 46 source.list_locales() |
| 47 ) |
| 48 ) |
| 49 |
| 50 params["head"], params["body"] = map(lambda s: s.decode("utf-8"), converter()) |
| 51 return template_converter() |
OLD | NEW |