├── .cloudbuild ├── .id_github_cartofante.enc ├── build-windshaft.yaml ├── known_hosts └── pr-tests-windshaft.yaml ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .gitmodules ├── HOW_TO_RELEASE.md ├── LICENSE ├── LOGGING.md ├── NEWS.md ├── README.md ├── app.js ├── assets ├── default-placeholder.png ├── default-placeholder@2x.png ├── render-timeout-fallback.mvt ├── render-timeout-fallback.png └── render-timeout-fallback@2x.png ├── carto-package.json ├── config └── environments │ ├── config.js │ ├── development.js.example │ ├── production.js.example │ ├── staging.js.example │ └── test.js.example ├── docs ├── examples │ └── 01-example.md ├── guides │ ├── 01-quickstart.md │ ├── 02-general-concepts.md │ ├── 03-anonymous-maps.md │ ├── 04-named-maps.md │ ├── 05-static-maps-API.md │ ├── 06-tile-aggregation.md │ ├── 07-MapConfig-file-format.md │ ├── 08-MapConfig-aggregation-extension.md │ ├── 09-MapConfig-analyses-extension.md │ ├── 10-MapConfig-dataviews-extension.md │ └── 11-Mapconfig-named-maps-extension.md ├── internal │ └── multilayer-API.md ├── reference │ └── swagger.yaml └── support │ ├── 01-support-options.md │ ├── 02-contribute.md │ ├── 03-rate-limiting.md │ ├── 04-timeout-limiting.md │ ├── 05-quota-limiting.md │ └── 06-metrics.md ├── lib ├── api │ ├── api-router.js │ ├── map │ │ ├── analyses-catalog-controller.js │ │ ├── analysis-layergroup-controller.js │ │ ├── anonymous-map-controller.js │ │ ├── attributes-layergroup-controller.js │ │ ├── clustered-features-layergroup-controller.js │ │ ├── dataview-layergroup-controller.js │ │ ├── map-router.js │ │ ├── preview-layergroup-controller.js │ │ ├── preview-template-controller.js │ │ └── tile-layergroup-controller.js │ ├── middlewares │ │ ├── augment-layergroup-data.js │ │ ├── authorize.js │ │ ├── cache-channel-header.js │ │ ├── cache-control-header.js │ │ ├── check-json-content-type.js │ │ ├── check-static-image-format.js │ │ ├── clean-up-query-params.js │ │ ├── client-header.js │ │ ├── coordinates.js │ │ ├── cors.js │ │ ├── credentials.js │ │ ├── db-conn-setup.js │ │ ├── error-middleware.js │ │ ├── increment-map-view-count.js │ │ ├── initialize-status-code.js │ │ ├── last-modified-header.js │ │ ├── last-updated-time-layergroup.js │ │ ├── layer-stats.js │ │ ├── layergroup-id-header.js │ │ ├── layergroup-metadata.js │ │ ├── layergroup-token.js │ │ ├── logger.js │ │ ├── lzma.js │ │ ├── map-error.js │ │ ├── map-store-map-config-provider.js │ │ ├── metrics.js │ │ ├── named-map-provider.js │ │ ├── noop.js │ │ ├── profiler.js │ │ ├── rate-limit.js │ │ ├── send-response.js │ │ ├── served-by-host-header.js │ │ ├── surrogate-key-header.js │ │ ├── syntax-error.js │ │ ├── tag.js │ │ ├── user.js │ │ └── vector-error.js │ └── template │ │ ├── admin-template-controller.js │ │ ├── named-template-controller.js │ │ ├── template-router.js │ │ └── tile-template-controller.js ├── backends │ ├── analysis-status.js │ ├── analysis.js │ ├── auth.js │ ├── cluster.js │ ├── dataview.js │ ├── filter-stats.js │ ├── layer-stats │ │ ├── empty-layer-stats.js │ │ ├── factory.js │ │ ├── layer-stats.js │ │ ├── mapnik-layer-stats.js │ │ └── torque-layer-stats.js │ ├── metrics.js │ ├── overviews-metadata.js │ ├── pg-connection.js │ ├── pg-query-runner.js │ ├── stats.js │ ├── tables-extent.js │ ├── template-maps.js │ ├── turbo-carto-postgres-datasource.js │ └── user-limits.js ├── cache │ ├── backend │ │ ├── fastly.js │ │ └── varnish-http.js │ ├── layergroup-affected-tables.js │ ├── model │ │ └── named-maps-entry.js │ ├── named-map-provider-cache.js │ └── surrogate-keys-cache.js ├── models │ ├── aggregation │ │ ├── aggregation-mapconfig.js │ │ ├── aggregation-query.js │ │ ├── aggregation-validator.js │ │ └── time-dimension.js │ ├── cdb-request.js │ ├── dataview │ │ ├── aggregation.js │ │ ├── base.js │ │ ├── factory.js │ │ ├── formula.js │ │ ├── histogram.js │ │ ├── histograms │ │ │ ├── base-histogram.js │ │ │ ├── date-histogram.js │ │ │ └── numeric-histogram.js │ │ ├── index.js │ │ └── overviews │ │ │ ├── aggregation.js │ │ │ ├── base.js │ │ │ ├── factory.js │ │ │ ├── formula.js │ │ │ ├── histogram.js │ │ │ └── index.js │ ├── filter │ │ ├── analysis.js │ │ ├── analysis │ │ │ ├── category.js │ │ │ └── range.js │ │ ├── bbox.js │ │ ├── circle.js │ │ └── polygon.js │ ├── layergroup-token.js │ ├── mapconfig │ │ ├── adapter │ │ │ ├── aggregation-mapconfig-adapter.js │ │ │ ├── analysis-mapconfig-adapter.js │ │ │ ├── dataviews-widgets-adapter.js │ │ │ ├── index.js │ │ │ ├── mapconfig-buffer-size-adapter.js │ │ │ ├── mapconfig-named-layers-adapter.js │ │ │ ├── mapconfig-overviews-adapter.js │ │ │ ├── sql-wrap-mapconfig-adapter.js │ │ │ ├── turbo-carto-adapter.js │ │ │ └── vector-mapconfig-adapter.js │ │ └── provider │ │ │ ├── base-mapconfig-adapter.js │ │ │ ├── create-layergroup-provider.js │ │ │ ├── map-store-provider.js │ │ │ └── named-map-provider.js │ └── resource-locator.js ├── monitoring │ └── health-check.js ├── server-info-controller.js ├── server-options.js ├── server.js ├── stats │ ├── client.js │ ├── profiler-proxy.js │ ├── reporter │ │ ├── named-map-provider-cache.js │ │ └── renderer.js │ └── timer.js └── utils │ ├── common-headers.js │ ├── database-params.js │ ├── date-wrapper.js │ ├── icu-data-env-setter.js │ ├── json-replacer.js │ ├── layergroup-metadata.js │ ├── logger.js │ ├── on-tile-error-strategy.js │ ├── overviews-query-rewriter.js │ ├── query-utils.js │ ├── substitution-tokens.js │ └── table-name-parser.js ├── metro ├── config.json ├── index.js ├── log-collector.js ├── metrics-collector.js └── metro.js ├── package.json ├── scripts ├── darwin-pre-install.sh ├── lzma2config.js └── mvt-timeout-error.py └── test ├── acceptance ├── aggregation-test.js ├── analysis │ ├── analyses-controller-test.js │ ├── analyses-filters-params-test.js │ ├── analyses-filters-test.js │ ├── analysis-layers-dataviews-test.js │ ├── analysis-layers-test.js │ ├── analysis-layers-use-cases-test.js │ ├── error-cases-test.js │ ├── named-maps-test.js │ └── regressions-test.js ├── auth │ ├── authorization-basic-use-cases-test.js │ └── authorization-test.js ├── buffer-size-format-test.js ├── cache │ ├── cache-control-header-test.js │ ├── cache-headers-test.js │ └── surrogate-keys-invalidation-test.js ├── cluster-test.js ├── custom-middlewares-test.js ├── dataviews │ ├── aggregation-test.js │ ├── error-cases-test.js │ ├── formula-test.js │ ├── histogram-test.js │ ├── overviews-test.js │ └── spatial-filters-test.js ├── date-wrapping-test.js ├── dynamic-styling-named-maps-test.js ├── errors-with-context-test.js ├── health-check-test.js ├── label-wrap-test.js ├── layergroup-metadata-test.js ├── layergroupid-test.js ├── layers-filters-test.js ├── map-view-headers-test.js ├── max-waiting-workers-test.js ├── multilayer-server-test.js ├── multilayer-test.js ├── mvt-regressions-test.js ├── mvt-test.js ├── named-layers-test.js ├── named-layers-visibility-test.js ├── named-map-cache-regressions-test.js ├── named-maps-authentication-test.js ├── named-maps-cache-test.js ├── named-maps-static-view-test.js ├── named-maps-stats-test.js ├── overviews-metadata-named-maps-test.js ├── overviews-metadata-test.js ├── overviews-queries-test.js ├── ported │ ├── attributes-test.js │ ├── blend-filtering-test.js │ ├── blend-http-fallback-test.js │ ├── blend-http-timeout-test.js │ ├── blend-test.js │ ├── external-resources-test.js │ ├── fixtures │ │ ├── test_table_0_0_0_multilayer1.layer0.grid.json │ │ ├── test_table_0_0_0_multilayer1.layer1.grid.json │ │ ├── test_table_0_0_0_multilayer1.png │ │ ├── test_table_0_0_0_multilayer2.png │ │ ├── test_table_0_0_0_multilayer3.png │ │ └── test_table_0_0_0_multilayer4.png │ ├── limits-test.js │ ├── multilayer-error-cases-test.js │ ├── multilayer-interactivity-test.js │ ├── multilayer-test.js │ ├── raster-test.js │ ├── regressions-test.js │ ├── retina-test.js │ ├── server-gettile-test.js │ ├── server-png8-format-test.js │ ├── server-test.js │ ├── static-maps-test.js │ ├── support │ │ ├── ported-server-options.js │ │ └── test-client.js │ ├── torque-boundaries-test.js │ ├── torque-png-test.js │ ├── torque-test.js │ ├── torque-zero-zero-test.js │ └── wrap-test.js ├── rate-limit-test.js ├── regressions-test.js ├── server-test.js ├── special-numeric-values-test.js ├── sql-wrap-test.js ├── stats │ ├── mapnik-stats-layergroup-test.js │ └── multilayer-stats-test.js ├── templates-test.js ├── tilejson-test.js ├── turbo-carto │ ├── anonymous-maps-test.js │ ├── error-cases-test.js │ ├── named-maps-test.js │ └── regressions-test.js ├── user-database-timeout-limit-test.js ├── user-render-timeout-limit-test.js ├── vector-layergroup-test.js └── widgets │ ├── aggregation-test.js │ ├── histogram-test.js │ ├── named-maps-test.js │ ├── ported │ ├── aggregation-test.js │ ├── formula-test.js │ └── histogram-test.js │ ├── regressions-test.js │ └── widgets-test.js ├── fixtures ├── _vovw_1_test_table_1_0_0.png ├── _vovw_2_test_table_2_1_1.png ├── analysis │ ├── adm0cap-source-id-mapnik-layer.png │ ├── basic-source-id-mapnik-layer.png │ ├── buffer-over-source.png │ ├── named-map-buffer-layergroup-static-preview.png │ ├── named-map-buffer-static-preview.png │ └── named-map-buffer.png ├── blank.png ├── blend │ ├── blend-filtering-layers-0.1-zxy-1.0.0.png │ ├── blend-filtering-layers-0.2-zxy-1.0.0.png │ ├── blend-filtering-layers-0.3-zxy-1.0.0.png │ ├── blend-filtering-layers-1.2-zxy-1.0.0.png │ ├── blend-filtering-layers-1.2.3.4-zxy-1.0.0.png │ ├── blend-filtering-layers-1.2.5-zxy-1.0.0.png │ ├── blend-filtering-layers-1.3-zxy-1.0.0.png │ ├── blend-filtering-layers-2.1-zxy-1.0.0.png │ ├── blend-filtering-layers-2.2-zxy-1.0.0.png │ ├── blend-plain-torque-2.1.1.png │ ├── blend-plain-torque-2.2.1.png │ └── http_fallback │ │ ├── blend-layers-0.3-zxy-1.0.0.png │ │ ├── blend-layers-0.4-zxy-1.0.0.png │ │ ├── blend-layers-1.2-zxy-1.0.0.png │ │ ├── blend-layers-1.3-zxy-1.0.0.png │ │ ├── blend-layers-2.3-zxy-1.0.0.png │ │ ├── blend-layers-3.4-zxy-1.0.0.png │ │ └── blend-layers-all-zxy-1.0.0.png ├── buffer-size │ ├── tile-7.64.48-buffer-size-0.png │ ├── tile-7.64.48-buffer-size-128.geojson │ ├── tile-7.64.48-buffer-size-128.grid.json │ ├── tile-7.64.48-buffer-size-128.png │ ├── tile-grid.json.7.64.48-buffer-size-0.grid.json │ ├── tile-mvt-7.64.48-buffer-size-0.geojson │ ├── tile-mvt-7.64.48-buffer-size-0.mvt │ └── tile-mvt-7.64.48-buffer-size-128.mvt ├── http │ ├── basemap.png │ ├── dark_nolabels-1-0-0.png │ └── light_nolabels-1-0-0.png ├── limits │ └── fallback.png ├── markers │ ├── circle.svg │ └── square.svg ├── previews │ ├── populated_places_simple_reduced-bounds.png │ ├── populated_places_simple_reduced-estimated-proj5.png │ ├── populated_places_simple_reduced-estimated.png │ ├── populated_places_simple_reduced-override-bbox.png │ ├── populated_places_simple_reduced-override-zoom.png │ ├── populated_places_simple_reduced-preview_layers_all.png │ ├── populated_places_simple_reduced-preview_layers_blue.png │ ├── populated_places_simple_reduced-preview_layers_orange.png │ ├── populated_places_simple_reduced-preview_layers_orange_blue.png │ ├── populated_places_simple_reduced-preview_layers_red.png │ ├── populated_places_simple_reduced-preview_layers_red_blue.png │ ├── populated_places_simple_reduced-preview_layers_red_orange.png │ ├── populated_places_simple_reduced-preview_layers_red_orange_blue.png │ ├── populated_places_simple_reduced-preview_layers_undefined.png │ ├── populated_places_simple_reduced-zoom-center.jpeg │ └── populated_places_simple_reduced-zoom-center.png ├── provider │ ├── populated_places_simple_reduced-black.png │ ├── populated_places_simple_reduced-blue.png │ ├── populated_places_simple_reduced-green.png │ └── populated_places_simple_reduced-red.png ├── raster_gray_rect.png ├── render-timeout-fallback.png ├── sql-wrap-usa-filter.png ├── test_bigpoint_red.png ├── test_default_mapnik_point.png ├── test_mapconfigFactory.js ├── test_multilayer_bbox.grid.json ├── test_multilayer_bbox.png ├── test_table_0_0_0_multilayer1.layer0.grid.json ├── test_table_0_0_0_multilayer1.layer1.grid.json ├── test_table_0_0_0_multilayer1.png ├── test_table_0_0_0_multilayer2.png ├── test_table_0_0_0_multilayer3.png ├── test_table_0_0_0_multilayer4.png ├── test_table_13_4011_3088.grid.json ├── test_table_13_4011_3088.png ├── test_table_13_4011_3088_empty.grid.json ├── test_table_13_4011_3088_limit_2.grid.json ├── test_table_13_4011_3088_limit_2.png ├── test_table_13_4011_3088_styled.png ├── test_table_13_4011_3088_styled_black.png ├── test_table_13_4011_3088_svg1.png ├── test_table_13_4011_3088_svg2.png ├── test_table_15_16046_12354_styled_black.png ├── test_table_15_16046_12354_styled_blue.png ├── test_table_1_0_0.png ├── test_table_2_1_1.png ├── test_table_3_3_3.png ├── test_turbo_carto_greens_13_4011_3088.png ├── test_turbo_carto_reds_13_4011_3088.png ├── text_wrap.png ├── text_wrap_bad.png ├── torque │ ├── populated_places_simple_reduced-2.1.1.png │ ├── populated_places_simple_reduced-2.2.1.png │ └── populated_places_simple_reduced-turbo-carto-2.2.1.png ├── turbo-carto-named-maps-blues.png └── turbo-carto-named-maps-reds.png ├── index.js ├── integration ├── analysis-backend-limits-test.js ├── mapconfig-named-layers-datasource-test.js ├── mapconfig-named-layers-expanded-test.js ├── mapconfig-overviews-adapter-test.js ├── metrics-test.js ├── overviews-metadata-api-test.js ├── pg-query-runner-test.js ├── profiler-test.js ├── query-tables-test.js └── template-maps-limits-test.js ├── monkey ├── images │ ├── layers.png │ ├── marker-shadow.png │ ├── marker.png │ ├── popup-close.png │ ├── zoom-in.png │ └── zoom-out.png ├── index.html ├── leaflet.css ├── leaflet.ie.css └── leaflet.js ├── results ├── jpeg │ └── .gitignore └── png │ └── .gitignore ├── support ├── assert.js ├── libredis_cell.dylib ├── libredis_cell.so ├── map-store.js ├── middlewares │ ├── teapot-conditional-response.js │ ├── teapot-headers.js │ └── teapot-response.js ├── sql │ ├── .gitignore │ ├── analysis_catalog.sql │ ├── cdb_analysis_check.sql │ ├── cdb_invalidate_varnish.sql │ ├── countries_null_values.sql │ ├── gadm4.sql │ ├── ported │ │ └── populated_places_simple_reduced.sql │ ├── users.sql │ └── windshaft.test.sql ├── test-client.js └── test-helper.js └── unit ├── backends ├── layer-stats │ ├── mapnik-layer-stats-test.js │ └── torque-layer-stats-test.js └── turbo-carto-postgres-datasource-test.js ├── cache └── model │ └── named-maps-entry-test.js ├── cdb-request-test.js ├── error-messages-test.js ├── error-middleware-test.js ├── lzma-middleware-test.js ├── mapconfig ├── adapter-test.js └── dataviews-widgets-adapter-test.js ├── middlewares └── coordinates-test.js ├── model ├── filter │ └── bbox-filters-test.js └── resource-locator-test.js ├── overviews-query-rewriter-test.js ├── ported ├── profiler-test.js ├── stats-client-test.js └── windshaft-server-test.js ├── prepare-context-test.js ├── stats └── reporter │ └── named-map-provider-test.js ├── substitution-tokens-test.js ├── table-name-parser-test.js ├── template-maps-auth-test.js ├── template-maps-defaults-test.js ├── template-maps-test.js ├── utils └── date-wrapper-test.js └── valid-template-maps-test.js /.cloudbuild/.id_github_cartofante.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.cloudbuild/.id_github_cartofante.enc -------------------------------------------------------------------------------- /.cloudbuild/build-windshaft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.cloudbuild/build-windshaft.yaml -------------------------------------------------------------------------------- /.cloudbuild/known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.cloudbuild/known_hosts -------------------------------------------------------------------------------- /.cloudbuild/pr-tests-windshaft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.cloudbuild/pr-tests-windshaft.yaml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/.gitmodules -------------------------------------------------------------------------------- /HOW_TO_RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/HOW_TO_RELEASE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/LICENSE -------------------------------------------------------------------------------- /LOGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/LOGGING.md -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/app.js -------------------------------------------------------------------------------- /assets/default-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/assets/default-placeholder.png -------------------------------------------------------------------------------- /assets/default-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/assets/default-placeholder@2x.png -------------------------------------------------------------------------------- /assets/render-timeout-fallback.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/assets/render-timeout-fallback.mvt -------------------------------------------------------------------------------- /assets/render-timeout-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/assets/render-timeout-fallback.png -------------------------------------------------------------------------------- /assets/render-timeout-fallback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/assets/render-timeout-fallback@2x.png -------------------------------------------------------------------------------- /carto-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/carto-package.json -------------------------------------------------------------------------------- /config/environments/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/config/environments/config.js -------------------------------------------------------------------------------- /config/environments/development.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/config/environments/development.js.example -------------------------------------------------------------------------------- /config/environments/production.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/config/environments/production.js.example -------------------------------------------------------------------------------- /config/environments/staging.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/config/environments/staging.js.example -------------------------------------------------------------------------------- /config/environments/test.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/config/environments/test.js.example -------------------------------------------------------------------------------- /docs/examples/01-example.md: -------------------------------------------------------------------------------- 1 | ## Example 1 -------------------------------------------------------------------------------- /docs/guides/01-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/01-quickstart.md -------------------------------------------------------------------------------- /docs/guides/02-general-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/02-general-concepts.md -------------------------------------------------------------------------------- /docs/guides/03-anonymous-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/03-anonymous-maps.md -------------------------------------------------------------------------------- /docs/guides/04-named-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/04-named-maps.md -------------------------------------------------------------------------------- /docs/guides/05-static-maps-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/05-static-maps-API.md -------------------------------------------------------------------------------- /docs/guides/06-tile-aggregation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/06-tile-aggregation.md -------------------------------------------------------------------------------- /docs/guides/07-MapConfig-file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/07-MapConfig-file-format.md -------------------------------------------------------------------------------- /docs/guides/08-MapConfig-aggregation-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/08-MapConfig-aggregation-extension.md -------------------------------------------------------------------------------- /docs/guides/09-MapConfig-analyses-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/09-MapConfig-analyses-extension.md -------------------------------------------------------------------------------- /docs/guides/10-MapConfig-dataviews-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/10-MapConfig-dataviews-extension.md -------------------------------------------------------------------------------- /docs/guides/11-Mapconfig-named-maps-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/guides/11-Mapconfig-named-maps-extension.md -------------------------------------------------------------------------------- /docs/internal/multilayer-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/internal/multilayer-API.md -------------------------------------------------------------------------------- /docs/reference/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/reference/swagger.yaml -------------------------------------------------------------------------------- /docs/support/01-support-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/01-support-options.md -------------------------------------------------------------------------------- /docs/support/02-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/02-contribute.md -------------------------------------------------------------------------------- /docs/support/03-rate-limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/03-rate-limiting.md -------------------------------------------------------------------------------- /docs/support/04-timeout-limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/04-timeout-limiting.md -------------------------------------------------------------------------------- /docs/support/05-quota-limiting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/05-quota-limiting.md -------------------------------------------------------------------------------- /docs/support/06-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/docs/support/06-metrics.md -------------------------------------------------------------------------------- /lib/api/api-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/api-router.js -------------------------------------------------------------------------------- /lib/api/map/analyses-catalog-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/analyses-catalog-controller.js -------------------------------------------------------------------------------- /lib/api/map/analysis-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/analysis-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/map/anonymous-map-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/anonymous-map-controller.js -------------------------------------------------------------------------------- /lib/api/map/attributes-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/attributes-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/map/clustered-features-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/clustered-features-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/map/dataview-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/dataview-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/map/map-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/map-router.js -------------------------------------------------------------------------------- /lib/api/map/preview-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/preview-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/map/preview-template-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/preview-template-controller.js -------------------------------------------------------------------------------- /lib/api/map/tile-layergroup-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/map/tile-layergroup-controller.js -------------------------------------------------------------------------------- /lib/api/middlewares/augment-layergroup-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/augment-layergroup-data.js -------------------------------------------------------------------------------- /lib/api/middlewares/authorize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/authorize.js -------------------------------------------------------------------------------- /lib/api/middlewares/cache-channel-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/cache-channel-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/cache-control-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/cache-control-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/check-json-content-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/check-json-content-type.js -------------------------------------------------------------------------------- /lib/api/middlewares/check-static-image-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/check-static-image-format.js -------------------------------------------------------------------------------- /lib/api/middlewares/clean-up-query-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/clean-up-query-params.js -------------------------------------------------------------------------------- /lib/api/middlewares/client-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/client-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/coordinates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/coordinates.js -------------------------------------------------------------------------------- /lib/api/middlewares/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/cors.js -------------------------------------------------------------------------------- /lib/api/middlewares/credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/credentials.js -------------------------------------------------------------------------------- /lib/api/middlewares/db-conn-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/db-conn-setup.js -------------------------------------------------------------------------------- /lib/api/middlewares/error-middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/error-middleware.js -------------------------------------------------------------------------------- /lib/api/middlewares/increment-map-view-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/increment-map-view-count.js -------------------------------------------------------------------------------- /lib/api/middlewares/initialize-status-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/initialize-status-code.js -------------------------------------------------------------------------------- /lib/api/middlewares/last-modified-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/last-modified-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/last-updated-time-layergroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/last-updated-time-layergroup.js -------------------------------------------------------------------------------- /lib/api/middlewares/layer-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/layer-stats.js -------------------------------------------------------------------------------- /lib/api/middlewares/layergroup-id-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/layergroup-id-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/layergroup-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/layergroup-metadata.js -------------------------------------------------------------------------------- /lib/api/middlewares/layergroup-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/layergroup-token.js -------------------------------------------------------------------------------- /lib/api/middlewares/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/logger.js -------------------------------------------------------------------------------- /lib/api/middlewares/lzma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/lzma.js -------------------------------------------------------------------------------- /lib/api/middlewares/map-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/map-error.js -------------------------------------------------------------------------------- /lib/api/middlewares/map-store-map-config-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/map-store-map-config-provider.js -------------------------------------------------------------------------------- /lib/api/middlewares/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/metrics.js -------------------------------------------------------------------------------- /lib/api/middlewares/named-map-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/named-map-provider.js -------------------------------------------------------------------------------- /lib/api/middlewares/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/noop.js -------------------------------------------------------------------------------- /lib/api/middlewares/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/profiler.js -------------------------------------------------------------------------------- /lib/api/middlewares/rate-limit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/rate-limit.js -------------------------------------------------------------------------------- /lib/api/middlewares/send-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/send-response.js -------------------------------------------------------------------------------- /lib/api/middlewares/served-by-host-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/served-by-host-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/surrogate-key-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/surrogate-key-header.js -------------------------------------------------------------------------------- /lib/api/middlewares/syntax-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/syntax-error.js -------------------------------------------------------------------------------- /lib/api/middlewares/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/tag.js -------------------------------------------------------------------------------- /lib/api/middlewares/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/user.js -------------------------------------------------------------------------------- /lib/api/middlewares/vector-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/middlewares/vector-error.js -------------------------------------------------------------------------------- /lib/api/template/admin-template-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/template/admin-template-controller.js -------------------------------------------------------------------------------- /lib/api/template/named-template-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/template/named-template-controller.js -------------------------------------------------------------------------------- /lib/api/template/template-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/template/template-router.js -------------------------------------------------------------------------------- /lib/api/template/tile-template-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/api/template/tile-template-controller.js -------------------------------------------------------------------------------- /lib/backends/analysis-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/analysis-status.js -------------------------------------------------------------------------------- /lib/backends/analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/analysis.js -------------------------------------------------------------------------------- /lib/backends/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/auth.js -------------------------------------------------------------------------------- /lib/backends/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/cluster.js -------------------------------------------------------------------------------- /lib/backends/dataview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/dataview.js -------------------------------------------------------------------------------- /lib/backends/filter-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/filter-stats.js -------------------------------------------------------------------------------- /lib/backends/layer-stats/empty-layer-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/layer-stats/empty-layer-stats.js -------------------------------------------------------------------------------- /lib/backends/layer-stats/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/layer-stats/factory.js -------------------------------------------------------------------------------- /lib/backends/layer-stats/layer-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/layer-stats/layer-stats.js -------------------------------------------------------------------------------- /lib/backends/layer-stats/mapnik-layer-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/layer-stats/mapnik-layer-stats.js -------------------------------------------------------------------------------- /lib/backends/layer-stats/torque-layer-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/layer-stats/torque-layer-stats.js -------------------------------------------------------------------------------- /lib/backends/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/metrics.js -------------------------------------------------------------------------------- /lib/backends/overviews-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/overviews-metadata.js -------------------------------------------------------------------------------- /lib/backends/pg-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/pg-connection.js -------------------------------------------------------------------------------- /lib/backends/pg-query-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/pg-query-runner.js -------------------------------------------------------------------------------- /lib/backends/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/stats.js -------------------------------------------------------------------------------- /lib/backends/tables-extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/tables-extent.js -------------------------------------------------------------------------------- /lib/backends/template-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/template-maps.js -------------------------------------------------------------------------------- /lib/backends/turbo-carto-postgres-datasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/turbo-carto-postgres-datasource.js -------------------------------------------------------------------------------- /lib/backends/user-limits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/backends/user-limits.js -------------------------------------------------------------------------------- /lib/cache/backend/fastly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/backend/fastly.js -------------------------------------------------------------------------------- /lib/cache/backend/varnish-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/backend/varnish-http.js -------------------------------------------------------------------------------- /lib/cache/layergroup-affected-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/layergroup-affected-tables.js -------------------------------------------------------------------------------- /lib/cache/model/named-maps-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/model/named-maps-entry.js -------------------------------------------------------------------------------- /lib/cache/named-map-provider-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/named-map-provider-cache.js -------------------------------------------------------------------------------- /lib/cache/surrogate-keys-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/cache/surrogate-keys-cache.js -------------------------------------------------------------------------------- /lib/models/aggregation/aggregation-mapconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/aggregation/aggregation-mapconfig.js -------------------------------------------------------------------------------- /lib/models/aggregation/aggregation-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/aggregation/aggregation-query.js -------------------------------------------------------------------------------- /lib/models/aggregation/aggregation-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/aggregation/aggregation-validator.js -------------------------------------------------------------------------------- /lib/models/aggregation/time-dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/aggregation/time-dimension.js -------------------------------------------------------------------------------- /lib/models/cdb-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/cdb-request.js -------------------------------------------------------------------------------- /lib/models/dataview/aggregation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/aggregation.js -------------------------------------------------------------------------------- /lib/models/dataview/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/base.js -------------------------------------------------------------------------------- /lib/models/dataview/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/factory.js -------------------------------------------------------------------------------- /lib/models/dataview/formula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/formula.js -------------------------------------------------------------------------------- /lib/models/dataview/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/histogram.js -------------------------------------------------------------------------------- /lib/models/dataview/histograms/base-histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/histograms/base-histogram.js -------------------------------------------------------------------------------- /lib/models/dataview/histograms/date-histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/histograms/date-histogram.js -------------------------------------------------------------------------------- /lib/models/dataview/histograms/numeric-histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/histograms/numeric-histogram.js -------------------------------------------------------------------------------- /lib/models/dataview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/index.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/aggregation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/aggregation.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/base.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/factory.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/formula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/formula.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/histogram.js -------------------------------------------------------------------------------- /lib/models/dataview/overviews/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/dataview/overviews/index.js -------------------------------------------------------------------------------- /lib/models/filter/analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/analysis.js -------------------------------------------------------------------------------- /lib/models/filter/analysis/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/analysis/category.js -------------------------------------------------------------------------------- /lib/models/filter/analysis/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/analysis/range.js -------------------------------------------------------------------------------- /lib/models/filter/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/bbox.js -------------------------------------------------------------------------------- /lib/models/filter/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/circle.js -------------------------------------------------------------------------------- /lib/models/filter/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/filter/polygon.js -------------------------------------------------------------------------------- /lib/models/layergroup-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/layergroup-token.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/aggregation-mapconfig-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/aggregation-mapconfig-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/analysis-mapconfig-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/analysis-mapconfig-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/dataviews-widgets-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/dataviews-widgets-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/index.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/mapconfig-buffer-size-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/mapconfig-buffer-size-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/mapconfig-named-layers-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/mapconfig-named-layers-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/mapconfig-overviews-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/mapconfig-overviews-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/sql-wrap-mapconfig-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/sql-wrap-mapconfig-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/turbo-carto-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/turbo-carto-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/adapter/vector-mapconfig-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/adapter/vector-mapconfig-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/provider/base-mapconfig-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/provider/base-mapconfig-adapter.js -------------------------------------------------------------------------------- /lib/models/mapconfig/provider/create-layergroup-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/provider/create-layergroup-provider.js -------------------------------------------------------------------------------- /lib/models/mapconfig/provider/map-store-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/provider/map-store-provider.js -------------------------------------------------------------------------------- /lib/models/mapconfig/provider/named-map-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/mapconfig/provider/named-map-provider.js -------------------------------------------------------------------------------- /lib/models/resource-locator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/models/resource-locator.js -------------------------------------------------------------------------------- /lib/monitoring/health-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/monitoring/health-check.js -------------------------------------------------------------------------------- /lib/server-info-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/server-info-controller.js -------------------------------------------------------------------------------- /lib/server-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/server-options.js -------------------------------------------------------------------------------- /lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/server.js -------------------------------------------------------------------------------- /lib/stats/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/stats/client.js -------------------------------------------------------------------------------- /lib/stats/profiler-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/stats/profiler-proxy.js -------------------------------------------------------------------------------- /lib/stats/reporter/named-map-provider-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/stats/reporter/named-map-provider-cache.js -------------------------------------------------------------------------------- /lib/stats/reporter/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/stats/reporter/renderer.js -------------------------------------------------------------------------------- /lib/stats/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/stats/timer.js -------------------------------------------------------------------------------- /lib/utils/common-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/common-headers.js -------------------------------------------------------------------------------- /lib/utils/database-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/database-params.js -------------------------------------------------------------------------------- /lib/utils/date-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/date-wrapper.js -------------------------------------------------------------------------------- /lib/utils/icu-data-env-setter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/icu-data-env-setter.js -------------------------------------------------------------------------------- /lib/utils/json-replacer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/json-replacer.js -------------------------------------------------------------------------------- /lib/utils/layergroup-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/layergroup-metadata.js -------------------------------------------------------------------------------- /lib/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/logger.js -------------------------------------------------------------------------------- /lib/utils/on-tile-error-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/on-tile-error-strategy.js -------------------------------------------------------------------------------- /lib/utils/overviews-query-rewriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/overviews-query-rewriter.js -------------------------------------------------------------------------------- /lib/utils/query-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/query-utils.js -------------------------------------------------------------------------------- /lib/utils/substitution-tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/substitution-tokens.js -------------------------------------------------------------------------------- /lib/utils/table-name-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/lib/utils/table-name-parser.js -------------------------------------------------------------------------------- /metro/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/metro/config.json -------------------------------------------------------------------------------- /metro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/metro/index.js -------------------------------------------------------------------------------- /metro/log-collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/metro/log-collector.js -------------------------------------------------------------------------------- /metro/metrics-collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/metro/metrics-collector.js -------------------------------------------------------------------------------- /metro/metro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/metro/metro.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/package.json -------------------------------------------------------------------------------- /scripts/darwin-pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/scripts/darwin-pre-install.sh -------------------------------------------------------------------------------- /scripts/lzma2config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/scripts/lzma2config.js -------------------------------------------------------------------------------- /scripts/mvt-timeout-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/scripts/mvt-timeout-error.py -------------------------------------------------------------------------------- /test/acceptance/aggregation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/aggregation-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analyses-controller-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analyses-controller-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analyses-filters-params-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analyses-filters-params-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analyses-filters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analyses-filters-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analysis-layers-dataviews-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analysis-layers-dataviews-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analysis-layers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analysis-layers-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/analysis-layers-use-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/analysis-layers-use-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/error-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/error-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/named-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/named-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/analysis/regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/analysis/regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/auth/authorization-basic-use-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/auth/authorization-basic-use-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/auth/authorization-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/auth/authorization-test.js -------------------------------------------------------------------------------- /test/acceptance/buffer-size-format-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/buffer-size-format-test.js -------------------------------------------------------------------------------- /test/acceptance/cache/cache-control-header-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/cache/cache-control-header-test.js -------------------------------------------------------------------------------- /test/acceptance/cache/cache-headers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/cache/cache-headers-test.js -------------------------------------------------------------------------------- /test/acceptance/cache/surrogate-keys-invalidation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/cache/surrogate-keys-invalidation-test.js -------------------------------------------------------------------------------- /test/acceptance/cluster-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/cluster-test.js -------------------------------------------------------------------------------- /test/acceptance/custom-middlewares-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/custom-middlewares-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/aggregation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/aggregation-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/error-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/error-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/formula-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/formula-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/histogram-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/histogram-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/overviews-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/overviews-test.js -------------------------------------------------------------------------------- /test/acceptance/dataviews/spatial-filters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dataviews/spatial-filters-test.js -------------------------------------------------------------------------------- /test/acceptance/date-wrapping-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/date-wrapping-test.js -------------------------------------------------------------------------------- /test/acceptance/dynamic-styling-named-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/dynamic-styling-named-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/errors-with-context-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/errors-with-context-test.js -------------------------------------------------------------------------------- /test/acceptance/health-check-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/health-check-test.js -------------------------------------------------------------------------------- /test/acceptance/label-wrap-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/label-wrap-test.js -------------------------------------------------------------------------------- /test/acceptance/layergroup-metadata-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/layergroup-metadata-test.js -------------------------------------------------------------------------------- /test/acceptance/layergroupid-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/layergroupid-test.js -------------------------------------------------------------------------------- /test/acceptance/layers-filters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/layers-filters-test.js -------------------------------------------------------------------------------- /test/acceptance/map-view-headers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/map-view-headers-test.js -------------------------------------------------------------------------------- /test/acceptance/max-waiting-workers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/max-waiting-workers-test.js -------------------------------------------------------------------------------- /test/acceptance/multilayer-server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/multilayer-server-test.js -------------------------------------------------------------------------------- /test/acceptance/multilayer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/multilayer-test.js -------------------------------------------------------------------------------- /test/acceptance/mvt-regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/mvt-regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/mvt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/mvt-test.js -------------------------------------------------------------------------------- /test/acceptance/named-layers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-layers-test.js -------------------------------------------------------------------------------- /test/acceptance/named-layers-visibility-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-layers-visibility-test.js -------------------------------------------------------------------------------- /test/acceptance/named-map-cache-regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-map-cache-regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/named-maps-authentication-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-maps-authentication-test.js -------------------------------------------------------------------------------- /test/acceptance/named-maps-cache-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-maps-cache-test.js -------------------------------------------------------------------------------- /test/acceptance/named-maps-static-view-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-maps-static-view-test.js -------------------------------------------------------------------------------- /test/acceptance/named-maps-stats-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/named-maps-stats-test.js -------------------------------------------------------------------------------- /test/acceptance/overviews-metadata-named-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/overviews-metadata-named-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/overviews-metadata-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/overviews-metadata-test.js -------------------------------------------------------------------------------- /test/acceptance/overviews-queries-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/overviews-queries-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/attributes-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/attributes-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/blend-filtering-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/blend-filtering-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/blend-http-fallback-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/blend-http-fallback-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/blend-http-timeout-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/blend-http-timeout-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/blend-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/blend-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/external-resources-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/external-resources-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.layer0.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.layer0.grid.json -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.layer1.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.layer1.grid.json -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer1.png -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer2.png -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer3.png -------------------------------------------------------------------------------- /test/acceptance/ported/fixtures/test_table_0_0_0_multilayer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/fixtures/test_table_0_0_0_multilayer4.png -------------------------------------------------------------------------------- /test/acceptance/ported/limits-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/limits-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/multilayer-error-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/multilayer-error-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/multilayer-interactivity-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/multilayer-interactivity-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/multilayer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/multilayer-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/raster-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/raster-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/retina-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/retina-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/server-gettile-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/server-gettile-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/server-png8-format-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/server-png8-format-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/server-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/static-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/static-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/support/ported-server-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/support/ported-server-options.js -------------------------------------------------------------------------------- /test/acceptance/ported/support/test-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/support/test-client.js -------------------------------------------------------------------------------- /test/acceptance/ported/torque-boundaries-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/torque-boundaries-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/torque-png-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/torque-png-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/torque-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/torque-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/torque-zero-zero-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/torque-zero-zero-test.js -------------------------------------------------------------------------------- /test/acceptance/ported/wrap-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/ported/wrap-test.js -------------------------------------------------------------------------------- /test/acceptance/rate-limit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/rate-limit-test.js -------------------------------------------------------------------------------- /test/acceptance/regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/server-test.js -------------------------------------------------------------------------------- /test/acceptance/special-numeric-values-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/special-numeric-values-test.js -------------------------------------------------------------------------------- /test/acceptance/sql-wrap-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/sql-wrap-test.js -------------------------------------------------------------------------------- /test/acceptance/stats/mapnik-stats-layergroup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/stats/mapnik-stats-layergroup-test.js -------------------------------------------------------------------------------- /test/acceptance/stats/multilayer-stats-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/stats/multilayer-stats-test.js -------------------------------------------------------------------------------- /test/acceptance/templates-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/templates-test.js -------------------------------------------------------------------------------- /test/acceptance/tilejson-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/tilejson-test.js -------------------------------------------------------------------------------- /test/acceptance/turbo-carto/anonymous-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/turbo-carto/anonymous-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/turbo-carto/error-cases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/turbo-carto/error-cases-test.js -------------------------------------------------------------------------------- /test/acceptance/turbo-carto/named-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/turbo-carto/named-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/turbo-carto/regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/turbo-carto/regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/user-database-timeout-limit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/user-database-timeout-limit-test.js -------------------------------------------------------------------------------- /test/acceptance/user-render-timeout-limit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/user-render-timeout-limit-test.js -------------------------------------------------------------------------------- /test/acceptance/vector-layergroup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/vector-layergroup-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/aggregation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/aggregation-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/histogram-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/histogram-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/named-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/named-maps-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/ported/aggregation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/ported/aggregation-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/ported/formula-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/ported/formula-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/ported/histogram-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/ported/histogram-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/regressions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/regressions-test.js -------------------------------------------------------------------------------- /test/acceptance/widgets/widgets-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/acceptance/widgets/widgets-test.js -------------------------------------------------------------------------------- /test/fixtures/_vovw_1_test_table_1_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/_vovw_1_test_table_1_0_0.png -------------------------------------------------------------------------------- /test/fixtures/_vovw_2_test_table_2_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/_vovw_2_test_table_2_1_1.png -------------------------------------------------------------------------------- /test/fixtures/analysis/adm0cap-source-id-mapnik-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/adm0cap-source-id-mapnik-layer.png -------------------------------------------------------------------------------- /test/fixtures/analysis/basic-source-id-mapnik-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/basic-source-id-mapnik-layer.png -------------------------------------------------------------------------------- /test/fixtures/analysis/buffer-over-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/buffer-over-source.png -------------------------------------------------------------------------------- /test/fixtures/analysis/named-map-buffer-layergroup-static-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/named-map-buffer-layergroup-static-preview.png -------------------------------------------------------------------------------- /test/fixtures/analysis/named-map-buffer-static-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/named-map-buffer-static-preview.png -------------------------------------------------------------------------------- /test/fixtures/analysis/named-map-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/analysis/named-map-buffer.png -------------------------------------------------------------------------------- /test/fixtures/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blank.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-0.1-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-0.1-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-0.2-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-0.2-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-0.3-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-0.3-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-1.2-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-1.2-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-1.2.3.4-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-1.2.3.4-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-1.2.5-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-1.2.5-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-1.3-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-1.3-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-2.1-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-2.1-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-filtering-layers-2.2-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-filtering-layers-2.2-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-plain-torque-2.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-plain-torque-2.1.1.png -------------------------------------------------------------------------------- /test/fixtures/blend/blend-plain-torque-2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/blend-plain-torque-2.2.1.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-0.3-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-0.3-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-0.4-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-0.4-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-1.2-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-1.2-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-1.3-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-1.3-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-2.3-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-2.3-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-3.4-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-3.4-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/blend/http_fallback/blend-layers-all-zxy-1.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/blend/http_fallback/blend-layers-all-zxy-1.0.0.png -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-7.64.48-buffer-size-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-7.64.48-buffer-size-0.png -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.geojson -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.grid.json -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-7.64.48-buffer-size-128.png -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-grid.json.7.64.48-buffer-size-0.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-grid.json.7.64.48-buffer-size-0.grid.json -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-0.geojson -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-0.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-0.mvt -------------------------------------------------------------------------------- /test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-128.mvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/buffer-size/tile-mvt-7.64.48-buffer-size-128.mvt -------------------------------------------------------------------------------- /test/fixtures/http/basemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/http/basemap.png -------------------------------------------------------------------------------- /test/fixtures/http/dark_nolabels-1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/http/dark_nolabels-1-0-0.png -------------------------------------------------------------------------------- /test/fixtures/http/light_nolabels-1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/http/light_nolabels-1-0-0.png -------------------------------------------------------------------------------- /test/fixtures/limits/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/limits/fallback.png -------------------------------------------------------------------------------- /test/fixtures/markers/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/markers/circle.svg -------------------------------------------------------------------------------- /test/fixtures/markers/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/markers/square.svg -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-bounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-bounds.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-estimated-proj5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-estimated-proj5.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-estimated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-estimated.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-override-bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-override-bbox.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-override-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-override-zoom.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_all.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_blue.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_orange.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_orange_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_orange_blue.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_red.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_blue.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_orange.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_orange_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_red_orange_blue.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-preview_layers_undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-preview_layers_undefined.png -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-zoom-center.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-zoom-center.jpeg -------------------------------------------------------------------------------- /test/fixtures/previews/populated_places_simple_reduced-zoom-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/previews/populated_places_simple_reduced-zoom-center.png -------------------------------------------------------------------------------- /test/fixtures/provider/populated_places_simple_reduced-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/provider/populated_places_simple_reduced-black.png -------------------------------------------------------------------------------- /test/fixtures/provider/populated_places_simple_reduced-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/provider/populated_places_simple_reduced-blue.png -------------------------------------------------------------------------------- /test/fixtures/provider/populated_places_simple_reduced-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/provider/populated_places_simple_reduced-green.png -------------------------------------------------------------------------------- /test/fixtures/provider/populated_places_simple_reduced-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/provider/populated_places_simple_reduced-red.png -------------------------------------------------------------------------------- /test/fixtures/raster_gray_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/raster_gray_rect.png -------------------------------------------------------------------------------- /test/fixtures/render-timeout-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/render-timeout-fallback.png -------------------------------------------------------------------------------- /test/fixtures/sql-wrap-usa-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/sql-wrap-usa-filter.png -------------------------------------------------------------------------------- /test/fixtures/test_bigpoint_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_bigpoint_red.png -------------------------------------------------------------------------------- /test/fixtures/test_default_mapnik_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_default_mapnik_point.png -------------------------------------------------------------------------------- /test/fixtures/test_mapconfigFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_mapconfigFactory.js -------------------------------------------------------------------------------- /test/fixtures/test_multilayer_bbox.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_multilayer_bbox.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_multilayer_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_multilayer_bbox.png -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer1.layer0.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer1.layer0.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer1.layer1.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer1.layer1.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer1.png -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer2.png -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer3.png -------------------------------------------------------------------------------- /test/fixtures/test_table_0_0_0_multilayer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_0_0_0_multilayer4.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_empty.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_empty.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_limit_2.grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_limit_2.grid.json -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_limit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_limit_2.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_styled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_styled.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_styled_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_styled_black.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_svg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_svg1.png -------------------------------------------------------------------------------- /test/fixtures/test_table_13_4011_3088_svg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_13_4011_3088_svg2.png -------------------------------------------------------------------------------- /test/fixtures/test_table_15_16046_12354_styled_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_15_16046_12354_styled_black.png -------------------------------------------------------------------------------- /test/fixtures/test_table_15_16046_12354_styled_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_15_16046_12354_styled_blue.png -------------------------------------------------------------------------------- /test/fixtures/test_table_1_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_1_0_0.png -------------------------------------------------------------------------------- /test/fixtures/test_table_2_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_2_1_1.png -------------------------------------------------------------------------------- /test/fixtures/test_table_3_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_table_3_3_3.png -------------------------------------------------------------------------------- /test/fixtures/test_turbo_carto_greens_13_4011_3088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_turbo_carto_greens_13_4011_3088.png -------------------------------------------------------------------------------- /test/fixtures/test_turbo_carto_reds_13_4011_3088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/test_turbo_carto_reds_13_4011_3088.png -------------------------------------------------------------------------------- /test/fixtures/text_wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/text_wrap.png -------------------------------------------------------------------------------- /test/fixtures/text_wrap_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/text_wrap_bad.png -------------------------------------------------------------------------------- /test/fixtures/torque/populated_places_simple_reduced-2.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/torque/populated_places_simple_reduced-2.1.1.png -------------------------------------------------------------------------------- /test/fixtures/torque/populated_places_simple_reduced-2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/torque/populated_places_simple_reduced-2.2.1.png -------------------------------------------------------------------------------- /test/fixtures/torque/populated_places_simple_reduced-turbo-carto-2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/torque/populated_places_simple_reduced-turbo-carto-2.2.1.png -------------------------------------------------------------------------------- /test/fixtures/turbo-carto-named-maps-blues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/turbo-carto-named-maps-blues.png -------------------------------------------------------------------------------- /test/fixtures/turbo-carto-named-maps-reds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/fixtures/turbo-carto-named-maps-reds.png -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/index.js -------------------------------------------------------------------------------- /test/integration/analysis-backend-limits-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/analysis-backend-limits-test.js -------------------------------------------------------------------------------- /test/integration/mapconfig-named-layers-datasource-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/mapconfig-named-layers-datasource-test.js -------------------------------------------------------------------------------- /test/integration/mapconfig-named-layers-expanded-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/mapconfig-named-layers-expanded-test.js -------------------------------------------------------------------------------- /test/integration/mapconfig-overviews-adapter-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/mapconfig-overviews-adapter-test.js -------------------------------------------------------------------------------- /test/integration/metrics-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/metrics-test.js -------------------------------------------------------------------------------- /test/integration/overviews-metadata-api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/overviews-metadata-api-test.js -------------------------------------------------------------------------------- /test/integration/pg-query-runner-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/pg-query-runner-test.js -------------------------------------------------------------------------------- /test/integration/profiler-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/profiler-test.js -------------------------------------------------------------------------------- /test/integration/query-tables-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/query-tables-test.js -------------------------------------------------------------------------------- /test/integration/template-maps-limits-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/integration/template-maps-limits-test.js -------------------------------------------------------------------------------- /test/monkey/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/layers.png -------------------------------------------------------------------------------- /test/monkey/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/marker-shadow.png -------------------------------------------------------------------------------- /test/monkey/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/marker.png -------------------------------------------------------------------------------- /test/monkey/images/popup-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/popup-close.png -------------------------------------------------------------------------------- /test/monkey/images/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/zoom-in.png -------------------------------------------------------------------------------- /test/monkey/images/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/images/zoom-out.png -------------------------------------------------------------------------------- /test/monkey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/index.html -------------------------------------------------------------------------------- /test/monkey/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/leaflet.css -------------------------------------------------------------------------------- /test/monkey/leaflet.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/leaflet.ie.css -------------------------------------------------------------------------------- /test/monkey/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/monkey/leaflet.js -------------------------------------------------------------------------------- /test/results/jpeg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/results/jpeg/.gitignore -------------------------------------------------------------------------------- /test/results/png/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.js 3 | -------------------------------------------------------------------------------- /test/support/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/assert.js -------------------------------------------------------------------------------- /test/support/libredis_cell.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/libredis_cell.dylib -------------------------------------------------------------------------------- /test/support/libredis_cell.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/libredis_cell.so -------------------------------------------------------------------------------- /test/support/map-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/map-store.js -------------------------------------------------------------------------------- /test/support/middlewares/teapot-conditional-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/middlewares/teapot-conditional-response.js -------------------------------------------------------------------------------- /test/support/middlewares/teapot-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/middlewares/teapot-headers.js -------------------------------------------------------------------------------- /test/support/middlewares/teapot-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/middlewares/teapot-response.js -------------------------------------------------------------------------------- /test/support/sql/.gitignore: -------------------------------------------------------------------------------- 1 | CDB_*.sql 2 | -------------------------------------------------------------------------------- /test/support/sql/analysis_catalog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/analysis_catalog.sql -------------------------------------------------------------------------------- /test/support/sql/cdb_analysis_check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/cdb_analysis_check.sql -------------------------------------------------------------------------------- /test/support/sql/cdb_invalidate_varnish.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/cdb_invalidate_varnish.sql -------------------------------------------------------------------------------- /test/support/sql/countries_null_values.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/countries_null_values.sql -------------------------------------------------------------------------------- /test/support/sql/gadm4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/gadm4.sql -------------------------------------------------------------------------------- /test/support/sql/ported/populated_places_simple_reduced.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/ported/populated_places_simple_reduced.sql -------------------------------------------------------------------------------- /test/support/sql/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/users.sql -------------------------------------------------------------------------------- /test/support/sql/windshaft.test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/sql/windshaft.test.sql -------------------------------------------------------------------------------- /test/support/test-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/test-client.js -------------------------------------------------------------------------------- /test/support/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/support/test-helper.js -------------------------------------------------------------------------------- /test/unit/backends/layer-stats/mapnik-layer-stats-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/backends/layer-stats/mapnik-layer-stats-test.js -------------------------------------------------------------------------------- /test/unit/backends/layer-stats/torque-layer-stats-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/backends/layer-stats/torque-layer-stats-test.js -------------------------------------------------------------------------------- /test/unit/backends/turbo-carto-postgres-datasource-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/backends/turbo-carto-postgres-datasource-test.js -------------------------------------------------------------------------------- /test/unit/cache/model/named-maps-entry-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/cache/model/named-maps-entry-test.js -------------------------------------------------------------------------------- /test/unit/cdb-request-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/cdb-request-test.js -------------------------------------------------------------------------------- /test/unit/error-messages-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/error-messages-test.js -------------------------------------------------------------------------------- /test/unit/error-middleware-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/error-middleware-test.js -------------------------------------------------------------------------------- /test/unit/lzma-middleware-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/lzma-middleware-test.js -------------------------------------------------------------------------------- /test/unit/mapconfig/adapter-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/mapconfig/adapter-test.js -------------------------------------------------------------------------------- /test/unit/mapconfig/dataviews-widgets-adapter-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/mapconfig/dataviews-widgets-adapter-test.js -------------------------------------------------------------------------------- /test/unit/middlewares/coordinates-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/middlewares/coordinates-test.js -------------------------------------------------------------------------------- /test/unit/model/filter/bbox-filters-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/model/filter/bbox-filters-test.js -------------------------------------------------------------------------------- /test/unit/model/resource-locator-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/model/resource-locator-test.js -------------------------------------------------------------------------------- /test/unit/overviews-query-rewriter-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/overviews-query-rewriter-test.js -------------------------------------------------------------------------------- /test/unit/ported/profiler-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/ported/profiler-test.js -------------------------------------------------------------------------------- /test/unit/ported/stats-client-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/ported/stats-client-test.js -------------------------------------------------------------------------------- /test/unit/ported/windshaft-server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/ported/windshaft-server-test.js -------------------------------------------------------------------------------- /test/unit/prepare-context-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/prepare-context-test.js -------------------------------------------------------------------------------- /test/unit/stats/reporter/named-map-provider-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/stats/reporter/named-map-provider-test.js -------------------------------------------------------------------------------- /test/unit/substitution-tokens-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/substitution-tokens-test.js -------------------------------------------------------------------------------- /test/unit/table-name-parser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/table-name-parser-test.js -------------------------------------------------------------------------------- /test/unit/template-maps-auth-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/template-maps-auth-test.js -------------------------------------------------------------------------------- /test/unit/template-maps-defaults-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/template-maps-defaults-test.js -------------------------------------------------------------------------------- /test/unit/template-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/template-maps-test.js -------------------------------------------------------------------------------- /test/unit/utils/date-wrapper-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/utils/date-wrapper-test.js -------------------------------------------------------------------------------- /test/unit/valid-template-maps-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/Windshaft-cartodb/HEAD/test/unit/valid-template-maps-test.js --------------------------------------------------------------------------------