Left: | ||
Right: |
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-2015 Eyeo GmbH | 4 # Copyright (C) 2006-2015 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
261 filters = { | 261 filters = { |
262 "translate": self.translate, | 262 "translate": self.translate, |
263 "linkify": self.linkify, | 263 "linkify": self.linkify, |
264 "toclist": self.toclist, | 264 "toclist": self.toclist, |
265 } | 265 } |
266 | 266 |
267 globals = { | 267 globals = { |
268 "get_string": self.get_string, | 268 "get_string": self.get_string, |
269 } | 269 } |
270 | 270 |
271 for filename in self._params["source"].list_files("filters"): | 271 for dirname, dictionary in [("filters", filters), ("globals", globals)]: |
272 root, ext = os.path.splitext(filename) | 272 for filename in self._params["source"].list_files(dirname): |
273 if ext.lower() != ".py": | 273 root, ext = os.path.splitext(filename) |
274 continue | 274 if ext.lower() != ".py": |
275 continue | |
275 | 276 |
276 path = "%s/%s" % ("filters", filename) | 277 path = "%s/%s" % (dirname, filename) |
277 code = self._params["source"].read_file(path) | 278 code = self._params["source"].read_file(path) |
278 module = imp.new_module(root.replace("/", ".")) | 279 module = imp.new_module(root.replace("/", ".")) |
279 exec code in module.__dict__ | 280 exec code in module.__dict__ |
280 | 281 |
281 func = os.path.basename(root) | 282 name = os.path.basename(root) |
282 if not hasattr(module, func): | 283 if not hasattr(module, name): |
283 raise Exception("Expected function %s not found in filter file %s" % (fu nc, filename)) | 284 raise Exception("Expected symbol %s not found in %s file %s" % (name, dirname, filename)) |
284 filters[func] = getattr(module, func) | 285 dictionary[name] = getattr(module, name) |
285 filters[func].module_ref = module # Prevent garbage collection | 286 if hasattr(dictionary[name], "__call__"): |
Sebastian Noack
2015/03/20 16:10:54
You might want to use the callable() built-in func
Wladimir Palant
2015/03/20 16:21:12
A function doesn't usually have a reference to its
Sebastian Noack
2015/03/20 16:26:54
Yeah, this actually make sense, since we create th
Wladimir Palant
2015/03/20 16:42:50
Done.
| |
287 dictionary[name].module_ref = module # Prevent garbage collection | |
286 | 288 |
287 self._env = jinja2.Environment(loader=self._SourceLoader(self._params["sourc e"]), autoescape=True) | 289 self._env = jinja2.Environment(loader=self._SourceLoader(self._params["sourc e"]), autoescape=True) |
288 self._env.filters.update(filters) | 290 self._env.filters.update(filters) |
289 self._env.globals.update(globals) | 291 self._env.globals.update(globals) |
290 | 292 |
291 def get_html(self, source): | 293 def get_html(self, source): |
292 template = self._env.from_string(source) | 294 template = self._env.from_string(source) |
293 module = template.make_module(self._params) | 295 module = template.make_module(self._params) |
294 for key, value in module.__dict__.iteritems(): | 296 for key, value in module.__dict__.iteritems(): |
295 if not key.startswith("_"): | 297 if not key.startswith("_"): |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
336 stack.pop() | 338 stack.pop() |
337 stack[-1]["subitems"].append(item) | 339 stack[-1]["subitems"].append(item) |
338 stack.append(item) | 340 stack.append(item) |
339 return structured | 341 return structured |
340 | 342 |
341 converters = { | 343 converters = { |
342 "html": RawConverter, | 344 "html": RawConverter, |
343 "md": MarkdownConverter, | 345 "md": MarkdownConverter, |
344 "tmpl": TemplateConverter, | 346 "tmpl": TemplateConverter, |
345 } | 347 } |
OLD | NEW |