OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from HTMLParser import HTMLParser | 5 from HTMLParser import HTMLParser |
6 import logging | 6 import logging |
7 import os | 7 import os |
8 import re | 8 import re |
9 | 9 |
10 from docs_server_utils import FormatKey | 10 from docs_server_utils import FormatKey |
11 from file_system import FileNotFoundError | 11 from file_system import FileNotFoundError |
12 import compiled_file_system as compiled_fs | |
13 from third_party.handlebar import Handlebar | 12 from third_party.handlebar import Handlebar |
14 | 13 |
15 # TODO(kalman): rename this HTMLDataSource or other, then have separate intro | 14 # TODO(kalman): rename this HTMLDataSource or other, then have separate intro |
16 # article data sources created as instances of it. | 15 # article data sources created as instances of it. |
17 | 16 |
18 _H1_REGEX = re.compile('<h1[^>.]*?>.*?</h1>', flags=re.DOTALL) | 17 _H1_REGEX = re.compile('<h1[^>.]*?>.*?</h1>', flags=re.DOTALL) |
19 | 18 |
20 class _IntroParser(HTMLParser): | 19 class _IntroParser(HTMLParser): |
21 ''' An HTML parser which will parse table of contents and page title info out | 20 ''' An HTML parser which will parse table of contents and page title info out |
22 of an intro. | 21 of an intro. |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 return self._cache.GetFromFile('%s/%s' % (base_path, path)) | 109 return self._cache.GetFromFile('%s/%s' % (base_path, path)) |
111 for base_path in self._base_paths: | 110 for base_path in self._base_paths: |
112 try: | 111 try: |
113 return get_from_base_path(base_path) | 112 return get_from_base_path(base_path) |
114 except FileNotFoundError: | 113 except FileNotFoundError: |
115 continue | 114 continue |
116 # Not found. Do the first operation again so that we get a stack trace - we | 115 # Not found. Do the first operation again so that we get a stack trace - we |
117 # know that it'll fail. | 116 # know that it'll fail. |
118 get_from_base_path(self._base_paths[0]) | 117 get_from_base_path(self._base_paths[0]) |
119 raise AssertionError() | 118 raise AssertionError() |
OLD | NEW |