OLD | NEW |
1 # coding: utf-8 | 1 # coding: utf-8 |
2 | 2 |
3 # This file is part of the Adblock Plus web scripts, | 3 # This file is part of the Adblock Plus web scripts, |
4 # Copyright (C) 2006-2013 Eyeo GmbH | 4 # Copyright (C) 2006-2013 Eyeo GmbH |
5 # | 5 # |
6 # Adblock Plus is free software: you can redistribute it and/or modify | 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 | 7 # it under the terms of the GNU General Public License version 3 as |
8 # published by the Free Software Foundation. | 8 # published by the Free Software Foundation. |
9 # | 9 # |
10 # Adblock Plus is distributed in the hope that it will be useful, | 10 # Adblock Plus is distributed in the hope that it will be useful, |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 md = markdown.Markdown(output="html5", extensions=["attr_list"]) | 165 md = markdown.Markdown(output="html5", extensions=["attr_list"]) |
166 md.preprocessors["html_block"].markdown_in_raw = True | 166 md.preprocessors["html_block"].markdown_in_raw = True |
167 | 167 |
168 result = self.insert_localized_strings(source, escapes) | 168 result = self.insert_localized_strings(source, escapes) |
169 result = md.convert(result) | 169 result = md.convert(result) |
170 result = re.sub(r"&#(\d+);", remove_unnecessary_entities, result) | 170 result = re.sub(r"&#(\d+);", remove_unnecessary_entities, result) |
171 result = self.process_links(result) | 171 result = self.process_links(result) |
172 return result | 172 return result |
173 | 173 |
174 class TemplateConverter(Converter): | 174 class TemplateConverter(Converter): |
| 175 class _SourceLoader(jinja2.BaseLoader): |
| 176 def __init__(self, source): |
| 177 self.source = source |
| 178 |
| 179 def get_source(self, environment, template): |
| 180 try: |
| 181 return self.source.read_include(template, "tmpl"), None, None |
| 182 except Exception: |
| 183 raise jinja2.TemplateNotFound(template) |
| 184 |
175 def __init__(self, *args, **kwargs): | 185 def __init__(self, *args, **kwargs): |
176 Converter.__init__(self, *args, **kwargs) | 186 Converter.__init__(self, *args, **kwargs) |
177 | 187 |
178 filters = { | 188 filters = { |
179 "translate": self.translate, | 189 "translate": self.translate, |
180 "linkify": self.linkify, | 190 "linkify": self.linkify, |
181 "toclist": self.toclist, | 191 "toclist": self.toclist, |
182 } | 192 } |
183 | 193 |
184 for filename in self._params["source"].list_files("filters"): | 194 for filename in self._params["source"].list_files("filters"): |
185 root, ext = os.path.splitext(filename) | 195 root, ext = os.path.splitext(filename) |
186 if ext.lower() != ".py": | 196 if ext.lower() != ".py": |
187 continue | 197 continue |
188 | 198 |
189 path = "%s/%s" % ("filters", filename) | 199 path = "%s/%s" % ("filters", filename) |
190 code = self._params["source"].read_file(path) | 200 code = self._params["source"].read_file(path) |
191 module = imp.new_module(root.replace("/", ".")) | 201 module = imp.new_module(root.replace("/", ".")) |
192 exec code in module.__dict__ | 202 exec code in module.__dict__ |
193 | 203 |
194 func = os.path.basename(root) | 204 func = os.path.basename(root) |
195 if not hasattr(module, func): | 205 if not hasattr(module, func): |
196 raise Exception("Expected function %s not found in filter file %s" % (fu
nc, filename)) | 206 raise Exception("Expected function %s not found in filter file %s" % (fu
nc, filename)) |
197 filters[func] = getattr(module, func) | 207 filters[func] = getattr(module, func) |
198 filters[func].module_ref = module # Prevent garbage collection | 208 filters[func].module_ref = module # Prevent garbage collection |
199 | 209 |
200 self._env = get_custom_template_environment(filters) | 210 self._env = get_custom_template_environment(filters, self._SourceLoader(self
._params["source"])) |
201 | 211 |
202 def get_html(self, source): | 212 def get_html(self, source): |
203 template = self._env.from_string(source) | 213 template = self._env.from_string(source) |
204 return template.render(self._params) | 214 return template.render(self._params) |
205 | 215 |
206 def translate(self, name, page=None, links=[]): | 216 def translate(self, name, page=None, links=[]): |
207 if page == None: | 217 if page == None: |
208 localedata = self._params["localedata"] | 218 localedata = self._params["localedata"] |
209 else: | 219 else: |
210 localedata = self._params["source"].read_locale(self._params["locale"], pa
ge) | 220 localedata = self._params["source"].read_locale(self._params["locale"], pa
ge) |
(...skipping 26 matching lines...) Expand all Loading... |
237 stack.pop() | 247 stack.pop() |
238 stack[-1]["subitems"].append(item) | 248 stack[-1]["subitems"].append(item) |
239 stack.append(item) | 249 stack.append(item) |
240 return structured | 250 return structured |
241 | 251 |
242 converters = { | 252 converters = { |
243 "raw": RawConverter, | 253 "raw": RawConverter, |
244 "md": MarkdownConverter, | 254 "md": MarkdownConverter, |
245 "tmpl": TemplateConverter, | 255 "tmpl": TemplateConverter, |
246 } | 256 } |
OLD | NEW |