MapProxy 2.0.2__tar.gz → 2.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {MapProxy-2.0.2 → MapProxy-2.1.1}/CHANGES.txt +36 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/PKG-INFO +42 -39
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/SOURCES.txt +7 -12
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/entry_points.txt +1 -0
- MapProxy-2.1.1/MapProxy.egg-info/requires.txt +7 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/PKG-INFO +42 -39
- MapProxy-2.0.2/README.rst → MapProxy-2.1.1/README.md +1 -5
- MapProxy-2.1.1/doc/_static/logo_title.png +0 -0
- MapProxy-2.1.1/doc/_static/mapproxy.css +49 -0
- MapProxy-2.1.1/doc/_templates/versions.html +27 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/auth.rst +30 -19
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/caches.rst +19 -15
- MapProxy-2.1.1/doc/conf.py +57 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/configuration.rst +202 -92
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/configuration_examples.rst +104 -46
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/coverages.rst +18 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/decorate_img.rst +6 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/deployment.rst +17 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/index.rst +10 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/inspire.rst +13 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/install.rst +7 -13
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/install_docker.rst +8 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/labeling.rst +18 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/mapproxy_util.rst +9 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/mapproxy_util_autoconfig.rst +15 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/seed.rst +33 -15
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/services.rst +29 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/sources.rst +31 -15
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/tutorial.yaml +6 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/cache_conf.yaml +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/grid_conf.yaml +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/merged_conf.yaml +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/meta_conf.yaml +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/simple_conf.yaml +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/base.py +9 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/compact.py +25 -26
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/couchdb.py +13 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/dummy.py +2 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/file.py +11 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/geopackage.py +103 -85
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/legend.py +4 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/mbtiles.py +23 -20
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/meta.py +7 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/path.py +23 -12
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/redis.py +10 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/renderd.py +10 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/riak.py +9 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/s3.py +12 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/tile.py +63 -43
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/arcgis.py +10 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/cgi.py +11 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/http.py +22 -42
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/log.py +5 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/tile.py +15 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/wms.py +9 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/compat/image.py +8 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/__init__.py +1 -1
- MapProxy-2.1.1/mapproxy/config/config-schema.json +813 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/config.py +20 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/coverage.py +3 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/defaults.py +38 -38
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/loader.py +266 -194
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config/spec.py +62 -62
- MapProxy-2.1.1/mapproxy/config/validator.py +242 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/full_example.yaml +6 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/mapproxy.yaml +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/exception.py +26 -19
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/featureinfo.py +14 -15
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/grid.py +63 -34
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/__init__.py +27 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/mask.py +7 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/merge.py +11 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/message.py +14 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/opts.py +10 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/tile.py +9 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/transform.py +14 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/layer.py +37 -18
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/multiapp.py +7 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/proj.py +21 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/__init__.py +4 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/arcgis.py +22 -13
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/base.py +26 -33
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/tile.py +5 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/wms/__init__.py +63 -27
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/wms/exception.py +9 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/request/wmts.py +23 -17
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/response.py +11 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/app.py +9 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/caches.py +2 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/geopackage.py +27 -26
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/seeds.py +2 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/sources.py +4 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/utils.py +34 -29
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/defrag.py +18 -15
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/export.py +33 -29
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/grids.py +25 -15
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/scales.py +18 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/util.py +24 -20
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/wms_capabilities.py +22 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/cachelock.py +10 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/cleanup.py +15 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/config.py +31 -19
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/script.py +17 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/seeder.py +43 -30
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/spec.py +2 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/seed/util.py +20 -8
- {MapProxy-2.0.2/mapproxy/util/ext → MapProxy-2.1.1/mapproxy/service}/__init__.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/base.py +7 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/demo.py +17 -16
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/kml.py +30 -23
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/ows.py +1 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/template_helper.py +6 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/capabilities_demo.html +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/demo.html +1 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/tms_demo.html +16 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/wms_demo.html +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/wmts_demo.html +7 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/tile.py +28 -23
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/wms.py +74 -57
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/wmts.py +36 -30
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/source/__init__.py +9 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/source/arcgis.py +1 -1
- MapProxy-2.1.1/mapproxy/source/error.py +40 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/source/mapnik.py +14 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/source/tile.py +6 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/source/wms.py +16 -13
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/srs.py +30 -22
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/template.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/conftest.py +1 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/helper.py +20 -12
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/http.py +50 -33
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/image.py +20 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/mocker.py +48 -29
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/coverage.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/demo.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/formats.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/inspire.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/inspire_full.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/layer.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/legendgraphic.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/minimal_cgi.py +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/mixed_mode.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/multi_cache_layers.yaml +9 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/scalehints.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seedonly.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util-conf-wms-111-cap.xml +16 -16
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util_wms_capabilities111.xml +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util_wms_capabilities130.xml +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/wms_versions.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/wmts.yaml +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_arcgis.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_auth.py +1 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_behind_proxy.py +12 -12
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_coverage.py +8 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_demo_with_extra_service.py +5 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_dimensions.py +27 -26
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_formats.py +4 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_mapnik.py +3 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_mapserver.py +2 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_mixed_mode_format.py +9 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_multi_cache_layers.py +8 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_refresh.py +2 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_response_headers.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_seed.py +50 -47
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_seed_only.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_util_conf.py +39 -32
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wms.py +6 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wmts.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wmts_dimensions.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wmts_restful.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_xslt_featureinfo.py +2 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/test_http_helper.py +10 -12
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_async.py +8 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_auth.py +19 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache.py +162 -111
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_azureblob.py +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_compact.py +20 -21
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_couchdb.py +7 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_geopackage.py +15 -13
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_redis.py +9 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_riak.py +4 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_s3.py +10 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_cache_tile.py +26 -24
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_client.py +42 -33
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_client_arcgis.py +15 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_client_cgi.py +11 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_collections.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_concat_legends.py +7 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_conf_loader.py +198 -51
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_conf_validator.py +42 -31
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_config.py +10 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_decorate_img.py +9 -9
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_exceptions.py +19 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_featureinfo.py +22 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_file_lock_load.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_geom.py +48 -35
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_grid.py +141 -120
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_image.py +3 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_image_messages.py +1 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_isodate.py +44 -48
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_multiapp.py +2 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_ogr_reader.py +1 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_request.py +7 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_response.py +1 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_seed.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_seed_cachelock.py +2 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_srs.py +8 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_tilefilter.py +3 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_timeutils.py +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_utils.py +30 -30
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_yaml.py +1 -2
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/tilefilter.py +9 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/async_.py +13 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/collections.py +6 -4
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/coverage.py +11 -3
- {MapProxy-2.0.2/mapproxy/service → MapProxy-2.1.1/mapproxy/util/ext}/__init__.py +3 -3
- MapProxy-2.1.1/mapproxy/util/ext/dictspec/__init__.py +1 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/dictspec/spec.py +14 -7
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/dictspec/test/test_validator.py +14 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/dictspec/validator.py +16 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/local.py +8 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/lockfile.py +3 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/odict.py +5 -14
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/serving.py +23 -40
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/tempita/__init__.py +41 -122
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/tempita/_looper.py +1 -1
- MapProxy-2.1.1/mapproxy/util/ext/tempita/string_utils.py +24 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/__init__.py +1 -1
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/duration.py +29 -26
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/parse.py +25 -23
- MapProxy-2.1.1/mapproxy/util/ext/wmsparse/test/__init__.py +0 -0
- MapProxy-2.1.1/mapproxy/util/ext/wmsparse/test/test_parse.py +111 -0
- MapProxy-2.0.2/mapproxy/util/ext/wmsparse/test/wms-omniscale-111.xml → MapProxy-2.1.1/mapproxy/util/ext/wmsparse/test/wms-example-111.xml +16 -16
- MapProxy-2.0.2/mapproxy/util/ext/wmsparse/test/wms-omniscale-130.xml → MapProxy-2.1.1/mapproxy/util/ext/wmsparse/test/wms-example-130.xml +16 -16
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/util.py +26 -24
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/fs.py +14 -6
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/geom.py +39 -23
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/lib.py +12 -10
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/lock.py +8 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ogr.py +24 -8
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/py.py +5 -11
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/times.py +6 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/yaml.py +5 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/version.py +5 -3
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/wsgiapp.py +9 -5
- {MapProxy-2.0.2 → MapProxy-2.1.1}/requirements-tests.txt +8 -10
- MapProxy-2.1.1/setup.cfg +4 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/setup.py +19 -9
- MapProxy-2.0.2/MapProxy.egg-info/requires.txt +0 -2
- MapProxy-2.0.2/doc/Makefile +0 -95
- MapProxy-2.0.2/doc/_static/mapproxy.css +0 -62
- MapProxy-2.0.2/doc/_templates/layout.html +0 -38
- MapProxy-2.0.2/doc/_templates/navbar.html +0 -32
- MapProxy-2.0.2/doc/_templates/toctree.html +0 -1
- MapProxy-2.0.2/doc/conf.py +0 -204
- MapProxy-2.0.2/doc/mapproxy_2.rst +0 -47
- MapProxy-2.0.2/mapproxy/compat/__init__.py +0 -46
- MapProxy-2.0.2/mapproxy/compat/itertools.py +0 -29
- MapProxy-2.0.2/mapproxy/compat/modules.py +0 -13
- MapProxy-2.0.2/mapproxy/config/validator.py +0 -239
- MapProxy-2.0.2/mapproxy/source/error.py +0 -39
- MapProxy-2.0.2/mapproxy/util/ext/dictspec/__init__.py +0 -1
- MapProxy-2.0.2/mapproxy/util/ext/tempita/compat3.py +0 -46
- MapProxy-2.0.2/mapproxy/util/ext/wmsparse/test/test_parse.py +0 -162
- MapProxy-2.0.2/setup.cfg +0 -13
- {MapProxy-2.0.2 → MapProxy-2.1.1}/AUTHORS.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/COPYING.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/LICENSE.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MANIFEST.in +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/dependency_links.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/not-zip-safe +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/MapProxy.egg-info/top_level.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/GM.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/_static/logo.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/caching_layer_dimensions.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/development.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/bicubic.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/bilinear.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-dynamic.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-meta-buffer.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-metatiling-buffer.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-metatiling.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-no-clip.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-no-placement.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-partial-false.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/labeling-repeated.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/mapnik-webmerc-hq.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/mapnik-webmerc.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/mapproxy-demo.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/imgs/nearest.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/install_osgeo4w.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/install_windows.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/plugins.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/tutorial.rst +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/doc/yaml/seed.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/cache/azureblob.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/client/__init__.py +0 -0
- {MapProxy-2.0.2/mapproxy/config_template → MapProxy-2.1.1/mapproxy/compat}/__init__.py +0 -0
- {MapProxy-2.0.2/mapproxy/image/fonts → MapProxy-2.1.1/mapproxy/config_template}/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/config.wsgi +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/full_seed_example.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/log.ini +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/config_template/base_config/seed.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/fonts/DejaVuSans.ttf +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/fonts/DejaVuSansMono.ttf +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/image/fonts/LICENSE +0 -0
- {MapProxy-2.0.2/mapproxy/script → MapProxy-2.1.1/mapproxy/image/fonts}/__init__.py +0 -0
- {MapProxy-2.0.2/mapproxy/script/conf → MapProxy-2.1.1/mapproxy/script}/__init__.py +0 -0
- {MapProxy-2.0.2/mapproxy/seed → MapProxy-2.1.1/mapproxy/script/conf}/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/script/conf/layers.py +1 -1
- {MapProxy-2.0.2/mapproxy/test → MapProxy-2.1.1/mapproxy/seed}/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/openlayers-demo.cfg +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/blank.gif +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/east-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/north-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/south-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/west-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/zoom-minus-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/zoom-plus-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/img/zoom-world-mini.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/logo.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/ol.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/ol.js +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/proj4.min.js +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/proj4defs.js +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/site.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/theme/default/framedCloud.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/theme/default/google.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/theme/default/ie6-style.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static/theme/default/style.css +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/demo/static.html +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/tms_capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/tms_exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/tms_root_resource.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/tms_tilemap_capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms100capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms100exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms110capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms110exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms111capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms111exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms130capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wms130exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wmts100capabilities.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/service/templates/wmts100exception.xml +0 -0
- {MapProxy-2.0.2/mapproxy/test/unit → MapProxy-2.1.1/mapproxy/test}/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/common.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_bul.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_cze.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_dan.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_dut.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_eng.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_est.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_fin.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_fre.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_ger.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_gle.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_gre.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_hun.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_ita.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_lav.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_lit.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_mlt.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_pol.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_por.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_rum.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_slo.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_slv.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_spa.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/enums/enum_swe.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/common/1.0/network.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/inspire/inspire_vs/1.0/inspire_vs.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/kml/2.2.0/ReadMe.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/kml/2.2.0/atom-author-link.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/kml/2.2.0/ogckml22.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/kml/2.2.0/xAL.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/ReadMe.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/ows19115subset.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsAll.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsCommon.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsContents.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsDataIdentification.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsDomainType.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsExceptionReport.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsGetCapabilities.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsGetResourceByID.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsInputOutputData.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsManifest.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsOperationsMetadata.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsServiceIdentification.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/ows/1.1.0/owsServiceProvider.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/sld/1.1.0/sld_capabilities.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/OGC-exception.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/WMS_DescribeLayerResponse.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.3.0/ReadMe.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/OGC-exception.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_DescribeLayerResponse.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_MS_Capabilities.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/WMS_exception_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.dtd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/ReadMe.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmts.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsAbstract.wsdl +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_request.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_response.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_request.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_response.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsGetTile_request.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsKVP.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/wmts/1.0/wmtsPayload_response.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/xlink/1.0.0/ReadMe.txt +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/xlink/1.0.0/xlinks.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/schemas/xml.xsd +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/arcgis.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/auth.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache.mbtiles +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_azureblob.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_band_merge.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_bulk_meta_tiles.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_coverage.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_data/dop_cache_EPSG3857/00/000/000/000/000/000/000.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_data/wms_cache_EPSG900913/01/000/000/000/000/000/001.jpeg +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_data/wms_cache_transparent_EPSG900913/01/000/000/000/000/000/001.png +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_geopackage.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_grid_names.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_mbtiles.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_s3.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/cache_source.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/combined_sources.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/dimension.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/disable_storage.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/empty_ogrdata.geojson +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/kml_layer.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/layergroups.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/layergroups_root.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/mapnik_source.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/mapproxy_export.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/mapserver.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/multiapp1.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/multiapp2.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/renderd_client.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seed.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seed_mapproxy.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seed_old.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seed_timeouts.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/seed_timeouts_mapproxy.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/sld.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/source_errors.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/source_errors_raise.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/tileservice_origin.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/tileservice_refresh.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/tilesource_minmax_res.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util-conf-base-grids.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util-conf-overwrite.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util_grids.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/util_wms_capabilities_service_exception.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/watermark.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/wms_srs_extent.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/wmts_dimensions.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/xslt_featureinfo.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/fixture/xslt_featureinfo_input.yaml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_bulk_meta_tiles.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_azureblob.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_band_merge.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_geopackage.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_grid_names.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_mbtiles.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_s3.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_cache_source.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_combined_sources.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_coverage.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_decorate_img.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_demo.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_disable_storage.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_inspire_vs.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_kml.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_layergroups.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_legendgraphic.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_multiapp.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_renderd_client.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_scalehints.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_sld.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_source_errors.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_tilesource_minmax_res.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_tms.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_tms_origin.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_util_export.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_util_grids.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_util_wms_capabilities.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_watermark.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wms_srs_extent.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wms_version.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/system/test_wmsc.py +0 -0
- {MapProxy-2.0.2/mapproxy/util → MapProxy-2.1.1/mapproxy/test/unit}/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/epsg +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/polygons/polygons.dbf +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/polygons/polygons.shp +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/polygons/polygons.shx +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_image_mask.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_image_options.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_request_wmts.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_tiled_source.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_times.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_util_conf_utils.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_wms_capabilities.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/test/unit/test_wms_layer.py +0 -0
- {MapProxy-2.0.2/mapproxy/util/ext/dictspec/test → MapProxy-2.1.1/mapproxy/util}/__init__.py +0 -0
- {MapProxy-2.0.2/mapproxy/util/ext/wmsparse → MapProxy-2.1.1/mapproxy/util/ext/dictspec}/test/__init__.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/test/test_util.py +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/test/wms-large-111.xml +0 -0
- {MapProxy-2.0.2 → MapProxy-2.1.1}/mapproxy/util/ext/wmsparse/test/wms_nasa_cap.xml +0 -0
|
@@ -1,5 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
2.1.1 2024-07-16
|
|
2
|
+
~~~~~~~~~~~~~~~~
|
|
3
|
+
Fixes:
|
|
4
|
+
|
|
5
|
+
- Fix version of jsonschema in setup.py
|
|
6
|
+
- Fix alpine docker build
|
|
7
|
+
- Fix doc generation workflow
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
2.1.0 2024-07-16
|
|
11
|
+
~~~~~~~~~~~~~~~~
|
|
12
|
+
Improvements:
|
|
13
|
+
|
|
14
|
+
- Configuration files can no be splitted into multiple files
|
|
15
|
+
- Added jsonschema to validate configuration files
|
|
16
|
+
- New theme for documentation, overall improvement of the documentation and github workflow for automatic creation
|
|
17
|
+
- Improved docker images with better entrypoint and workflow to build docker images with a builder image
|
|
18
|
+
- Added release workflow for automatic publishing on pypi and github
|
|
19
|
+
|
|
20
|
+
Maintenance:
|
|
21
|
+
|
|
22
|
+
- Dependency updates
|
|
23
|
+
- Remove python 2 compatibility functions
|
|
24
|
+
- Added flake8 linting
|
|
25
|
+
- setup.py contains now required libraries
|
|
26
|
+
- Remove depracated `pkg_resources` in favor of `importlib_resources`
|
|
27
|
+
- Addressed shapely deprecations
|
|
28
|
+
|
|
29
|
+
Fixes:
|
|
30
|
+
|
|
31
|
+
- Ensure make_app always returns MapProxyApp instance
|
|
32
|
+
- Allow feature info responses of combined sources to be empty
|
|
33
|
+
- Fix broken TMS demo
|
|
34
|
+
- Fix problem with dimensions in load_tile_metadata
|
|
35
|
+
- Fix GeoTIFF Headers
|
|
36
|
+
|
|
3
37
|
|
|
4
38
|
2.0.2 2024-01-10
|
|
5
39
|
~~~~~~~~~~~~~~~~
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: MapProxy
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: An accelerating proxy for tile and web map services
|
|
5
5
|
Home-page: https://mapproxy.org
|
|
6
6
|
Author: Oliver Tonnhofer
|
|
7
7
|
Author-email: olt@omniscale.de
|
|
8
8
|
License: Apache Software License 2.0
|
|
9
|
+
Platform: UNKNOWN
|
|
9
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,33 +14,62 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
18
|
Classifier: Topic :: Internet :: Proxy Servers
|
|
17
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
18
20
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
19
21
|
License-File: LICENSE.txt
|
|
20
22
|
License-File: COPYING.txt
|
|
21
23
|
License-File: AUTHORS.txt
|
|
22
|
-
Requires-Dist: PyYAML>=3.0
|
|
23
|
-
Requires-Dist: Pillow!=2.4.0,!=8.3.0,!=8.3.1
|
|
24
24
|
|
|
25
25
|
MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client.
|
|
26
26
|
|
|
27
|
-
.. image:: https://mapproxy.org/mapproxy.png
|
|
28
|
-
|
|
29
27
|
MapProxy is a tile cache, but also offers many new and innovative features like full support for WMS clients.
|
|
30
28
|
|
|
31
29
|
MapProxy is released under the Apache Software License 2.0, runs on Unix/Linux and Windows and is easy to install and to configure.
|
|
32
30
|
|
|
33
31
|
Go to https://mapproxy.org/ for more information.
|
|
34
32
|
|
|
35
|
-
The
|
|
36
|
-
|
|
37
|
-
Older documentation is available at: https://mapproxy.org/documentation
|
|
33
|
+
The documentation is available at: http://mapproxy.github.io/mapproxy/latest/
|
|
38
34
|
|
|
39
35
|
Changes
|
|
40
36
|
-------
|
|
41
|
-
|
|
42
|
-
|
|
37
|
+
2.1.1 2024-07-16
|
|
38
|
+
~~~~~~~~~~~~~~~~
|
|
39
|
+
Fixes:
|
|
40
|
+
|
|
41
|
+
- Fix version of jsonschema in setup.py
|
|
42
|
+
- Fix alpine docker build
|
|
43
|
+
- Fix doc generation workflow
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
2.1.0 2024-07-16
|
|
47
|
+
~~~~~~~~~~~~~~~~
|
|
48
|
+
Improvements:
|
|
49
|
+
|
|
50
|
+
- Configuration files can no be splitted into multiple files
|
|
51
|
+
- Added jsonschema to validate configuration files
|
|
52
|
+
- New theme for documentation, overall improvement of the documentation and github workflow for automatic creation
|
|
53
|
+
- Improved docker images with better entrypoint and workflow to build docker images with a builder image
|
|
54
|
+
- Added release workflow for automatic publishing on pypi and github
|
|
55
|
+
|
|
56
|
+
Maintenance:
|
|
57
|
+
|
|
58
|
+
- Dependency updates
|
|
59
|
+
- Remove python 2 compatibility functions
|
|
60
|
+
- Added flake8 linting
|
|
61
|
+
- setup.py contains now required libraries
|
|
62
|
+
- Remove depracated `pkg_resources` in favor of `importlib_resources`
|
|
63
|
+
- Addressed shapely deprecations
|
|
64
|
+
|
|
65
|
+
Fixes:
|
|
66
|
+
|
|
67
|
+
- Ensure make_app always returns MapProxyApp instance
|
|
68
|
+
- Allow feature info responses of combined sources to be empty
|
|
69
|
+
- Fix broken TMS demo
|
|
70
|
+
- Fix problem with dimensions in load_tile_metadata
|
|
71
|
+
- Fix GeoTIFF Headers
|
|
72
|
+
|
|
43
73
|
|
|
44
74
|
2.0.2 2024-01-10
|
|
45
75
|
~~~~~~~~~~~~~~~~
|
|
@@ -116,36 +146,9 @@ Fixes:
|
|
|
116
146
|
|
|
117
147
|
- Fixup release on PyPI
|
|
118
148
|
|
|
119
|
-
1.15.0 2022-06-14
|
|
120
|
-
~~~~~~~~~~~~~~~~~
|
|
121
|
-
|
|
122
|
-
Improvements:
|
|
123
|
-
|
|
124
|
-
- WMS Dimension caching (#449)
|
|
125
|
-
- Add a mechanism to define plugins (#578)
|
|
126
|
-
- Support of non-EPSG SRS authorities (#572)
|
|
127
|
-
- Support for python 3.10 (#582)
|
|
128
|
-
|
|
129
|
-
Fixes:
|
|
130
|
-
|
|
131
|
-
- Several minor bugfixes
|
|
132
|
-
|
|
133
|
-
1.14.0 2021-11-24
|
|
134
|
-
~~~~~~~~~~~~~~~~~
|
|
135
|
-
|
|
136
|
-
Improvements:
|
|
137
|
-
|
|
138
|
-
- Refresh while serving (#518).
|
|
139
|
-
- Enabled commandline option `skip uncached` (#515)
|
|
140
|
-
- Several dependencies updated
|
|
141
|
-
- Support for python 3.5 has been dropped because of its EOL, 3.9 has been added
|
|
142
|
-
|
|
143
|
-
Fixes:
|
|
144
|
-
|
|
145
|
-
- Several minor bugfixes
|
|
146
|
-
- Security fix to avoid potential web cache poisoning.
|
|
147
|
-
|
|
148
149
|
|
|
149
150
|
Older changes
|
|
150
151
|
-------------
|
|
151
152
|
See https://raw.github.com/mapproxy/mapproxy/master/CHANGES.txt
|
|
153
|
+
|
|
154
|
+
|
|
@@ -3,9 +3,8 @@ CHANGES.txt
|
|
|
3
3
|
COPYING.txt
|
|
4
4
|
LICENSE.txt
|
|
5
5
|
MANIFEST.in
|
|
6
|
-
README.
|
|
6
|
+
README.md
|
|
7
7
|
requirements-tests.txt
|
|
8
|
-
setup.cfg
|
|
9
8
|
setup.py
|
|
10
9
|
MapProxy.egg-info/PKG-INFO
|
|
11
10
|
MapProxy.egg-info/SOURCES.txt
|
|
@@ -15,7 +14,6 @@ MapProxy.egg-info/not-zip-safe
|
|
|
15
14
|
MapProxy.egg-info/requires.txt
|
|
16
15
|
MapProxy.egg-info/top_level.txt
|
|
17
16
|
doc/GM.txt
|
|
18
|
-
doc/Makefile
|
|
19
17
|
doc/auth.rst
|
|
20
18
|
doc/caches.rst
|
|
21
19
|
doc/caching_layer_dimensions.rst
|
|
@@ -33,7 +31,6 @@ doc/install_docker.rst
|
|
|
33
31
|
doc/install_osgeo4w.rst
|
|
34
32
|
doc/install_windows.rst
|
|
35
33
|
doc/labeling.rst
|
|
36
|
-
doc/mapproxy_2.rst
|
|
37
34
|
doc/mapproxy_util.rst
|
|
38
35
|
doc/mapproxy_util_autoconfig.rst
|
|
39
36
|
doc/plugins.rst
|
|
@@ -43,10 +40,9 @@ doc/sources.rst
|
|
|
43
40
|
doc/tutorial.rst
|
|
44
41
|
doc/tutorial.yaml
|
|
45
42
|
doc/_static/logo.png
|
|
43
|
+
doc/_static/logo_title.png
|
|
46
44
|
doc/_static/mapproxy.css
|
|
47
|
-
doc/_templates/
|
|
48
|
-
doc/_templates/navbar.html
|
|
49
|
-
doc/_templates/toctree.html
|
|
45
|
+
doc/_templates/versions.html
|
|
50
46
|
doc/imgs/bicubic.png
|
|
51
47
|
doc/imgs/bilinear.png
|
|
52
48
|
doc/imgs/labeling-dynamic.png
|
|
@@ -106,9 +102,8 @@ mapproxy/client/tile.py
|
|
|
106
102
|
mapproxy/client/wms.py
|
|
107
103
|
mapproxy/compat/__init__.py
|
|
108
104
|
mapproxy/compat/image.py
|
|
109
|
-
mapproxy/compat/itertools.py
|
|
110
|
-
mapproxy/compat/modules.py
|
|
111
105
|
mapproxy/config/__init__.py
|
|
106
|
+
mapproxy/config/config-schema.json
|
|
112
107
|
mapproxy/config/config.py
|
|
113
108
|
mapproxy/config/coverage.py
|
|
114
109
|
mapproxy/config/defaults.py
|
|
@@ -507,7 +502,7 @@ mapproxy/util/ext/dictspec/test/__init__.py
|
|
|
507
502
|
mapproxy/util/ext/dictspec/test/test_validator.py
|
|
508
503
|
mapproxy/util/ext/tempita/__init__.py
|
|
509
504
|
mapproxy/util/ext/tempita/_looper.py
|
|
510
|
-
mapproxy/util/ext/tempita/
|
|
505
|
+
mapproxy/util/ext/tempita/string_utils.py
|
|
511
506
|
mapproxy/util/ext/wmsparse/__init__.py
|
|
512
507
|
mapproxy/util/ext/wmsparse/duration.py
|
|
513
508
|
mapproxy/util/ext/wmsparse/parse.py
|
|
@@ -515,7 +510,7 @@ mapproxy/util/ext/wmsparse/util.py
|
|
|
515
510
|
mapproxy/util/ext/wmsparse/test/__init__.py
|
|
516
511
|
mapproxy/util/ext/wmsparse/test/test_parse.py
|
|
517
512
|
mapproxy/util/ext/wmsparse/test/test_util.py
|
|
513
|
+
mapproxy/util/ext/wmsparse/test/wms-example-111.xml
|
|
514
|
+
mapproxy/util/ext/wmsparse/test/wms-example-130.xml
|
|
518
515
|
mapproxy/util/ext/wmsparse/test/wms-large-111.xml
|
|
519
|
-
mapproxy/util/ext/wmsparse/test/wms-omniscale-111.xml
|
|
520
|
-
mapproxy/util/ext/wmsparse/test/wms-omniscale-130.xml
|
|
521
516
|
mapproxy/util/ext/wmsparse/test/wms_nasa_cap.xml
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: MapProxy
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: An accelerating proxy for tile and web map services
|
|
5
5
|
Home-page: https://mapproxy.org
|
|
6
6
|
Author: Oliver Tonnhofer
|
|
7
7
|
Author-email: olt@omniscale.de
|
|
8
8
|
License: Apache Software License 2.0
|
|
9
|
+
Platform: UNKNOWN
|
|
9
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,33 +14,62 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
18
|
Classifier: Topic :: Internet :: Proxy Servers
|
|
17
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
18
20
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
19
21
|
License-File: LICENSE.txt
|
|
20
22
|
License-File: COPYING.txt
|
|
21
23
|
License-File: AUTHORS.txt
|
|
22
|
-
Requires-Dist: PyYAML>=3.0
|
|
23
|
-
Requires-Dist: Pillow!=2.4.0,!=8.3.0,!=8.3.1
|
|
24
24
|
|
|
25
25
|
MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client.
|
|
26
26
|
|
|
27
|
-
.. image:: https://mapproxy.org/mapproxy.png
|
|
28
|
-
|
|
29
27
|
MapProxy is a tile cache, but also offers many new and innovative features like full support for WMS clients.
|
|
30
28
|
|
|
31
29
|
MapProxy is released under the Apache Software License 2.0, runs on Unix/Linux and Windows and is easy to install and to configure.
|
|
32
30
|
|
|
33
31
|
Go to https://mapproxy.org/ for more information.
|
|
34
32
|
|
|
35
|
-
The
|
|
36
|
-
|
|
37
|
-
Older documentation is available at: https://mapproxy.org/documentation
|
|
33
|
+
The documentation is available at: http://mapproxy.github.io/mapproxy/latest/
|
|
38
34
|
|
|
39
35
|
Changes
|
|
40
36
|
-------
|
|
41
|
-
|
|
42
|
-
|
|
37
|
+
2.1.1 2024-07-16
|
|
38
|
+
~~~~~~~~~~~~~~~~
|
|
39
|
+
Fixes:
|
|
40
|
+
|
|
41
|
+
- Fix version of jsonschema in setup.py
|
|
42
|
+
- Fix alpine docker build
|
|
43
|
+
- Fix doc generation workflow
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
2.1.0 2024-07-16
|
|
47
|
+
~~~~~~~~~~~~~~~~
|
|
48
|
+
Improvements:
|
|
49
|
+
|
|
50
|
+
- Configuration files can no be splitted into multiple files
|
|
51
|
+
- Added jsonschema to validate configuration files
|
|
52
|
+
- New theme for documentation, overall improvement of the documentation and github workflow for automatic creation
|
|
53
|
+
- Improved docker images with better entrypoint and workflow to build docker images with a builder image
|
|
54
|
+
- Added release workflow for automatic publishing on pypi and github
|
|
55
|
+
|
|
56
|
+
Maintenance:
|
|
57
|
+
|
|
58
|
+
- Dependency updates
|
|
59
|
+
- Remove python 2 compatibility functions
|
|
60
|
+
- Added flake8 linting
|
|
61
|
+
- setup.py contains now required libraries
|
|
62
|
+
- Remove depracated `pkg_resources` in favor of `importlib_resources`
|
|
63
|
+
- Addressed shapely deprecations
|
|
64
|
+
|
|
65
|
+
Fixes:
|
|
66
|
+
|
|
67
|
+
- Ensure make_app always returns MapProxyApp instance
|
|
68
|
+
- Allow feature info responses of combined sources to be empty
|
|
69
|
+
- Fix broken TMS demo
|
|
70
|
+
- Fix problem with dimensions in load_tile_metadata
|
|
71
|
+
- Fix GeoTIFF Headers
|
|
72
|
+
|
|
43
73
|
|
|
44
74
|
2.0.2 2024-01-10
|
|
45
75
|
~~~~~~~~~~~~~~~~
|
|
@@ -116,36 +146,9 @@ Fixes:
|
|
|
116
146
|
|
|
117
147
|
- Fixup release on PyPI
|
|
118
148
|
|
|
119
|
-
1.15.0 2022-06-14
|
|
120
|
-
~~~~~~~~~~~~~~~~~
|
|
121
|
-
|
|
122
|
-
Improvements:
|
|
123
|
-
|
|
124
|
-
- WMS Dimension caching (#449)
|
|
125
|
-
- Add a mechanism to define plugins (#578)
|
|
126
|
-
- Support of non-EPSG SRS authorities (#572)
|
|
127
|
-
- Support for python 3.10 (#582)
|
|
128
|
-
|
|
129
|
-
Fixes:
|
|
130
|
-
|
|
131
|
-
- Several minor bugfixes
|
|
132
|
-
|
|
133
|
-
1.14.0 2021-11-24
|
|
134
|
-
~~~~~~~~~~~~~~~~~
|
|
135
|
-
|
|
136
|
-
Improvements:
|
|
137
|
-
|
|
138
|
-
- Refresh while serving (#518).
|
|
139
|
-
- Enabled commandline option `skip uncached` (#515)
|
|
140
|
-
- Several dependencies updated
|
|
141
|
-
- Support for python 3.5 has been dropped because of its EOL, 3.9 has been added
|
|
142
|
-
|
|
143
|
-
Fixes:
|
|
144
|
-
|
|
145
|
-
- Several minor bugfixes
|
|
146
|
-
- Security fix to avoid potential web cache poisoning.
|
|
147
|
-
|
|
148
149
|
|
|
149
150
|
Older changes
|
|
150
151
|
-------------
|
|
151
152
|
See https://raw.github.com/mapproxy/mapproxy/master/CHANGES.txt
|
|
153
|
+
|
|
154
|
+
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client.
|
|
2
2
|
|
|
3
|
-
.. image:: https://mapproxy.org/mapproxy.png
|
|
4
|
-
|
|
5
3
|
MapProxy is a tile cache, but also offers many new and innovative features like full support for WMS clients.
|
|
6
4
|
|
|
7
5
|
MapProxy is released under the Apache Software License 2.0, runs on Unix/Linux and Windows and is easy to install and to configure.
|
|
8
6
|
|
|
9
7
|
Go to https://mapproxy.org/ for more information.
|
|
10
8
|
|
|
11
|
-
The
|
|
12
|
-
|
|
13
|
-
Older documentation is available at: https://mapproxy.org/documentation
|
|
9
|
+
The documentation is available at: http://mapproxy.github.io/mapproxy/latest/
|
|
14
10
|
|
|
Binary file
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-family: Verdana, sans-serif;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
h1, .h1 {
|
|
6
|
+
margin-top: 10px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
a:link,
|
|
10
|
+
a:visited,
|
|
11
|
+
a:hover,
|
|
12
|
+
a:active
|
|
13
|
+
{
|
|
14
|
+
color: #2e3436;
|
|
15
|
+
color: #31A4B5;
|
|
16
|
+
text-decoration: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.footer a {
|
|
20
|
+
color: inherit;
|
|
21
|
+
text-decoration: underline;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* .bd-sidebar-primary, .bd-footer-content, .bd-sidebar-secondary {
|
|
25
|
+
background-color: #ececec;
|
|
26
|
+
} */
|
|
27
|
+
|
|
28
|
+
.alert-warning, .alert-success, .alert-info {
|
|
29
|
+
background-image: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
button.theme-switch-button {
|
|
33
|
+
display: none !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.btn-select-version {
|
|
37
|
+
color: #31A4B5;
|
|
38
|
+
border-color: #31A4B5;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* !important is needed to overwrite bootstrap defaults */
|
|
42
|
+
.btn-select-version:hover,
|
|
43
|
+
.btn-select-version:active,
|
|
44
|
+
.btn-select-version:focus
|
|
45
|
+
{
|
|
46
|
+
color: #ffffff !important;
|
|
47
|
+
border-color: #31A4B5 !important;
|
|
48
|
+
background-color: #31A4B5 !important;
|
|
49
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<div class="btn-group">
|
|
2
|
+
<button type="button" class="btn btn-outline-info btn-select-version">{{ current_version }}</button>
|
|
3
|
+
<button type="button" class="btn btn-outline-info btn-select-version dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown"
|
|
4
|
+
aria-expanded="false">
|
|
5
|
+
<span class="visually-hidden">toggle</span>
|
|
6
|
+
</button>
|
|
7
|
+
<ul id="versions-menu" class="dropdown-menu">
|
|
8
|
+
</ul>
|
|
9
|
+
<script>
|
|
10
|
+
fetch('../config/versions.json')
|
|
11
|
+
.then(response => {
|
|
12
|
+
return response.json();
|
|
13
|
+
})
|
|
14
|
+
.then(versions => {
|
|
15
|
+
const menu = document.querySelector('#versions-menu');
|
|
16
|
+
for (const version of versions) {
|
|
17
|
+
const a = document.createElement('a');
|
|
18
|
+
a.classList.add("dropdown-item");
|
|
19
|
+
a.href = `{{ docsBaseUrl}}/${version}/`;
|
|
20
|
+
a.textContent = version;
|
|
21
|
+
const li = document.createElement('li');
|
|
22
|
+
li.append(a);
|
|
23
|
+
menu.append(li);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
</script>
|
|
27
|
+
</div>
|
|
@@ -27,7 +27,9 @@ Your auth system should be implemented as a WSGI middleware. The middleware sits
|
|
|
27
27
|
WSGI Filter Middleware
|
|
28
28
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
29
29
|
|
|
30
|
-
A simple middleware that authorizes random requests might look like
|
|
30
|
+
A simple middleware that authorizes random requests might look like:
|
|
31
|
+
|
|
32
|
+
.. code-block:: python
|
|
31
33
|
|
|
32
34
|
class RandomAuthFilter(object):
|
|
33
35
|
def __init__(self, app, global_conf):
|
|
@@ -73,15 +75,15 @@ MapProxy can call the middleware back for authorization as soon as it knows what
|
|
|
73
75
|
|
|
74
76
|
Here is a more elaborate example that denies requests to all layers that start with a specific prefix. These layers are also hidden from capability documents.
|
|
75
77
|
|
|
76
|
-
::
|
|
78
|
+
.. code-block:: python
|
|
77
79
|
|
|
78
80
|
class SimpleAuthFilter(object):
|
|
79
|
-
|
|
81
|
+
'''
|
|
80
82
|
Simple MapProxy authorization middleware.
|
|
81
83
|
|
|
82
84
|
It authorizes WMS requests for layers where the name does
|
|
83
85
|
not start with `prefix`.
|
|
84
|
-
|
|
86
|
+
'''
|
|
85
87
|
def __init__(self, app, prefix='secure'):
|
|
86
88
|
self.app = app
|
|
87
89
|
self.prefix = prefix
|
|
@@ -238,7 +240,7 @@ Here is an example result of a call to the authorize function::
|
|
|
238
240
|
'map': True,
|
|
239
241
|
'featureinfo': True,
|
|
240
242
|
}
|
|
241
|
-
}
|
|
243
|
+
}"
|
|
242
244
|
}
|
|
243
245
|
|
|
244
246
|
|
|
@@ -312,6 +314,7 @@ The whole request is rejected if any requested layer is not permitted. Resolved
|
|
|
312
314
|
The ``authorize`` function gets called with an additional ``query_extent`` argument:
|
|
313
315
|
|
|
314
316
|
.. function:: authorize(service, environ, layers, query_extent, **kw)
|
|
317
|
+
:no-index:
|
|
315
318
|
|
|
316
319
|
:param query_extent: a tuple of the SRS (e.g. ``EPSG:4326``) and the BBOX
|
|
317
320
|
of the request to authorize.
|
|
@@ -320,7 +323,9 @@ The whole request is rejected if any requested layer is not permitted. Resolved
|
|
|
320
323
|
Example
|
|
321
324
|
+++++++
|
|
322
325
|
|
|
323
|
-
With a layer tree like
|
|
326
|
+
With a layer tree like:
|
|
327
|
+
|
|
328
|
+
.. code-block:: yaml
|
|
324
329
|
|
|
325
330
|
- name: layer1
|
|
326
331
|
layers:
|
|
@@ -362,7 +367,9 @@ Sub layers are only included when the parent layer is included, since authorizat
|
|
|
362
367
|
|
|
363
368
|
Layers that are queryable and only marked so in the capabilities if the ``featureinfo`` feature set to ``True``.
|
|
364
369
|
|
|
365
|
-
With a layer tree like
|
|
370
|
+
With a layer tree like:
|
|
371
|
+
|
|
372
|
+
.. code-block:: yaml
|
|
366
373
|
|
|
367
374
|
- name: layer1
|
|
368
375
|
layers:
|
|
@@ -385,11 +392,13 @@ An authorize result of::
|
|
|
385
392
|
}
|
|
386
393
|
}
|
|
387
394
|
|
|
388
|
-
Results in the following abbreviated capabilities
|
|
395
|
+
Results in the following abbreviated capabilities:
|
|
389
396
|
|
|
390
|
-
|
|
397
|
+
.. code-block:: xml
|
|
398
|
+
|
|
399
|
+
<Layer queryable='1'>
|
|
391
400
|
<Name>layer1</Name>
|
|
392
|
-
<Layer queryable=
|
|
401
|
+
<Layer queryable='1'><Name>layer1a</Name></Layer>
|
|
393
402
|
<Layer><Name>layer1b</Name></Layer>
|
|
394
403
|
</Layer>
|
|
395
404
|
|
|
@@ -419,6 +428,7 @@ Only layers with the ``tile`` feature set to ``True`` are included in the TMS ca
|
|
|
419
428
|
The ``authorize`` function gets called with an additional ``query_extent`` argument for all tile requests:
|
|
420
429
|
|
|
421
430
|
.. function:: authorize(service, environ, layers, query_extent=None, **kw)
|
|
431
|
+
:no-index:
|
|
422
432
|
|
|
423
433
|
:param query_extent: a tuple of the SRS (e.g. ``EPSG:4326``) and the BBOX
|
|
424
434
|
of the request to authorize, or ``None`` for capabilities requests.
|
|
@@ -456,22 +466,22 @@ You can also add the limit to the layer and mix it with properties used for the
|
|
|
456
466
|
'authorized': 'partial',
|
|
457
467
|
'layers': {
|
|
458
468
|
'layer1': {
|
|
459
|
-
'tile':
|
|
460
|
-
'map':
|
|
469
|
+
'tile': true,
|
|
470
|
+
'map': true,
|
|
461
471
|
'limited_to': {
|
|
462
472
|
'geometry': shapely.geometry.Polygon(
|
|
463
473
|
[(-10, 0), (30, -5), (30, 50), (20, 50)]),
|
|
464
|
-
'srs': 'EPSG:4326'
|
|
474
|
+
'srs': 'EPSG:4326'
|
|
465
475
|
},
|
|
466
476
|
'layer2': {
|
|
467
|
-
'tile':
|
|
468
|
-
'map':
|
|
477
|
+
'tile': true,
|
|
478
|
+
'map': false,
|
|
469
479
|
'featureinfo': True,
|
|
470
480
|
'limited_to': {
|
|
471
481
|
'geometry': shapely.geometry.Polygon(
|
|
472
482
|
[(0, 0), (20, -5), (30, 50), (20, 50)]),
|
|
473
|
-
'srs': 'EPSG:4326'
|
|
474
|
-
}
|
|
483
|
+
'srs': 'EPSG:4326'
|
|
484
|
+
}
|
|
475
485
|
},
|
|
476
486
|
}
|
|
477
487
|
}
|
|
@@ -512,7 +522,9 @@ MultiMapProxy
|
|
|
512
522
|
The :ref:`MultiMapProxy <multimapproxy>` application stores the instance name in the environment as ``mapproxy.instance_name``. This information in not available when your middleware gets called, but you can use it in your authorization function.
|
|
513
523
|
|
|
514
524
|
Example that rejects MapProxy instances where the name starts with ``secure``.
|
|
515
|
-
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
.. code-block:: python
|
|
516
528
|
|
|
517
529
|
|
|
518
530
|
class MultiMapProxyAuthFilter(object):
|
|
@@ -530,4 +542,3 @@ Example that rejects MapProxy instances where the name starts with ``secure``.
|
|
|
530
542
|
else:
|
|
531
543
|
return {'authorized': 'full'}
|
|
532
544
|
|
|
533
|
-
|