├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── backport.yml │ ├── build-linux.yml │ ├── build-windows.yml │ ├── check-crlf.yml │ └── irc_notify.yml ├── .gitignore ├── CMakeLists.txt ├── INSTALL.md ├── LICENSE.md ├── MIGRATION_GUIDE.md ├── Makefile.vc ├── README.md ├── Vagrantfile ├── apache ├── CMakeLists.txt ├── mod_mapcache-config.h.in └── mod_mapcache.c ├── astyle.sh ├── benchmark.py ├── cgi ├── CMakeLists.txt ├── mapcache-cgi-config.h.in └── mapcache.c ├── cmake ├── FindAPACHE.cmake ├── FindAPR.cmake ├── FindBerkeleyDB.cmake ├── FindFCGI.cmake ├── FindGDAL.cmake ├── FindGEOS.cmake ├── FindGEOTIFF.cmake ├── FindLMDB.cmake ├── FindMAPSERVER.cmake ├── FindPCRE.cmake ├── FindPCRE2.cmake ├── FindPixman.cmake ├── FindRIAK.cmake ├── FindRedis.cmake └── FindSQLITE.cmake ├── contrib └── mapcache_detail │ ├── CMakeLists.txt │ ├── mapcache_detail.c │ └── mapcache_detail_config.h.in ├── include ├── cJSON.h ├── errors.h ├── ezxml.h ├── mapcache-config.h.in ├── mapcache-version.h.in ├── mapcache.h ├── mapcache_services.h └── util.h ├── lib ├── axisorder.c ├── buffer.c ├── cJSON.c ├── cache.c ├── cache_bdb.c ├── cache_composite.c ├── cache_couchbase.c ├── cache_disk.c ├── cache_fallback.c ├── cache_lmdb.c ├── cache_memcache.c ├── cache_multitier.c ├── cache_redis.c ├── cache_rest.c ├── cache_riak.c ├── cache_sqlite.c ├── cache_tiff.c ├── cache_tokyocabinet.c ├── configuration.c ├── configuration_xml.c ├── connection_pool.c ├── core.c ├── dimension.c ├── dimension_es.c ├── dimension_pg.c ├── dimension_sqlite.c ├── dimension_time.c ├── ezxml.c ├── grid.c ├── hmac-sha.c ├── http.c ├── image.c ├── image_error.c ├── imageio.c ├── imageio_jpeg.c ├── imageio_mixed.c ├── imageio_png.c ├── imageio_raw.c ├── lock.c ├── ruleset.c ├── service_demo.c ├── service_kml.c ├── service_mapguide.c ├── service_tms.c ├── service_ve.c ├── service_wms.c ├── service_wmts.c ├── services.c ├── source.c ├── source_dummy.c ├── source_fallback.c ├── source_gdal.c ├── source_mapserver.c ├── source_wms.c ├── strptime.c ├── tileset.c └── util.c ├── mapcache.xml ├── mapcache.xml.sample ├── mod_geocache.doxyfile ├── nginx ├── CMakeLists.txt ├── README ├── config.in ├── nginx.conf └── ngx_http_mapcache_module.c ├── nmake.opt ├── packaging └── centos │ └── mapcache.spec ├── release-notes.sh ├── release.sh ├── scripts └── vagrant │ ├── mapcache.sh │ ├── packages.sh │ └── virtualbox-fix.sh ├── static ├── bench_cached.png ├── bench_merging.png ├── benchmark.png ├── geocache.json └── geocache.yaml ├── tests ├── data │ ├── mapcache.conf │ ├── mapcache.load │ ├── mapcache.xml │ ├── mapcache_backend_template.xml │ └── world.tif ├── expected │ ├── wms_capabilities.xml │ └── wmts_capabilities.xml ├── mcpython │ ├── generate_synthetic_geotiff.py │ ├── requirements.txt │ ├── test_disk_cache.py │ ├── test_sqlite_cache.py │ └── verification_core.py ├── run.sh ├── run_tests.sh ├── setup.sh └── travis_setup.sh └── util ├── CMakeLists.txt ├── mapcache-util-config.h.in └── mapcache_seed.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/check-crlf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/workflows/check-crlf.yml -------------------------------------------------------------------------------- /.github/workflows/irc_notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.github/workflows/irc_notify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/Makefile.vc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/Vagrantfile -------------------------------------------------------------------------------- /apache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/apache/CMakeLists.txt -------------------------------------------------------------------------------- /apache/mod_mapcache-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/apache/mod_mapcache-config.h.in -------------------------------------------------------------------------------- /apache/mod_mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/apache/mod_mapcache.c -------------------------------------------------------------------------------- /astyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/astyle.sh -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/benchmark.py -------------------------------------------------------------------------------- /cgi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cgi/CMakeLists.txt -------------------------------------------------------------------------------- /cgi/mapcache-cgi-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cgi/mapcache-cgi-config.h.in -------------------------------------------------------------------------------- /cgi/mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cgi/mapcache.c -------------------------------------------------------------------------------- /cmake/FindAPACHE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindAPACHE.cmake -------------------------------------------------------------------------------- /cmake/FindAPR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindAPR.cmake -------------------------------------------------------------------------------- /cmake/FindBerkeleyDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindBerkeleyDB.cmake -------------------------------------------------------------------------------- /cmake/FindFCGI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindFCGI.cmake -------------------------------------------------------------------------------- /cmake/FindGDAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindGDAL.cmake -------------------------------------------------------------------------------- /cmake/FindGEOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindGEOS.cmake -------------------------------------------------------------------------------- /cmake/FindGEOTIFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindGEOTIFF.cmake -------------------------------------------------------------------------------- /cmake/FindLMDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindLMDB.cmake -------------------------------------------------------------------------------- /cmake/FindMAPSERVER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindMAPSERVER.cmake -------------------------------------------------------------------------------- /cmake/FindPCRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindPCRE.cmake -------------------------------------------------------------------------------- /cmake/FindPCRE2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindPCRE2.cmake -------------------------------------------------------------------------------- /cmake/FindPixman.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindPixman.cmake -------------------------------------------------------------------------------- /cmake/FindRIAK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindRIAK.cmake -------------------------------------------------------------------------------- /cmake/FindRedis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindRedis.cmake -------------------------------------------------------------------------------- /cmake/FindSQLITE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/cmake/FindSQLITE.cmake -------------------------------------------------------------------------------- /contrib/mapcache_detail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/contrib/mapcache_detail/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/mapcache_detail/mapcache_detail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/contrib/mapcache_detail/mapcache_detail.c -------------------------------------------------------------------------------- /contrib/mapcache_detail/mapcache_detail_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/contrib/mapcache_detail/mapcache_detail_config.h.in -------------------------------------------------------------------------------- /include/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/cJSON.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/ezxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/ezxml.h -------------------------------------------------------------------------------- /include/mapcache-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/mapcache-config.h.in -------------------------------------------------------------------------------- /include/mapcache-version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/mapcache-version.h.in -------------------------------------------------------------------------------- /include/mapcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/mapcache.h -------------------------------------------------------------------------------- /include/mapcache_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/mapcache_services.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/include/util.h -------------------------------------------------------------------------------- /lib/axisorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/axisorder.c -------------------------------------------------------------------------------- /lib/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/buffer.c -------------------------------------------------------------------------------- /lib/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cJSON.c -------------------------------------------------------------------------------- /lib/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache.c -------------------------------------------------------------------------------- /lib/cache_bdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_bdb.c -------------------------------------------------------------------------------- /lib/cache_composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_composite.c -------------------------------------------------------------------------------- /lib/cache_couchbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_couchbase.c -------------------------------------------------------------------------------- /lib/cache_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_disk.c -------------------------------------------------------------------------------- /lib/cache_fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_fallback.c -------------------------------------------------------------------------------- /lib/cache_lmdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_lmdb.c -------------------------------------------------------------------------------- /lib/cache_memcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_memcache.c -------------------------------------------------------------------------------- /lib/cache_multitier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_multitier.c -------------------------------------------------------------------------------- /lib/cache_redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_redis.c -------------------------------------------------------------------------------- /lib/cache_rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_rest.c -------------------------------------------------------------------------------- /lib/cache_riak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_riak.c -------------------------------------------------------------------------------- /lib/cache_sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_sqlite.c -------------------------------------------------------------------------------- /lib/cache_tiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_tiff.c -------------------------------------------------------------------------------- /lib/cache_tokyocabinet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/cache_tokyocabinet.c -------------------------------------------------------------------------------- /lib/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/configuration.c -------------------------------------------------------------------------------- /lib/configuration_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/configuration_xml.c -------------------------------------------------------------------------------- /lib/connection_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/connection_pool.c -------------------------------------------------------------------------------- /lib/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/core.c -------------------------------------------------------------------------------- /lib/dimension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/dimension.c -------------------------------------------------------------------------------- /lib/dimension_es.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/dimension_es.c -------------------------------------------------------------------------------- /lib/dimension_pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/dimension_pg.c -------------------------------------------------------------------------------- /lib/dimension_sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/dimension_sqlite.c -------------------------------------------------------------------------------- /lib/dimension_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/dimension_time.c -------------------------------------------------------------------------------- /lib/ezxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/ezxml.c -------------------------------------------------------------------------------- /lib/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/grid.c -------------------------------------------------------------------------------- /lib/hmac-sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/hmac-sha.c -------------------------------------------------------------------------------- /lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/http.c -------------------------------------------------------------------------------- /lib/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/image.c -------------------------------------------------------------------------------- /lib/image_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/image_error.c -------------------------------------------------------------------------------- /lib/imageio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/imageio.c -------------------------------------------------------------------------------- /lib/imageio_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/imageio_jpeg.c -------------------------------------------------------------------------------- /lib/imageio_mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/imageio_mixed.c -------------------------------------------------------------------------------- /lib/imageio_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/imageio_png.c -------------------------------------------------------------------------------- /lib/imageio_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/imageio_raw.c -------------------------------------------------------------------------------- /lib/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/lock.c -------------------------------------------------------------------------------- /lib/ruleset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/ruleset.c -------------------------------------------------------------------------------- /lib/service_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_demo.c -------------------------------------------------------------------------------- /lib/service_kml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_kml.c -------------------------------------------------------------------------------- /lib/service_mapguide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_mapguide.c -------------------------------------------------------------------------------- /lib/service_tms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_tms.c -------------------------------------------------------------------------------- /lib/service_ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_ve.c -------------------------------------------------------------------------------- /lib/service_wms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_wms.c -------------------------------------------------------------------------------- /lib/service_wmts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/service_wmts.c -------------------------------------------------------------------------------- /lib/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/services.c -------------------------------------------------------------------------------- /lib/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source.c -------------------------------------------------------------------------------- /lib/source_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source_dummy.c -------------------------------------------------------------------------------- /lib/source_fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source_fallback.c -------------------------------------------------------------------------------- /lib/source_gdal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source_gdal.c -------------------------------------------------------------------------------- /lib/source_mapserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source_mapserver.c -------------------------------------------------------------------------------- /lib/source_wms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/source_wms.c -------------------------------------------------------------------------------- /lib/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/strptime.c -------------------------------------------------------------------------------- /lib/tileset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/tileset.c -------------------------------------------------------------------------------- /lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/lib/util.c -------------------------------------------------------------------------------- /mapcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/mapcache.xml -------------------------------------------------------------------------------- /mapcache.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/mapcache.xml.sample -------------------------------------------------------------------------------- /mod_geocache.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/mod_geocache.doxyfile -------------------------------------------------------------------------------- /nginx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nginx/CMakeLists.txt -------------------------------------------------------------------------------- /nginx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nginx/README -------------------------------------------------------------------------------- /nginx/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nginx/config.in -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/ngx_http_mapcache_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nginx/ngx_http_mapcache_module.c -------------------------------------------------------------------------------- /nmake.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/nmake.opt -------------------------------------------------------------------------------- /packaging/centos/mapcache.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/packaging/centos/mapcache.spec -------------------------------------------------------------------------------- /release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/release-notes.sh -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/release.sh -------------------------------------------------------------------------------- /scripts/vagrant/mapcache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/scripts/vagrant/mapcache.sh -------------------------------------------------------------------------------- /scripts/vagrant/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/scripts/vagrant/packages.sh -------------------------------------------------------------------------------- /scripts/vagrant/virtualbox-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/scripts/vagrant/virtualbox-fix.sh -------------------------------------------------------------------------------- /static/bench_cached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/static/bench_cached.png -------------------------------------------------------------------------------- /static/bench_merging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/static/bench_merging.png -------------------------------------------------------------------------------- /static/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/static/benchmark.png -------------------------------------------------------------------------------- /static/geocache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/static/geocache.json -------------------------------------------------------------------------------- /static/geocache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/static/geocache.yaml -------------------------------------------------------------------------------- /tests/data/mapcache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/data/mapcache.conf -------------------------------------------------------------------------------- /tests/data/mapcache.load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/data/mapcache.load -------------------------------------------------------------------------------- /tests/data/mapcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/data/mapcache.xml -------------------------------------------------------------------------------- /tests/data/mapcache_backend_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/data/mapcache_backend_template.xml -------------------------------------------------------------------------------- /tests/data/world.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/data/world.tif -------------------------------------------------------------------------------- /tests/expected/wms_capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/expected/wms_capabilities.xml -------------------------------------------------------------------------------- /tests/expected/wmts_capabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/expected/wmts_capabilities.xml -------------------------------------------------------------------------------- /tests/mcpython/generate_synthetic_geotiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/mcpython/generate_synthetic_geotiff.py -------------------------------------------------------------------------------- /tests/mcpython/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pytest 3 | -------------------------------------------------------------------------------- /tests/mcpython/test_disk_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/mcpython/test_disk_cache.py -------------------------------------------------------------------------------- /tests/mcpython/test_sqlite_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/mcpython/test_sqlite_cache.py -------------------------------------------------------------------------------- /tests/mcpython/verification_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/mcpython/verification_core.py -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/run_tests.sh -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/travis_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/tests/travis_setup.sh -------------------------------------------------------------------------------- /util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/util/CMakeLists.txt -------------------------------------------------------------------------------- /util/mapcache-util-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/util/mapcache-util-config.h.in -------------------------------------------------------------------------------- /util/mapcache_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MapServer/mapcache/HEAD/util/mapcache_seed.c --------------------------------------------------------------------------------