| #!/usr/bin/python |
| |
| import httplib, urllib, subprocess, sys, config |
| |
| # Read all the Javascript files. |
| js_code = [('js_code', open(f).read()) for f in config.js_in_files] |
| |
| # Read all the CSS files and concatenate them. |
| css_code = ''.join(open(f).read() for f in config.css_in_files) |
| |
| # Define the parameters for the POST request and encode them in |
| # a URL-safe format. |
| params = urllib.urlencode(js_code + [ |
| ('language', 'ECMASCRIPT5'), |
| ('compilation_level', 'SIMPLE_OPTIMIZATIONS'), |
| ('output_format', 'text'), |
| ('output_info', 'compiled_code'), |
| ]) |
| |
| # Always use the following value for the Content-type header. |
| headers = { "Content-type": "application/x-www-form-urlencoded" } |
| conn = httplib.HTTPConnection('closure-compiler.appspot.com') |
| conn.request('POST', '/compile', params, headers) |
| response = conn.getresponse() |
| data = response.read() |
| conn.close |
| |
| if response.status != 200: |
| print sys.stderr, "error returned from JS compile service: %d" % response.status |
| sys.exit(1) |
| |
| open(config.js_out_file, 'wt').write(data) |
| print 'Generated %s. Check the file to see if errors occured!' % config.js_out_file |
| |
| yuic_args = ['yui-compressor', '--type', 'css', '-o', config.css_out_file] |
| p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE) |
| p.communicate(input=css_code) |
| if p.wait() != 0: |
| print 'Failed to generate %s.' % config.css_out_file |
| sys.exit(1) |
| |
| print 'Generated %s.' % config.css_out_file |