This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Change these to your libgeos paths! | |
| GEOS_LIBRARY_PATH = '/opt/local/lib/libgeos_c.dylib' | |
| GDAL_LIBRARY_PATH = '/opt/local/lib/libgdal.dylib' | |
| GEOIP_LIBRARY_PATH = '/opt/local/lib/libGeoIP.dylib' | |
| GEOIP_PATH = '/opt/local/share/GeoIP/' | |
| # Disable compression if you need to debug JavaScript. You need to set both. | |
| COMPRESS = False | |
| ASSETS_DEBUG = True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # | |
| # fancyoutput.py - quick functions to make script output pretty | |
| # | |
| # by Ian Langworth, 2010 | |
| # | |
| # This code is in the public domain. | |
| # | |
| import sys |
NewerOlder