Left: | ||
Right: |
OLD | NEW |
---|---|
1 # This file is part of the Adblock Plus web scripts, | 1 # This file is part of the Adblock Plus web scripts, |
2 # Copyright (C) 2006-2016 Eyeo GmbH | 2 # Copyright (C) 2006-2016 Eyeo GmbH |
3 # | 3 # |
4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
7 # | 7 # |
8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
(...skipping 15 matching lines...) Expand all Loading... | |
26 | 26 |
27 | 27 |
28 class Source: | 28 class Source: |
29 def resolve_link(self, url, locale): | 29 def resolve_link(self, url, locale): |
30 parsed = urlparse.urlparse(url) | 30 parsed = urlparse.urlparse(url) |
31 page = parsed.path | 31 page = parsed.path |
32 if parsed.scheme != '' or page.startswith('/') or page.startswith('.'): | 32 if parsed.scheme != '' or page.startswith('/') or page.startswith('.'): |
33 # Not a page link | 33 # Not a page link |
34 return None, None | 34 return None, None |
35 | 35 |
36 if url.startswith('tel:'): | |
37 # Workaround for 'tel' scheme not recognized on some platforms. | |
Sebastian Noack
2017/02/24 14:32:08
If this is related to the Python version, as you s
Vasily Kuznetsov
2017/02/24 16:48:09
Done.
| |
38 return None, None | |
39 | |
36 if page == '' and url != '': | 40 if page == '' and url != '': |
37 # Page-relative link | 41 # Page-relative link |
38 return None, None | 42 return None, None |
39 | 43 |
40 config = self.read_config() | 44 config = self.read_config() |
41 default_locale = config.get('general', 'defaultlocale') | 45 default_locale = config.get('general', 'defaultlocale') |
42 default_page = config.get('general', 'defaultpage') | 46 default_page = config.get('general', 'defaultpage') |
43 alternative_page = '/'.join([page.rstrip('/'), default_page]).lstrip('/' ) | 47 alternative_page = '/'.join([page.rstrip('/'), default_page]).lstrip('/' ) |
44 | 48 |
45 if self.has_localizable_file(default_locale, page): | 49 if self.has_localizable_file(default_locale, page): |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
292 path = os.path.join(dir, filename) | 296 path = os.path.join(dir, filename) |
293 if os.path.isfile(path): | 297 if os.path.isfile(path): |
294 result.append(relpath + filename) | 298 result.append(relpath + filename) |
295 elif os.path.isdir(path): | 299 elif os.path.isdir(path): |
296 do_list(path, relpath + filename + '/') | 300 do_list(path, relpath + filename + '/') |
297 do_list(self.get_path(subdir), '') | 301 do_list(self.get_path(subdir), '') |
298 return result | 302 return result |
299 | 303 |
300 def get_cache_dir(self): | 304 def get_cache_dir(self): |
301 return os.path.join(self._dir, 'cache') | 305 return os.path.join(self._dir, 'cache') |
OLD | NEW |