OLD | NEW |
| (Empty) |
1 #!/usr/bin/env python | |
2 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
3 # for details. All rights reserved. Use of this source code is governed by a | |
4 # BSD-style license that can be found in the LICENSE file. | |
5 | |
6 '''Tool for removing dart:html and related imports from a library. | |
7 | |
8 Copy SOURCE to TARGET, removing any lines that import dart:html. | |
9 | |
10 Usage: | |
11 python tools/remove_html_imports.py SOURCE TARGET | |
12 ''' | |
13 | |
14 import os | |
15 import re | |
16 import shutil | |
17 import sys | |
18 | |
19 HTML_IMPORT = re.compile(r'''^import ["']dart:(html|html_common|indexed_db''' | |
20 r'''|js|svg|web_(audio|gl|sql))["'];$''', | |
21 flags=re.MULTILINE) | |
22 | |
23 def main(argv): | |
24 source = argv[1] | |
25 target = argv[2] | |
26 shutil.rmtree(target) | |
27 shutil.copytree(source, target, ignore=shutil.ignore_patterns('.svn')) | |
28 | |
29 for root, subFolders, files in os.walk(target): | |
30 for path in files: | |
31 if not path.endswith('.dart'): next | |
32 with open(os.path.join(root, path), 'r+') as f: | |
33 contents = f.read() | |
34 f.seek(0) | |
35 f.truncate() | |
36 f.write(HTML_IMPORT.sub(r'// import "dart:\1";', contents)) | |
37 | |
38 if __name__ == '__main__': | |
39 sys.exit(main(sys.argv)) | |
OLD | NEW |