mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 11:29:12 +02:00
* include/javascript/OpenLayers/*: include the OpenLayers library into the Pandora file system for GIS use. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2278 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
26 lines
552 B
Python
Executable File
26 lines
552 B
Python
Executable File
#!/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."
|