1 #!/usr/bin/env python 2 # 3 # Copyright (C) 2010 Google Inc. All rights reserved. 4 # 5 # Redistribution and use in source and binary forms, with or without 6 # modification, are permitted provided that the following conditions are 7 # met: 8 # 9 # * Redistributions of source code must retain the above copyright 10 # notice, this list of conditions and the following disclaimer. 11 # * Redistributions in binary form must reproduce the above 12 # copyright notice, this list of conditions and the following disclaimer 13 # in the documentation and/or other materials provided with the 14 # distribution. 15 # * Neither the name of Google Inc. nor the names of its 16 # contributors may be used to endorse or promote products derived from 17 # this software without specific prior written permission. 18 # 19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 # 31 32 import os.path 33 import sys 34 35 36 def GenerateIncludeTag(resource_path): 37 (dir_name, file_name) = os.path.split(resource_path) 38 if (file_name.endswith('.js')): 39 return ' <script type="text/javascript" src="%s"></script>\n' % file_name 40 elif (file_name.endswith('.css')): 41 return ' <link rel="stylesheet" type="text/css" href="%s">\n' % file_name 42 else: 43 assert resource_path 44 45 46 def main(argv): 47 48 if len(argv) < 4: 49 print('usage: %s inspector_html devtools_html debug' 50 ' css_and_js_files_list' % argv[0]) 51 return 1 52 53 # The first argument is ignored. We put 'webkit.gyp' in the inputs list 54 # for this script, so every time the list of script gets changed, our html 55 # file is rebuilt. 56 inspector_html_name = argv[1] 57 devtools_html_name = argv[2] 58 debug = argv[3] != '0' 59 inspector_html = open(inspector_html_name, 'r') 60 devtools_html = open(devtools_html_name, 'w') 61 62 for line in inspector_html: 63 if not debug and '<script ' in line: 64 continue 65 if not debug and '<link ' in line: 66 continue 67 if '</head>' in line: 68 if debug: 69 for resource in argv[4:]: 70 devtools_html.write(GenerateIncludeTag(resource)) 71 else: 72 devtools_html.write(GenerateIncludeTag("devTools.css")) 73 devtools_html.write(GenerateIncludeTag("DevTools.js")) 74 devtools_html.write(line) 75 76 devtools_html.close() 77 inspector_html.close() 78 79 # Touch output file directory to make sure that Xcode will copy 80 # modified resource files. 81 if sys.platform == 'darwin': 82 output_dir_name = os.path.dirname(devtools_html_name) 83 os.utime(output_dir_name, None) 84 85 if __name__ == '__main__': 86 sys.exit(main(sys.argv)) 87