Spring/summer cleaning - disable inactive labs projects, remove Amazon AWS references
[busui.git] / labs / buildUncompressed.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
 
import sys
sys.path.append("../tools")
 
import jsmin, mergejs
 
sourceDirectory = "../lib"
configFilename = "full.cfg"
outputFilename = "OpenLayers.js"
 
if len(sys.argv) > 1:
    configFilename = sys.argv[1] + ".cfg"
if len(sys.argv) > 2:
    outputFilename = sys.argv[2]
 
print "Merging libraries."
merged = mergejs.run(sourceDirectory, None, configFilename)
print "Adding license file."
merged = file("license.txt").read() + merged
 
print "Writing to %s." % outputFilename
file(outputFilename, "w").write(merged)
 
print "Done."