├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── gmaps_example.html ├── jquery.timezone-picker.js ├── openlayers_example.html ├── run.sh ├── scripts ├── dbfUtils.py ├── gen_json.py └── shpUtils.py ├── setup_example.sh └── tz_json.tgz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/README.md -------------------------------------------------------------------------------- /gmaps_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/gmaps_example.html -------------------------------------------------------------------------------- /jquery.timezone-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/jquery.timezone-picker.js -------------------------------------------------------------------------------- /openlayers_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/openlayers_example.html -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | (cd example_site;python -m SimpleHTTPServer) 3 | -------------------------------------------------------------------------------- /scripts/dbfUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/scripts/dbfUtils.py -------------------------------------------------------------------------------- /scripts/gen_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/scripts/gen_json.py -------------------------------------------------------------------------------- /scripts/shpUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/scripts/shpUtils.py -------------------------------------------------------------------------------- /setup_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/setup_example.sh -------------------------------------------------------------------------------- /tz_json.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dosx/timezone-picker/HEAD/tz_json.tgz --------------------------------------------------------------------------------