├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── ci-upgrade.yaml ├── dpkg-versions.yaml ├── ghci.yaml ├── monthly-release ├── publish.yaml ├── renovate.json5 └── workflows │ ├── main.yaml │ ├── monthly-release.yaml │ ├── pull-request-automation.yaml │ └── rebuild.yaml ├── .gitignore ├── .hadolint.yaml ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.yaml ├── BREAKING-CHANGES.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── checkstyle_checks.xml ├── checkstyle_suppressions.xml ├── ci ├── check-fonts ├── requirements.txt └── validate-container ├── core ├── .dockerignore ├── Dockerfile ├── build.gradle ├── docker │ └── usr │ │ ├── local │ │ └── tomcat │ │ │ ├── bin │ │ │ ├── docker-pre-stop-print │ │ │ ├── docker-start-print │ │ │ ├── docker-start-watch │ │ │ └── setenv.sh │ │ │ ├── conf │ │ │ ├── logback-access.xml │ │ │ ├── logback-custom.xml │ │ │ └── logback.xml │ │ │ └── webapps │ │ │ └── ROOT │ │ │ └── WEB-INF │ │ │ └── lib │ │ │ └── Cadastra.jar │ │ └── share │ │ └── fonts │ │ └── truetype │ │ ├── font-awesome-5 │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ │ └── font-awesome-6 │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.ttf │ │ └── fa-v4compatibility.ttf ├── extraConfigFor │ ├── acceptanceTests │ │ └── mapfish-spring-application-context-override.xml │ └── docs │ │ └── mapfish-spring-application-context-override.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── mapfish │ │ │ └── print │ │ │ ├── ApplicationContextProvider.java │ │ │ ├── Constants.java │ │ │ ├── ExceptionUtils.java │ │ │ ├── ExtraPropertyException.java │ │ │ ├── FileUtils.java │ │ │ ├── FloatingPointUtil.java │ │ │ ├── FontTools.java │ │ │ ├── IllegalFileAccessException.java │ │ │ ├── ImageIOPluginScanner.java │ │ │ ├── ImageInit.java │ │ │ ├── ImageUtils.java │ │ │ ├── MapPrinter.java │ │ │ ├── MapPrinterFactory.java │ │ │ ├── MissingPropertyException.java │ │ │ ├── OptionalUtils.java │ │ │ ├── PrintException.java │ │ │ ├── RegexpUtil.java │ │ │ ├── SetsUtils.java │ │ │ ├── StatsUtils.java │ │ │ ├── SvgUtil.java │ │ │ ├── URIUtils.java │ │ │ ├── VersionInfo.java │ │ │ ├── WaitDB.java │ │ │ ├── attribute │ │ │ ├── Attribute.java │ │ │ ├── BooleanAttribute.java │ │ │ ├── DataSourceAttribute.java │ │ │ ├── FeaturesAttribute.java │ │ │ ├── FloatAttribute.java │ │ │ ├── HttpRequestHeadersAttribute.java │ │ │ ├── IntegerAttribute.java │ │ │ ├── InternalAttribute.java │ │ │ ├── JsonDatasourceAttribute.java │ │ │ ├── LegendAttribute.java │ │ │ ├── NorthArrowAttribute.java │ │ │ ├── PrimitiveAttribute.java │ │ │ ├── ReflectiveAttribute.java │ │ │ ├── ScalebarAttribute.java │ │ │ ├── StringArrayAttribute.java │ │ │ ├── StringAttribute.java │ │ │ ├── StyleAttribute.java │ │ │ ├── TableAttribute.java │ │ │ ├── map │ │ │ │ ├── AreaOfInterest.java │ │ │ │ ├── BBoxMapBounds.java │ │ │ │ ├── CenterScaleMapBounds.java │ │ │ │ ├── GenericMapAttribute.java │ │ │ │ ├── MapAttribute.java │ │ │ │ ├── MapBounds.java │ │ │ │ ├── MapLayer.java │ │ │ │ ├── MapfishMapContext.java │ │ │ │ ├── OverviewMapAttribute.java │ │ │ │ ├── PagingAttribute.java │ │ │ │ ├── StaticLayersAttribute.java │ │ │ │ ├── ZoomLevelSnapStrategy.java │ │ │ │ ├── ZoomLevels.java │ │ │ │ ├── ZoomToFeatures.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── cli │ │ │ ├── CliDefinition.java │ │ │ ├── CliHelpDefinition.java │ │ │ ├── CliServletContext.java │ │ │ ├── Main.java │ │ │ └── package-info.java │ │ │ ├── config │ │ │ ├── Configuration.java │ │ │ ├── ConfigurationException.java │ │ │ ├── ConfigurationFactory.java │ │ │ ├── ConfigurationObject.java │ │ │ ├── CustomFontLoader.java │ │ │ ├── HasConfiguration.java │ │ │ ├── MapfishPrintConstructor.java │ │ │ ├── PDFConfig.java │ │ │ ├── ReportStorage.java │ │ │ ├── S3ReportStorage.java │ │ │ ├── SmtpConfig.java │ │ │ ├── Template.java │ │ │ ├── WorkingDirectories.java │ │ │ ├── access │ │ │ │ ├── AccessAssertion.java │ │ │ │ ├── AccessAssertionPersister.java │ │ │ │ ├── AlwaysAllowAssertion.java │ │ │ │ ├── AndAccessAssertion.java │ │ │ │ ├── RoleAccessAssertion.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── http │ │ │ ├── AbstractMfClientHttpRequestFactoryWrapper.java │ │ │ ├── CertificateStore.java │ │ │ ├── ConfigFileResolvingHttpRequestFactory.java │ │ │ ├── ConfigFileResolvingRequest.java │ │ │ ├── ConfigurableRequest.java │ │ │ ├── ErrorResponseClientHttpResponse.java │ │ │ ├── HttpCredential.java │ │ │ ├── HttpProxy.java │ │ │ ├── HttpRequestFetcher.java │ │ │ ├── MfClientHttpRequestFactory.java │ │ │ ├── MfClientHttpRequestFactoryImpl.java │ │ │ ├── MfCredentialsProvider.java │ │ │ ├── MfRoutePlanner.java │ │ │ ├── MfSSLSocketFactory.java │ │ │ ├── UserAgentCreator.java │ │ │ ├── Utils.java │ │ │ └── package-info.java │ │ │ ├── jasperreports │ │ │ ├── HumanAlphaSerie.java │ │ │ └── package-info.java │ │ │ ├── map │ │ │ ├── AbstractLayerParams.java │ │ │ ├── CustomEPSGCodes.java │ │ │ ├── DistanceUnit.java │ │ │ ├── MapLayerFactoryPlugin.java │ │ │ ├── Scale.java │ │ │ ├── geotools │ │ │ │ ├── AbstractFeatureSourceLayer.java │ │ │ │ ├── AbstractFeatureSourceLayerPlugin.java │ │ │ │ ├── AbstractGeotoolsLayer.java │ │ │ │ ├── AbstractGridCoverageLayerPlugin.java │ │ │ │ ├── AbstractVectorLayerParam.java │ │ │ │ ├── CachingUrihandler.java │ │ │ │ ├── FeatureLayer.java │ │ │ │ ├── FeatureSourceSupplier.java │ │ │ │ ├── FeaturesParser.java │ │ │ │ ├── GeoJsonLayer.java │ │ │ │ ├── GeotiffLayer.java │ │ │ │ ├── GmlLayer.java │ │ │ │ ├── OpacitySettingStyleVisitor.java │ │ │ │ ├── StyleSupplier.java │ │ │ │ ├── function │ │ │ │ │ ├── FunctionFactory.java │ │ │ │ │ ├── MultiplicationFunction.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── grid │ │ │ │ │ ├── FontStyle.java │ │ │ │ │ ├── GridFontParam.java │ │ │ │ │ ├── GridLabel.java │ │ │ │ │ ├── GridLabelFormat.java │ │ │ │ │ ├── GridLayer.java │ │ │ │ │ ├── GridLayerPlugin.java │ │ │ │ │ ├── GridParam.java │ │ │ │ │ ├── GridType.java │ │ │ │ │ ├── GridUtils.java │ │ │ │ │ ├── LabelPositionCollector.java │ │ │ │ │ ├── LineGridStrategy.java │ │ │ │ │ ├── LineGridStyle.java │ │ │ │ │ ├── LinearCoordinateSequence.java │ │ │ │ │ ├── PointGridStrategy.java │ │ │ │ │ ├── PointGridStyle.java │ │ │ │ │ ├── RotationQuadrant.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── image │ │ │ │ ├── AbstractSingleImageLayer.java │ │ │ │ ├── ImageLayer.java │ │ │ │ ├── package-info.java │ │ │ │ └── wms │ │ │ │ │ ├── WmsLayer.java │ │ │ │ │ ├── WmsLayerFactoryPlugin.java │ │ │ │ │ ├── WmsLayerParam.java │ │ │ │ │ ├── WmsUtilities.java │ │ │ │ │ ├── WmsVersion.java │ │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── style │ │ │ │ ├── ParserPluginUtils.java │ │ │ │ ├── SLDParserPlugin.java │ │ │ │ ├── StyleParser.java │ │ │ │ ├── StyleParserPlugin.java │ │ │ │ ├── json │ │ │ │ │ ├── ColorParser.java │ │ │ │ │ ├── JsonStyleParserHelper.java │ │ │ │ │ ├── MapfishJsonStyleVersion1.java │ │ │ │ │ ├── MapfishJsonStyleVersion2.java │ │ │ │ │ ├── MapfishStyleParserPlugin.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── tiled │ │ │ │ ├── AbstractTiledLayer.java │ │ │ │ ├── AbstractTiledLayerParams.java │ │ │ │ ├── AbstractWMXLayerParams.java │ │ │ │ ├── CoverageTask.java │ │ │ │ ├── TileInformation.java │ │ │ │ ├── TilePreparationInfo.java │ │ │ │ ├── TilePreparationTask.java │ │ │ │ ├── osm │ │ │ │ ├── OsmLayer.java │ │ │ │ ├── OsmLayerParam.java │ │ │ │ ├── OsmLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ │ ├── package-info.java │ │ │ │ ├── wms │ │ │ │ ├── TiledWmsLayer.java │ │ │ │ ├── TiledWmsLayerParam.java │ │ │ │ ├── TiledWmsLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ │ └── wmts │ │ │ │ ├── Matrix.java │ │ │ │ ├── RequestEncoding.java │ │ │ │ ├── WMTSLayer.java │ │ │ │ ├── WMTSLayerParam.java │ │ │ │ ├── WmtsLayerParserPlugin.java │ │ │ │ └── package-info.java │ │ │ ├── metrics │ │ │ ├── HealthCheckRegistryContextListener.java │ │ │ ├── HealthCheckingRegistry.java │ │ │ ├── JmxMetricsReporter.java │ │ │ ├── JobQueueHealthCheck.java │ │ │ ├── JvmMetricsConfigurator.java │ │ │ ├── LoggingMetricsConfigurator.java │ │ │ ├── MapfishPrintInstrumentedFilterContextListener.java │ │ │ ├── MetricsNameStrategyFactory.java │ │ │ ├── MetricsRegistryContextListener.java │ │ │ ├── UnhealthyCountersHealthCheck.java │ │ │ └── package-info.java │ │ │ ├── output │ │ │ ├── AbstractJasperReportOutputFormat.java │ │ │ ├── AttributeParsingException.java │ │ │ ├── JRPdfExporterWeakHashMap.java │ │ │ ├── JasperReportExcelOutputFormat.java │ │ │ ├── JasperReportImageOutputFormat.java │ │ │ ├── JasperReportPDFOutputFormat.java │ │ │ ├── JasperReportSvgOutputFormat.java │ │ │ ├── MapExportOutputFormat.java │ │ │ ├── MapfishPrintRepositoryService.java │ │ │ ├── OutputFormat.java │ │ │ ├── ResourceBundleClassLoader.java │ │ │ ├── Values.java │ │ │ ├── ValuesLogger.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── parser │ │ │ ├── CanSatisfyOneOf.java │ │ │ ├── HasDefaultValue.java │ │ │ ├── MapfishParser.java │ │ │ ├── OneOf.java │ │ │ ├── OneOfTracker.java │ │ │ ├── ParserUtils.java │ │ │ ├── Requires.java │ │ │ ├── RequiresTracker.java │ │ │ └── package-info.java │ │ │ ├── processor │ │ │ ├── AbstractProcessor.java │ │ │ ├── CustomDependencies.java │ │ │ ├── ExecutionStats.java │ │ │ ├── InputOutputValue.java │ │ │ ├── InputValue.java │ │ │ ├── InternalValue.java │ │ │ ├── OutputValue.java │ │ │ ├── PdfConfigurationProcessor.java │ │ │ ├── Processor.java │ │ │ ├── ProcessorDependency.java │ │ │ ├── ProcessorDependencyGraph.java │ │ │ ├── ProcessorDependencyGraphFactory.java │ │ │ ├── ProcessorExecutionContext.java │ │ │ ├── ProcessorGraphNode.java │ │ │ ├── ProcessorUtils.java │ │ │ ├── ProvideAttributes.java │ │ │ ├── RequireAttributes.java │ │ │ ├── http │ │ │ │ ├── AbstractClientHttpRequestFactoryProcessor.java │ │ │ │ ├── AddHeadersProcessor.java │ │ │ │ ├── ClientHttpFactoryProcessorParam.java │ │ │ │ ├── CompositeClientHttpRequestFactoryProcessor.java │ │ │ │ ├── ForwardHeadersProcessor.java │ │ │ │ ├── HttpProcessor.java │ │ │ │ ├── MapUriProcessor.java │ │ │ │ ├── MfClientHttpRequestFactoryProvider.java │ │ │ │ ├── RestrictUrisProcessor.java │ │ │ │ ├── UseHttpForHttpsProcessor.java │ │ │ │ ├── matcher │ │ │ │ │ ├── AbstractMatcher.java │ │ │ │ │ ├── AcceptAllMatcher.java │ │ │ │ │ ├── AddressHostMatcher.java │ │ │ │ │ ├── DnsHostMatcher.java │ │ │ │ │ ├── HostMatcher.java │ │ │ │ │ ├── HostnameMatcher.java │ │ │ │ │ ├── InetHostMatcher.java │ │ │ │ │ ├── LocalHostMatcher.java │ │ │ │ │ ├── MatchInfo.java │ │ │ │ │ ├── URIMatcher.java │ │ │ │ │ ├── UriMatchers.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── jasper │ │ │ │ ├── DataSourceProcessor.java │ │ │ │ ├── DateFormatProcessor.java │ │ │ │ ├── HttpImageResolver.java │ │ │ │ ├── ImagesSubReport.java │ │ │ │ ├── JasperReportBuilder.java │ │ │ │ ├── LegendProcessor.java │ │ │ │ ├── MergeDataSourceProcessor.java │ │ │ │ ├── TableColumnConverter.java │ │ │ │ ├── TableDataSource.java │ │ │ │ ├── TableProcessor.java │ │ │ │ └── package-info.java │ │ │ ├── map │ │ │ │ ├── AddStaticLayersProcessor.java │ │ │ │ ├── ConstantClipGraphics2D.java │ │ │ │ ├── CreateMapPagesProcessor.java │ │ │ │ ├── CreateMapProcessor.java │ │ │ │ ├── CreateNorthArrowProcessor.java │ │ │ │ ├── CreateOverviewMapProcessor.java │ │ │ │ ├── ImageWriter.java │ │ │ │ ├── NorthArrowGraphic.java │ │ │ │ ├── SetFeaturesProcessor.java │ │ │ │ ├── SetStyleProcessor.java │ │ │ │ ├── SetTiledWmsProcessor.java │ │ │ │ ├── SetWmsCustomParamProcessor.java │ │ │ │ ├── SvgFileGenerator.java │ │ │ │ ├── package-info.java │ │ │ │ └── scalebar │ │ │ │ │ ├── BarScalebarDrawer.java │ │ │ │ │ ├── BarSubScalebarDrawer.java │ │ │ │ │ ├── CreateScalebarProcessor.java │ │ │ │ │ ├── HorizontalAlign.java │ │ │ │ │ ├── Label.java │ │ │ │ │ ├── LineScalebarDrawer.java │ │ │ │ │ ├── Orientation.java │ │ │ │ │ ├── ScaleBarRenderSettings.java │ │ │ │ │ ├── ScalebarDrawer.java │ │ │ │ │ ├── ScalebarGraphic.java │ │ │ │ │ ├── Type.java │ │ │ │ │ ├── VerticalAlign.java │ │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── servlet │ │ │ ├── BaseMapServlet.java │ │ │ ├── BooleanHandleReportLoadResult.java │ │ │ ├── ConfigBasedServletInfo.java │ │ │ ├── HandleReportLoadResult.java │ │ │ ├── MapPrinterServlet.java │ │ │ ├── NoOpAuthenticationManager.java │ │ │ ├── NoSuchAppException.java │ │ │ ├── RequestSizeFilter.java │ │ │ ├── ServletInfo.java │ │ │ ├── ServletMapPrinterFactory.java │ │ │ ├── VoidHandleReportLoadResult.java │ │ │ ├── fileloader │ │ │ │ ├── AbstractFileConfigFileLoader.java │ │ │ │ ├── ClasspathConfigFileLoader.java │ │ │ │ ├── ConfigFileLoaderManager.java │ │ │ │ ├── ConfigFileLoaderPlugin.java │ │ │ │ ├── FileConfigFileLoader.java │ │ │ │ ├── ServletConfigFileLoader.java │ │ │ │ └── package-info.java │ │ │ ├── job │ │ │ │ ├── Accounting.java │ │ │ │ ├── HibernateAccounting.java │ │ │ │ ├── HibernateAccountingEntry.java │ │ │ │ ├── JobManager.java │ │ │ │ ├── JobQueue.java │ │ │ │ ├── NoSuchReferenceException.java │ │ │ │ ├── PrintJob.java │ │ │ │ ├── PrintJobEntry.java │ │ │ │ ├── PrintJobResult.java │ │ │ │ ├── PrintJobStatus.java │ │ │ │ ├── impl │ │ │ │ │ ├── FilePrintJob.java │ │ │ │ │ ├── PrintJobEntryImpl.java │ │ │ │ │ ├── PrintJobResultImpl.java │ │ │ │ │ ├── PrintJobStatusImpl.java │ │ │ │ │ ├── RegistryJobQueue.java │ │ │ │ │ ├── SubmittedPrintJob.java │ │ │ │ │ ├── ThreadPoolJobManager.java │ │ │ │ │ ├── hibernate │ │ │ │ │ │ ├── AccessAssertionUserType.java │ │ │ │ │ │ ├── HibernateJobQueue.java │ │ │ │ │ │ ├── HibernatePrintJob.java │ │ │ │ │ │ ├── HibernateReportLoader.java │ │ │ │ │ │ ├── PJsonObjectUserType.java │ │ │ │ │ │ ├── PrintJobDao.java │ │ │ │ │ │ ├── PrintJobResultExtImpl.java │ │ │ │ │ │ ├── PrintJobStatusExtImpl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── loader │ │ │ │ │ ├── FileReportLoader.java │ │ │ │ │ ├── ReportLoader.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── registry │ │ │ │ ├── BasicRegistry.java │ │ │ │ ├── Registry.java │ │ │ │ └── package-info.java │ │ │ ├── test │ │ │ └── util │ │ │ │ ├── AttributeTesting.java │ │ │ │ ├── ImageSimilarity.java │ │ │ │ └── package-info.java │ │ │ ├── url │ │ │ ├── data │ │ │ │ ├── DataUrlConnection.java │ │ │ │ ├── Handler.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ └── wrapper │ │ │ ├── ObjectMissingException.java │ │ │ ├── PAbstractObject.java │ │ │ ├── PArray.java │ │ │ ├── PElement.java │ │ │ ├── PJoinedArray.java │ │ │ ├── PObject.java │ │ │ ├── json │ │ │ ├── InvalidJsonValueException.java │ │ │ ├── PJsonArray.java │ │ │ ├── PJsonObject.java │ │ │ └── package-info.java │ │ │ ├── multi │ │ │ ├── PMultiObject.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── yaml │ │ │ ├── PYamlArray.java │ │ │ ├── PYamlObject.java │ │ │ └── package-info.java │ ├── resources │ │ ├── META-INF │ │ │ └── services │ │ │ │ ├── org.geotools.api.referencing.crs.CRSAuthorityFactory │ │ │ │ └── org.geotools.filter.FunctionFactory │ │ ├── default_error.png │ │ ├── epsg.properties │ │ ├── logback.xml │ │ ├── mapfish-cli-spring-application-context.xml │ │ ├── mapfish-spring-access-assertions.xml │ │ ├── mapfish-spring-application-context-override-db.xml │ │ ├── mapfish-spring-application-context-override.xml │ │ ├── mapfish-spring-application-context.xml │ │ ├── mapfish-spring-attributes.xml │ │ ├── mapfish-spring-config-file-loaders.xml │ │ ├── mapfish-spring-config-objects.xml │ │ ├── mapfish-spring-config-output-formats.xml │ │ ├── mapfish-spring-custom-fonts.xml │ │ ├── mapfish-spring-hibernate.xml │ │ ├── mapfish-spring-layer-parser.xml │ │ ├── mapfish-spring-named-styles.xml │ │ ├── mapfish-spring-processors.xml │ │ ├── mapfish-spring-security.xml │ │ ├── mapfish-spring-style-parsers.xml │ │ ├── mapfish-spring.properties │ │ ├── net │ │ │ └── opengis │ │ │ │ └── schemas │ │ │ │ └── wfs │ │ │ │ ├── 1.0.0 │ │ │ │ ├── OGC-exception.xsd │ │ │ │ ├── WFS-basic.xsd │ │ │ │ ├── WFS-capabilities.xsd │ │ │ │ ├── WFS-transaction.xsd │ │ │ │ └── wfs.xsd │ │ │ │ ├── 1.1.0 │ │ │ │ └── wfs.xsd │ │ │ │ └── 2.0 │ │ │ │ └── wfs.xsd │ │ ├── org │ │ │ └── mapfish │ │ │ │ └── print │ │ │ │ ├── map │ │ │ │ └── renderers │ │ │ │ │ └── svgZoomOut.xsl │ │ │ │ ├── processor │ │ │ │ ├── jasper │ │ │ │ │ └── dynamic-table-default.jrxml │ │ │ │ └── map │ │ │ │ │ ├── License.md │ │ │ │ │ └── NorthArrow_10.svg │ │ │ │ └── version.properties │ │ ├── shell-default-log.xml │ │ ├── shell-info-log.xml │ │ ├── shell-quiet-log.xml │ │ └── shell-verbose-log.xml │ └── webapp │ │ ├── WEB-INF │ │ ├── classes │ │ │ └── logback.xml │ │ ├── mapfish-print-printer-factory.xml │ │ ├── mapfish-print-servlet.xml │ │ └── web.xml │ │ ├── favicon.ico │ │ ├── index.html │ │ └── mapfish_transparent.png │ ├── scripts │ ├── print │ └── print.bat │ └── test │ ├── java │ └── org │ │ └── mapfish │ │ └── print │ │ ├── AbstractMapfishSpringTest.java │ │ ├── StatsUtilsTest.java │ │ ├── TestHttpClientFactory.java │ │ ├── URIUtilsTest.java │ │ ├── attribute │ │ ├── AbstractAttributeTest.java │ │ ├── AllRegisteredReflectiveAttributeValidationTest.java │ │ ├── BooleanAttributeTest.java │ │ ├── DataSourceAttributeTest.java │ │ ├── FeaturesAttributeTest.java │ │ ├── FloatAttributeTest.java │ │ ├── HttpRequestHeadersAttributeTest.java │ │ ├── IntegerAttributeTest.java │ │ ├── JsonDatasourceAttributeTest.java │ │ ├── LegendAttributeTest.java │ │ ├── ReflectiveAttributeTest.java │ │ ├── ScalebarAttributeTest.java │ │ ├── StringArrayAttributeTest.java │ │ ├── StringAttributeTest.java │ │ ├── StyleAttributeTest.java │ │ ├── TableAttributeTest.java │ │ └── map │ │ │ ├── BBoxMapBoundsTest.java │ │ │ ├── BasicMapAttributeTest.java │ │ │ ├── CenterScaleMapBoundsTest.java │ │ │ ├── GenericMapAttributeTest.java │ │ │ ├── MapAttributeTest.java │ │ │ ├── OverviewMapAttributeTest.java │ │ │ ├── ScaleAdjustmentAccuracyTest.java │ │ │ ├── TestMapAttribute.java │ │ │ └── ZoomLevelsTest.java │ │ ├── cli │ │ └── MainTest.java │ │ ├── config │ │ ├── AttributeWithConfigurationInjection.java │ │ ├── AttributeWithSpringInjection.java │ │ ├── ConfigurationFactoryAllConfigObjectMustBePrototypeTest.java │ │ ├── ConfigurationFactoryTest.java │ │ ├── ConfigurationTest.java │ │ ├── CustomFontLoaderTest.java │ │ ├── ProcessorWithConfigurationInjection.java │ │ ├── ProcessorWithSpringInjection.java │ │ ├── WorkingDirectoriesTest.java │ │ ├── access │ │ │ ├── AccessAssertionPersisterTest.java │ │ │ ├── AccessAssertionTestUtil.java │ │ │ ├── AlwaysAllowAssertionTest.java │ │ │ ├── AndAccessAssertionTest.java │ │ │ ├── RoleAccessAssertionTest.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── http │ │ ├── ConfigFileResolvingHttpRequestFactoryTest.java │ │ ├── ConfigFileResolvingRequestTest.java │ │ ├── HttpConfigurationTest.java │ │ ├── HttpCredentialTest.java │ │ ├── HttpProxyTest.java │ │ └── MfClientHttpRequestFactoryImplTest.java │ │ ├── map │ │ ├── DistanceUnitTest.java │ │ ├── ScaleTest.java │ │ ├── geotools │ │ │ ├── FeaturesParserTest.java │ │ │ ├── GeoJsonLayerTest.java │ │ │ ├── GeotiffLayerFactoryPluginTest.java │ │ │ └── grid │ │ │ │ ├── GridUtilsTest.java │ │ │ │ ├── LineGridStrategyTest.java │ │ │ │ └── PointGridStrategyTest.java │ │ ├── image │ │ │ ├── AbstractSingleImageLayerTest.java │ │ │ └── wms │ │ │ │ └── WmsUtilitiesTest.java │ │ ├── style │ │ │ ├── FileSLDParserPluginTest.java │ │ │ ├── ParserPluginUtilsTest.java │ │ │ ├── URLSLDParserPluginTest.java │ │ │ └── json │ │ │ │ ├── ColorParserTest.java │ │ │ │ ├── JsonStyleParserHelperTest.java │ │ │ │ ├── MapfishJsonFileResolverTest.java │ │ │ │ ├── MapfishJsonStyleVersion2Test.java │ │ │ │ └── MapfishStyleParserPluginTest.java │ │ └── tiled │ │ │ ├── AbstractWMXLayerParamsTest.java │ │ │ ├── SingleTileLoaderTaskTest.java │ │ │ ├── osm │ │ │ ├── OsmLayerParamTest.java │ │ │ └── OsmLayerTest.java │ │ │ └── wmts │ │ │ ├── WMTSLayerParamTest.java │ │ │ └── WMTSLayerTest.java │ │ ├── metrics │ │ ├── JobQueueHealthCheckTest.java │ │ └── UnhealthyCountersHealthCheckTest.java │ │ ├── output │ │ ├── AbstractJasperReportOutputFormatTest.java │ │ ├── JRPdfExporterWeakHashMapTest.java │ │ ├── JasperReportOutputFormatSimpleMapTest.java │ │ ├── JasperReportPDFOutputFormatTest.java │ │ ├── JasperReportSvgOutputFormatTest.java │ │ └── ValuesTest.java │ │ ├── parser │ │ └── MapfishParserTest.java │ │ ├── processor │ │ ├── AbstractProcessorTest.java │ │ ├── PdfConfigurationProcessorTest.java │ │ ├── ProcessorDependencyGraphFactoryTest.java │ │ ├── ProcessorDependencyGraphTest.java │ │ ├── ProcessorGraphNodeTest.java │ │ ├── SetStyleProcessorTest.java │ │ ├── http │ │ │ ├── AbstractHttpProcessorTest.java │ │ │ ├── AddHeadersProcessorTest.java │ │ │ ├── CompositeClientHttpRequestFactoryProcessorTest.java │ │ │ ├── ForwardHeadersProcessorTest.java │ │ │ ├── MapUriBug228ProcessorTest.java │ │ │ ├── MapUriProcessorTest.java │ │ │ ├── RestrictUrisProcessorTest.java │ │ │ ├── UseHttpForHttpsProcessorTest.java │ │ │ └── matcher │ │ │ │ ├── AcceptAllMatcherTest.java │ │ │ │ ├── AddressHostMatcherTest.java │ │ │ │ ├── DnsHostMatcherTest.java │ │ │ │ ├── HostnameMatcherTest.java │ │ │ │ ├── LocalHostMatcherTest.java │ │ │ │ └── MatcherTestUtils.java │ │ ├── jasper │ │ │ ├── DataSourceProcessorTest.java │ │ │ ├── DateFormatProcessorTest.java │ │ │ ├── HttpImageResolverTest.java │ │ │ ├── IconTaskTest.java │ │ │ ├── LegendProcessorTest.java │ │ │ ├── MapSubReportTest.java │ │ │ ├── MergeDataSourceProcessorIntegrationTest.java │ │ │ ├── MergeDataSourceProcessorTest.java │ │ │ └── TableProcessorTest.java │ │ └── map │ │ │ ├── AddBackgroundLayersTest.java │ │ │ ├── AddOverlayLayersTest.java │ │ │ ├── CreateMapPagesFailOnErrorProcessorTest.java │ │ │ ├── CreateMapPagesForceFailOnErrorProcessorTest.java │ │ │ ├── CreateMapPagesProcessorTest.java │ │ │ ├── CreateMapPagesProcessorZoomToFeatureTest.java │ │ │ ├── CreateMapProcessorAoiForBoundsTest.java │ │ │ ├── CreateMapProcessorAoiTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentFlexibleScaleTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentMinScaleTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToExtentTest.java │ │ │ ├── CreateMapProcessorCenterGeoJsonZoomToTest.java │ │ │ ├── CreateMapProcessorCenterGeojsonEmptyCollection.java │ │ │ ├── CreateMapProcessorCenterGeojsonJsonStyleHighDpi.java │ │ │ ├── CreateMapProcessorCenterGeojsonJsonStyleV1.java │ │ │ ├── CreateMapProcessorCenterWMSRotationSmallTilesTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSRestTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSRotationTest.java │ │ │ ├── CreateMapProcessorFixedScaleAndCenterWMTSTest.java │ │ │ ├── CreateMapProcessorFixedScaleBBoxGeoJsonTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedNumlinesPointTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedNumlinesTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridFixedSpacingPointTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterGridSpacingTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmDpiTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmRotationTest.java │ │ │ ├── CreateMapProcessorFixedScaleCenterOsmTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleAndCenterGeoTiffTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleBBoxGeoJsonTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleBBoxGmlTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterTiledWmsTest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0Test.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0_DPITest.java │ │ │ ├── CreateMapProcessorFlexibleScaleCenterWms1_0_0_DPI_SVG_Test.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesLinesNoRotateLabelsTest.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointAltLabelProjTest.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointCRS84Test.java │ │ │ ├── CreateMapProcessorGridFixedNumlinesPointRotatedTest.java │ │ │ ├── CreateMapProcessorImageLayerTest.java │ │ │ ├── CreateMapProcessorLabelGeoJsonTest.java │ │ │ ├── CreateMapProcessorLineVsPolygonStyleGeoJsonTest.java │ │ │ ├── CreateMapProcessorOpacityWMTSTest.java │ │ │ ├── CreateMapProcessorRenderTypeTest.java │ │ │ ├── CreateMapProcessorScaleBBoxNativeRotationWms1_3_0Test.java │ │ │ ├── CreateMapProcessorWmtsBufferTest.java │ │ │ ├── CreateNorthArrowProcessorSvgTest.java │ │ │ ├── CreateNorthArrowProcessorTest.java │ │ │ ├── CreateOverviewMapProcessorCustomBounds.java │ │ │ ├── CreateOverviewMapProcessorCustomLayerTest.java │ │ │ ├── CreateOverviewMapProcessorRotateTest.java │ │ │ ├── CreateOverviewMapProcessorStyleTest.java │ │ │ ├── CreateOverviewMapProcessorTest.java │ │ │ ├── MapfishMapContextTest.java │ │ │ ├── NorthArrowGraphicTest.java │ │ │ ├── SetFeaturesProcessorTest.java │ │ │ ├── SetTiledWmsProcessorTest.java │ │ │ ├── SetWmsCustomParamProcessorTest.java │ │ │ ├── TiledWMSUtil.java │ │ │ ├── package-info.java │ │ │ └── scalebar │ │ │ ├── CreateScaleBarProcessorFixedScaleCenterOsmTest.java │ │ │ ├── ScalebarDrawerTest.java │ │ │ └── ScalebarGraphicTest.java │ │ ├── servlet │ │ ├── ClusteredMapPrinterServletTest.java │ │ ├── MapPrinterServletSecurityTest.java │ │ ├── MapPrinterServletTest.java │ │ ├── SmtpProviderTestUtils.java │ │ ├── TestS3ReportStorage.java │ │ ├── fileloader │ │ │ ├── AbstractConfigLoaderTest.java │ │ │ ├── ClasspathConfigFileLoaderTest.java │ │ │ ├── FileConfigFileLoaderTest.java │ │ │ └── ServletConfigFileLoaderTest.java │ │ ├── job │ │ │ ├── ClusteringTaskTest.java │ │ │ └── PostResultToRegistryTaskTest.java │ │ └── registry │ │ │ └── BasicRegistryTest.java │ │ ├── test │ │ └── util │ │ │ └── ImageSimilarityTest.java │ │ ├── url │ │ └── data │ │ │ ├── TestDataUrlConnection.java │ │ │ └── TestHandler.java │ │ └── wrapper │ │ └── yaml │ │ ├── PYamlArrayTest.java │ │ └── PYamlObjectTest.java │ └── resources │ ├── META-INF │ └── services │ │ └── javax.mail.Provider │ ├── fonts │ ├── ComingSoon.ttf │ └── LICENSE.txt │ ├── icons │ ├── info-crosswalk-9.png │ └── warn.png │ ├── logback.xml │ ├── map-data │ ├── geojson │ │ ├── ny-roads-3857.json │ │ └── states.json │ ├── gml │ │ ├── spearfish-streams-v2.gml │ │ ├── spearfish-streams-v311.gml │ │ ├── spearfish-streams-v32.gml │ │ └── tiger_roads.kml │ ├── icons │ │ └── men-at-work.jpeg │ ├── legends │ │ ├── arbres.png │ │ ├── legend1.png │ │ ├── legend2.png │ │ ├── legend3.png │ │ ├── legend4.png │ │ ├── perturbations.png │ │ ├── points-de-vente.png │ │ └── stationement.png │ ├── ny-tiles │ │ ├── 1205x1538.png │ │ ├── 1205x1539.png │ │ ├── 1205x1540.png │ │ ├── 1206x1538.png │ │ ├── 1206x1539.png │ │ ├── 1206x1540.png │ │ ├── 1207x1538.png │ │ ├── 1207x1539.png │ │ └── 1207x1540.png │ ├── ol-demo.html │ ├── openlayers │ │ ├── OpenLayers.js │ │ ├── img │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── cloud-popup-relative.png │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── east-mini.png │ │ │ ├── layer-switcher-maximize.png │ │ │ ├── layer-switcher-minimize.png │ │ │ ├── marker-blue.png │ │ │ ├── marker-gold.png │ │ │ ├── marker-green.png │ │ │ ├── marker.png │ │ │ ├── measuring-stick-off.png │ │ │ ├── measuring-stick-on.png │ │ │ ├── north-mini.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── slider.png │ │ │ ├── south-mini.png │ │ │ ├── west-mini.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ └── zoombar.png │ │ ├── ol-demo.cfg │ │ ├── readme.txt │ │ └── theme │ │ │ └── default │ │ │ ├── framedCloud.css │ │ │ ├── img │ │ │ ├── add_point_off.png │ │ │ ├── add_point_on.png │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── draw_line_off.png │ │ │ ├── draw_line_on.png │ │ │ ├── draw_point_off.png │ │ │ ├── draw_point_on.png │ │ │ ├── draw_polygon_off.png │ │ │ ├── draw_polygon_on.png │ │ │ ├── editing_tool_bar.png │ │ │ ├── move_feature_off.png │ │ │ ├── move_feature_on.png │ │ │ ├── overview_replacement.gif │ │ │ ├── pan_off.png │ │ │ ├── pan_on.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── remove_point_off.png │ │ │ ├── remove_point_on.png │ │ │ ├── view_next_off.png │ │ │ ├── view_next_on.png │ │ │ ├── view_previous_off.png │ │ │ └── view_previous_on.png │ │ │ └── style.css │ ├── osm-custom-params │ │ └── 16 │ │ │ ├── 33475 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ │ │ ├── 33476 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ │ │ └── 33477 │ │ │ ├── 23928.png │ │ │ ├── 23929.png │ │ │ └── 23930.png │ ├── osm │ │ ├── 12 │ │ │ ├── 1205 │ │ │ │ ├── 1538.png │ │ │ │ └── 1539.png │ │ │ └── 1206 │ │ │ │ ├── 1538.png │ │ │ │ └── 1539.png │ │ ├── 14 │ │ │ ├── 4823 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ ├── 4824 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ ├── 4825 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ │ └── 4826 │ │ │ │ ├── 6155.png │ │ │ │ └── 6156.png │ │ └── 15 │ │ │ ├── 9646 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9647 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9648 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9649 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9650 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ ├── 9651 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ │ │ └── 9652 │ │ │ ├── 12311.png │ │ │ ├── 12312.png │ │ │ └── 12313.png │ ├── states-native-rotation.png │ ├── styles │ │ ├── green.sld │ │ ├── remoteOws.sld │ │ └── remoteTasmania.sld │ ├── test-data │ │ └── simple-squares-geojson.json │ ├── tiger-ny.png │ ├── tiled-wms-tiles │ │ ├── -109.6544269789473_19.24097872857841_-81.65790976543605_47.23749594208966.png │ │ ├── -109.6544269789473_47.23749594208966_-81.65790976543605_75.2340131556009.png │ │ ├── -137.65094419245855_19.24097872857841_-109.6544269789473_47.23749594208966.png │ │ ├── -137.65094419245855_47.23749594208966_-109.6544269789473_75.2340131556009.png │ │ ├── -53.66139255192479_19.24097872857841_-52.34905580754146_47.23749594208966.png │ │ ├── -53.66139255192479_47.23749594208966_-52.34905580754146_75.2340131556009.png │ │ ├── -81.65790976543605_19.24097872857841_-53.66139255192479_47.23749594208966.png │ │ └── -81.65790976543605_47.23749594208966_-53.66139255192479_75.2340131556009.png │ ├── wfs-t.html │ └── zoomed-in-ny-tiger.tif │ ├── mapfish-spring-hibernate.xml │ ├── org │ └── mapfish │ │ └── print │ │ ├── attribute │ │ ├── bool │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── datasource │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── jsonDatasource │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── map │ │ │ ├── map_attributes │ │ │ │ ├── config-json-dpi.yaml │ │ │ │ ├── config-json.yaml │ │ │ │ ├── config-yaml.yaml │ │ │ │ ├── config-zoomTo.yaml │ │ │ │ ├── config-zoomToCenter.yaml │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData-json.json │ │ │ │ ├── requestData-yaml.json │ │ │ │ ├── requestData-zoomTo.json │ │ │ │ └── requestData-zoomToCenter.json │ │ │ └── overviewmap_attributes │ │ │ │ ├── config-json.yaml │ │ │ │ ├── config-yaml.yaml │ │ │ │ ├── requestData-json.json │ │ │ │ └── requestData-yaml.json │ │ ├── scalebar │ │ │ ├── config.yaml │ │ │ └── requestData.json │ │ ├── string │ │ │ ├── config.yaml │ │ │ ├── requestData.json │ │ │ └── requestDataError.json │ │ ├── stringarray │ │ │ ├── config.yaml │ │ │ ├── geojson.json │ │ │ └── requestData.json │ │ └── style_attributes │ │ │ ├── config.yaml │ │ │ └── request.json │ │ ├── cli │ │ ├── config.yaml │ │ ├── expectedV3Image.png │ │ ├── simpleReport.jrxml │ │ ├── streams.json │ │ ├── streams.sld │ │ └── v3Request.json │ │ ├── config │ │ ├── config-test-application-context.xml │ │ ├── config-test-no-prototype-application-context.xml │ │ ├── configRequiringConfigurationInjection.yaml │ │ ├── configRequiringSpringInjection.yaml │ │ ├── configThread1.yaml │ │ ├── configThread2.yaml │ │ ├── configWithAttributeAsProcessor_bad_config.yaml │ │ ├── configWithProcessorAsAttribute_bad_config.yaml │ │ └── font │ │ │ ├── config.yaml │ │ │ ├── requestData.json │ │ │ └── simpleReport.jrxml │ │ ├── http │ │ ├── configuration │ │ │ ├── config.yaml │ │ │ └── keystore.jks │ │ └── proxy │ │ │ ├── application-context-proxy-test.xml │ │ │ ├── config.yaml │ │ │ └── keystore.jks │ │ ├── map │ │ ├── geotools │ │ │ └── geojson │ │ │ │ ├── array-features-3.json │ │ │ │ ├── config.yaml │ │ │ │ ├── geojson-inconsistent-attributes-2.json │ │ │ │ ├── geojson_org-1.json │ │ │ │ └── simple-geojson-3.json │ │ └── style │ │ │ ├── json │ │ │ ├── bug_cant_transform_to_xml.json │ │ │ ├── mark.png │ │ │ ├── requestData-style-json-v1-style.json │ │ │ ├── v2-style-all-properies-as-expressions.json │ │ │ ├── v2-style-default-symbolizers.json │ │ │ └── v2-style-symbolizers-default-values.json │ │ │ ├── multipleStyles.sld │ │ │ └── singleStyle.sld │ │ ├── output │ │ ├── pdf-config-multi-images │ │ │ ├── geojson.json │ │ │ ├── map.png │ │ │ ├── multi-images.jrxml │ │ │ ├── multi-images.yaml │ │ │ ├── no-image.jrxml │ │ │ ├── no-image.yaml │ │ │ ├── one-image.jrxml │ │ │ ├── one-image.yaml │ │ │ └── requestData.json │ │ ├── pdf-config │ │ │ ├── config-defaults.yaml │ │ │ ├── config-settings-in-config.yaml │ │ │ ├── config-settings-in-template.yaml │ │ │ ├── config-template-override-config.yaml │ │ │ ├── geojson.json │ │ │ ├── logo.png │ │ │ ├── requestData.json │ │ │ └── simple-map.jrxml │ │ ├── simple_map │ │ │ ├── config-map-wrong-type.yaml │ │ │ ├── config-missing-map.yaml │ │ │ ├── config.yaml │ │ │ ├── expectedReport.png │ │ │ ├── expectedReport.svg │ │ │ ├── geojson.json │ │ │ ├── logo.png │ │ │ ├── requestData.json │ │ │ ├── simple-map-wrong-type.jrxml │ │ │ └── simple-map.jrxml │ │ └── values │ │ │ ├── config-defaults.yaml │ │ │ ├── config-no-defaults.yaml │ │ │ └── requestData.json │ │ ├── parser │ │ └── mapAttributeTest.json │ │ ├── processor │ │ ├── http │ │ │ ├── add-headers │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ │ ├── composite-client-http-request-factory │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ │ ├── forward-headers │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ ├── config-forward-all.yaml │ │ │ │ └── config.yaml │ │ │ ├── map-uri │ │ │ │ ├── NorthArrow.png │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── map-uri-228-bug-fix-config.yaml │ │ │ │ └── map-uri-228-bug-fix-processor-application-context.xml │ │ │ └── use-http-for-https │ │ │ │ ├── add-custom-processor-application-context.xml │ │ │ │ ├── config-createmap.yaml │ │ │ │ └── config.yaml │ │ ├── jasper │ │ │ ├── date-format │ │ │ │ ├── config.yaml │ │ │ │ └── requestData.json │ │ │ ├── incorrectly-configured-DataSourceProcessor │ │ │ │ ├── config.yaml │ │ │ │ └── table.jrxml │ │ │ ├── legend │ │ │ │ ├── config.yaml │ │ │ │ ├── legend.jrxml │ │ │ │ └── requestData.json │ │ │ ├── legend_dynamic │ │ │ │ ├── config.yaml │ │ │ │ ├── legend1.png │ │ │ │ ├── legend2.png │ │ │ │ ├── legend3.png │ │ │ │ └── requestData.json │ │ │ ├── merge-data-sources │ │ │ │ └── config.yaml │ │ │ ├── table-dynamic-defaults │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table-dynamic │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ │ ├── table-image-column-resolver │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport-wrong-field-type.jrxml │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table_converters │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── table_converters_dyn │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedImage.png │ │ │ │ ├── logo.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ │ └── tablelist │ │ │ │ ├── config.yaml │ │ │ │ ├── expected-page.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── table.jrxml │ │ ├── map │ │ │ ├── add-background-layers │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedOverviewImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── add-overlay-layers │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedOverviewImage.png │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── bbox_geojson_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── bbox_geojson_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_geojson_label_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_geojson_line_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ ├── requestData.json │ │ │ │ └── style.json │ │ │ ├── bbox_native_rotation_wms1_3_0_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_empty_collection │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_json_style_highdpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_json_style_v1 │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomTo │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geojson_zoomToExtent_minScale_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── center_geotiff_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── sampleGeoTiff.tif │ │ │ ├── center_gml_flexible_scale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── expectedspearfish-streams-v2.gml.png │ │ │ │ ├── expectedspearfish-streams-v311.gml.png │ │ │ │ └── requestData.json │ │ │ ├── center_gml_only_aoi_for_bounds │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-no-bounds.png │ │ │ │ ├── requestData.json │ │ │ │ ├── roads.sld │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_fixedscale_dpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_osm_grid_numlines_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_numlines_points_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_space_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_grid_spacing_points_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── center_osm_rotation_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_tiledwms_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_area_of_interest │ │ │ │ ├── config.yaml │ │ │ │ ├── output │ │ │ │ │ ├── expectedSimpleImage-clip-svg-transparent.png │ │ │ │ │ ├── expectedSimpleImage-clip-svg.png │ │ │ │ │ ├── expectedSimpleImage-clip-transparent.png │ │ │ │ │ ├── expectedSimpleImage-clip.png │ │ │ │ │ ├── expectedSimpleImage-default-transparent.png │ │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ │ ├── expectedSimpleImage-none-transparent.png │ │ │ │ │ ├── expectedSimpleImage-none.png │ │ │ │ │ ├── expectedSimpleImage-render-jsonStyle.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon-svg-transparent.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon-svg.png │ │ │ │ │ ├── expectedSimpleImage-render-polygon.png │ │ │ │ │ ├── expectedSimpleImage-render-thinline-transparent.png │ │ │ │ │ ├── expectedSimpleImage-render-thinline.png │ │ │ │ │ ├── expectedSimpleImage-rotate-clip-svg.png │ │ │ │ │ └── expectedSimpleImage-rotate-render-svg.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_high_dpi │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms1_0_0_flexiblescale_high_dpi_SVG │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wms_rotation_small_tiles │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── green_square.png │ │ │ │ ├── red_square.png │ │ │ │ └── requestData.json │ │ │ ├── center_wmts_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wmts_fixedscale_rest │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── center_wmts_rotation_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── grid_numlines_lines_fixedscale_norotatelabels │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_alt_label_proj │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_crs84 │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── grid_numlines_points_fixedscale_rotated │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage_123-linux.png │ │ │ │ ├── expectedSimpleImage_123.png │ │ │ │ ├── expectedSimpleImage_180-linux.png │ │ │ │ ├── expectedSimpleImage_180.png │ │ │ │ ├── expectedSimpleImage_203-linux.png │ │ │ │ ├── expectedSimpleImage_203.png │ │ │ │ ├── expectedSimpleImage_23-linux.png │ │ │ │ ├── expectedSimpleImage_23.png │ │ │ │ ├── expectedSimpleImage_270-linux.png │ │ │ │ ├── expectedSimpleImage_270.png │ │ │ │ ├── expectedSimpleImage_310-linux.png │ │ │ │ ├── expectedSimpleImage_310.png │ │ │ │ ├── expectedSimpleImage_360-linux.png │ │ │ │ ├── expectedSimpleImage_360.png │ │ │ │ ├── expectedSimpleImage_90-linux.png │ │ │ │ ├── expectedSimpleImage_90.png │ │ │ │ ├── expectedSimpleImage_rotation-linux.png │ │ │ │ └── requestData.json │ │ │ ├── image_layer_test │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── north_arrow │ │ │ │ ├── NorthArrow.png │ │ │ │ ├── NorthArrow.svg │ │ │ │ ├── NorthArrow_10.png │ │ │ │ ├── NorthArrow_10.svg │ │ │ │ ├── config-no-report.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── expected-north-arrow-bg.png │ │ │ │ ├── expected-north-arrow-png-bg-square-down.png │ │ │ │ ├── expected-north-arrow-png-square-45-down.png │ │ │ │ ├── expected-north-arrow-png-square-45-up.png │ │ │ │ ├── expected-north-arrow-png-square-down.png │ │ │ │ ├── expected-north-arrow-png-square-up.png │ │ │ │ ├── expected-north-arrow.png │ │ │ │ ├── expected-north-arrow_10-bg.png │ │ │ │ ├── expected-north-arrow_10-default.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-45-down.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-45-up.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-down.png │ │ │ │ ├── expected-north-arrow_10-png-nosquare-up.png │ │ │ │ ├── expected-north-arrow_10.png │ │ │ │ ├── expectedNorthArrow.png │ │ │ │ └── requestData.json │ │ │ ├── north_arrow_svg │ │ │ │ ├── NorthArrow_10.svg │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedNorthArrow.png │ │ │ │ └── requestData.json │ │ │ ├── opacity_center_wmts_fixedscale │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ ├── thickline.sld │ │ │ │ └── thinline.sld │ │ │ ├── osm_custom_params │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map_custom_bounds │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── overview_map_custom_layer │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ │ ├── overview_map_rotate │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── overview_map_style │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── overview-map.sld │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── paging_processor_fail_on_error_test │ │ │ │ ├── config.yaml │ │ │ │ ├── requestData.json │ │ │ │ └── simpleReport.jrxml │ │ │ ├── paging_processor_force_fail_on_error_test │ │ │ │ ├── config.yaml │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── thinline.sld │ │ │ ├── paging_processor_test │ │ │ │ ├── config-geodetic.yaml │ │ │ │ ├── config-scalebar.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ ├── output │ │ │ │ │ ├── all-none │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── clip-full-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── clip-page-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── default-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── full-clip-sub-none │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── full-clip-sub-render │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── geodetic │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── higher-dpi-geodetic │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── higher-dpi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── none-aoi │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── paging-overview-layer-styled │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ ├── paging-overview-layer │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ │ └── scalebar │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── thinline.sld │ │ │ ├── paging_processor_zoom_to_features_test │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage-default.png │ │ │ │ ├── output │ │ │ │ │ └── zoom-to-features │ │ │ │ │ │ ├── expected-page-0.png │ │ │ │ │ │ ├── expected-page-1.png │ │ │ │ │ │ ├── expected-page-2.png │ │ │ │ │ │ ├── expected-page-3.png │ │ │ │ │ │ ├── expected-page-4.png │ │ │ │ │ │ ├── expected-page-5.png │ │ │ │ │ │ └── expected-page-6.png │ │ │ │ ├── requestData.json │ │ │ │ ├── simpleReport.jrxml │ │ │ │ └── thinline.sld │ │ │ ├── rendertype │ │ │ │ ├── config.yaml │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ ├── scalebar │ │ │ │ ├── center_osm_fixedscale │ │ │ │ │ ├── config-no-report.yaml │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── expectedScalebar.png │ │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ │ ├── requestData.json │ │ │ │ │ └── thinline.sld │ │ │ │ ├── expected-scalebar-bar-bg.png │ │ │ │ ├── expected-scalebar-bar-subs.png │ │ │ │ ├── expected-scalebar-bar-text-above.png │ │ │ │ ├── expected-scalebar-bar-vertical-text-left.png │ │ │ │ ├── expected-scalebar-bar-vertical-text-right.png │ │ │ │ ├── expected-scalebar-bar.png │ │ │ │ ├── expected-scalebar-barsub-subs.png │ │ │ │ ├── expected-scalebar-barsub.png │ │ │ │ ├── expected-scalebar-graphic-dpi.png │ │ │ │ ├── expected-scalebar-graphic-svg.png │ │ │ │ ├── expected-scalebar-graphic.png │ │ │ │ ├── expected-scalebar-line-labels-above-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-above-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-left-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-left-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-right-partially-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-right-rotated.png │ │ │ │ ├── expected-scalebar-line-labels-rotated-negative.png │ │ │ │ ├── expected-scalebar-line-labels-rotated.png │ │ │ │ ├── expected-scalebar-line-subs.png │ │ │ │ ├── expected-scalebar-line.png │ │ │ │ ├── expected-scalebar-middle-center.png │ │ │ │ ├── expected-scalebar-top-right.png │ │ │ │ └── expectedSimpleImage.png │ │ │ ├── setfeaturesprocessor │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── geojson.json │ │ │ │ └── requestData.json │ │ │ ├── setparamprocessor │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ ├── requestData.json │ │ │ │ └── thinline.sld │ │ │ └── wmts_buffer │ │ │ │ ├── config.yaml │ │ │ │ ├── expectedSimpleImage.png │ │ │ │ └── requestData.json │ │ └── setstyle │ │ │ ├── basic │ │ │ ├── config.yaml │ │ │ └── request.json │ │ │ ├── map │ │ │ └── config.yaml │ │ │ └── two_maps │ │ │ └── config.yaml │ │ ├── servlet │ │ ├── MapOnly_A4.jrxml │ │ ├── abstract-mapfish-spring-application-context-clustered.xml │ │ ├── config-email-s3.yaml │ │ ├── config-referrer.yaml │ │ ├── config-security.yaml │ │ ├── config-timeout.yaml │ │ ├── config.yaml │ │ ├── expectedSimpleImage.png │ │ ├── fileloader │ │ │ ├── config.yaml │ │ │ └── resourceFile.txt │ │ ├── mapfish-print-servlet.xml │ │ ├── mapfish-spring-application-context-clustered-test.xml │ │ ├── mapfish-spring-application-context-clustered.xml │ │ ├── requestData.json │ │ ├── requestDataEmail.json │ │ ├── requestDataError.json │ │ └── sampleGeoTiff.tif │ │ └── test │ │ └── util │ │ └── imageSimilarity │ │ ├── with.png │ │ └── without.png │ ├── test-http-request-factory-application-context.xml │ └── test-mapfish-spring-custom-fonts.xml ├── docker-compose.override.sample.yaml ├── docker-compose.yaml ├── docs ├── README.md ├── build.gradle └── src │ └── main │ ├── groovy │ ├── DocsXmlSupport.groovy │ ├── GenerateDocs.groovy │ └── Javadoc7Parser.groovy │ └── resources │ ├── css │ ├── custom.css │ ├── readthedocs-doc-embed.css │ └── sphinx_rtd_theme.css │ ├── fonts │ ├── FontAwesome.otf │ ├── Inconsolata-Bold.ttf │ ├── Inconsolata-Regular.ttf │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── RobotoSlab-Bold.ttf │ ├── RobotoSlab-Regular.ttf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── images │ ├── Mapfish_Print_V3_Architecture.svg │ ├── adapt1.png │ ├── expression.png │ ├── image_table.png │ ├── jasperbands.png │ ├── jaspersoft.png │ ├── preview.png │ └── prompt.png │ ├── js │ └── theme.js │ ├── pages.json │ └── templates │ ├── _content.html │ ├── _main.html │ ├── _sub_nav.html │ ├── api.html │ ├── attributes.html │ ├── configuration.html │ ├── docker.html │ ├── download.html │ ├── fileloaders.html │ ├── index.html │ ├── jasperreports.html │ ├── layers.html │ ├── outputformats.html │ ├── processors.html │ ├── properties.html │ ├── scaling.html │ ├── styles.html │ └── tableimages.html ├── examples ├── README.md ├── build.gradle ├── geoserver-data │ ├── README.rst │ ├── coverages │ │ ├── arc_sample │ │ │ ├── info.xml │ │ │ ├── precip30min.asc │ │ │ └── precip30min.prj │ │ ├── img_sample │ │ │ ├── Pk50095.prj │ │ │ ├── Pk50095.tfw │ │ │ ├── Pk50095.tif │ │ │ ├── info.xml │ │ │ ├── usa.jpeg │ │ │ ├── usa.meta │ │ │ └── usa.prj │ │ ├── mosaic_sample │ │ │ ├── global_mosaic_0.pgw │ │ │ ├── global_mosaic_0.png │ │ │ ├── global_mosaic_0.prj │ │ │ ├── global_mosaic_1.pgw │ │ │ ├── global_mosaic_1.png │ │ │ ├── global_mosaic_1.prj │ │ │ ├── global_mosaic_10.pgw │ │ │ ├── global_mosaic_10.png │ │ │ ├── global_mosaic_10.prj │ │ │ ├── global_mosaic_11.pgw │ │ │ ├── global_mosaic_11.png │ │ │ ├── global_mosaic_11.prj │ │ │ ├── global_mosaic_12.pgw │ │ │ ├── global_mosaic_12.png │ │ │ ├── global_mosaic_12.prj │ │ │ ├── global_mosaic_13.pgw │ │ │ ├── global_mosaic_13.png │ │ │ ├── global_mosaic_13.prj │ │ │ ├── global_mosaic_14.pgw │ │ │ ├── global_mosaic_14.png │ │ │ ├── global_mosaic_14.prj │ │ │ ├── global_mosaic_15.pgw │ │ │ ├── global_mosaic_15.png │ │ │ ├── global_mosaic_15.prj │ │ │ ├── global_mosaic_16.pgw │ │ │ ├── global_mosaic_16.png │ │ │ ├── global_mosaic_16.prj │ │ │ ├── global_mosaic_17.pgw │ │ │ ├── global_mosaic_17.png │ │ │ ├── global_mosaic_17.prj │ │ │ ├── global_mosaic_18.pgw │ │ │ ├── global_mosaic_18.png │ │ │ ├── global_mosaic_18.prj │ │ │ ├── global_mosaic_19.pgw │ │ │ ├── global_mosaic_19.png │ │ │ ├── global_mosaic_19.prj │ │ │ ├── global_mosaic_2.pgw │ │ │ ├── global_mosaic_2.png │ │ │ ├── global_mosaic_2.prj │ │ │ ├── global_mosaic_20.pgw │ │ │ ├── global_mosaic_20.png │ │ │ ├── global_mosaic_20.prj │ │ │ ├── global_mosaic_21.pgw │ │ │ ├── global_mosaic_21.png │ │ │ ├── global_mosaic_21.prj │ │ │ ├── global_mosaic_22.pgw │ │ │ ├── global_mosaic_22.png │ │ │ ├── global_mosaic_22.prj │ │ │ ├── global_mosaic_23.pgw │ │ │ ├── global_mosaic_23.png │ │ │ ├── global_mosaic_23.prj │ │ │ ├── global_mosaic_24.pgw │ │ │ ├── global_mosaic_24.png │ │ │ ├── global_mosaic_24.prj │ │ │ ├── global_mosaic_3.pgw │ │ │ ├── global_mosaic_3.png │ │ │ ├── global_mosaic_3.prj │ │ │ ├── global_mosaic_4.pgw │ │ │ ├── global_mosaic_4.png │ │ │ ├── global_mosaic_4.prj │ │ │ ├── global_mosaic_5.pgw │ │ │ ├── global_mosaic_5.png │ │ │ ├── global_mosaic_5.prj │ │ │ ├── global_mosaic_6.pgw │ │ │ ├── global_mosaic_6.png │ │ │ ├── global_mosaic_6.prj │ │ │ ├── global_mosaic_7.pgw │ │ │ ├── global_mosaic_7.png │ │ │ ├── global_mosaic_7.prj │ │ │ ├── global_mosaic_8.pgw │ │ │ ├── global_mosaic_8.png │ │ │ ├── global_mosaic_8.prj │ │ │ ├── global_mosaic_9.pgw │ │ │ ├── global_mosaic_9.png │ │ │ ├── global_mosaic_9.prj │ │ │ ├── info.xml │ │ │ ├── mosaic.dbf │ │ │ ├── mosaic.fix │ │ │ ├── mosaic.prj │ │ │ ├── mosaic.properties │ │ │ ├── mosaic.qix │ │ │ ├── mosaic.shp │ │ │ └── mosaic.shx │ │ └── sfdem_sfdem │ │ │ └── info.xml │ ├── csw.xml │ ├── data │ │ ├── README.md │ │ ├── nyc │ │ │ ├── giant_polygon.dbf │ │ │ ├── giant_polygon.prj │ │ │ ├── giant_polygon.qix │ │ │ ├── giant_polygon.shp │ │ │ ├── giant_polygon.shx │ │ │ ├── poi.dbf │ │ │ ├── poi.prj │ │ │ ├── poi.qix │ │ │ ├── poi.shp │ │ │ ├── poi.shx │ │ │ ├── poly_landmarks.dbf │ │ │ ├── poly_landmarks.prj │ │ │ ├── poly_landmarks.qix │ │ │ ├── poly_landmarks.shp │ │ │ ├── poly_landmarks.shx │ │ │ ├── tiger_roads.dbf │ │ │ ├── tiger_roads.prj │ │ │ ├── tiger_roads.qix │ │ │ ├── tiger_roads.shp │ │ │ └── tiger_roads.shx │ │ ├── sf │ │ │ ├── archsites.dbf │ │ │ ├── archsites.prj │ │ │ ├── archsites.qix │ │ │ ├── archsites.shp │ │ │ ├── archsites.shx │ │ │ ├── bugsites.dbf │ │ │ ├── bugsites.prj │ │ │ ├── bugsites.qix │ │ │ ├── bugsites.shp │ │ │ ├── bugsites.shx │ │ │ ├── restricted.dbf │ │ │ ├── restricted.prj │ │ │ ├── restricted.qix │ │ │ ├── restricted.shp │ │ │ ├── restricted.shx │ │ │ ├── roads.dbf │ │ │ ├── roads.prj │ │ │ ├── roads.qix │ │ │ ├── roads.shp │ │ │ ├── roads.shx │ │ │ ├── sfdem.tif │ │ │ ├── streams.dbf │ │ │ ├── streams.prj │ │ │ ├── streams.qix │ │ │ ├── streams.shp │ │ │ └── streams.shx │ │ ├── shapefiles │ │ │ ├── README.md │ │ │ ├── states.dbf │ │ │ ├── states.prj │ │ │ ├── states.qix │ │ │ ├── states.shp │ │ │ └── states.shx │ │ └── taz_shapes │ │ │ ├── tasmania_cities.dbf │ │ │ ├── tasmania_cities.prj │ │ │ ├── tasmania_cities.shp │ │ │ ├── tasmania_cities.shx │ │ │ ├── tasmania_roads.dbf │ │ │ ├── tasmania_roads.prj │ │ │ ├── tasmania_roads.qix │ │ │ ├── tasmania_roads.shp │ │ │ ├── tasmania_roads.shx │ │ │ ├── tasmania_state_boundaries.dbf │ │ │ ├── tasmania_state_boundaries.prj │ │ │ ├── tasmania_state_boundaries.shp │ │ │ ├── tasmania_state_boundaries.shx │ │ │ ├── tasmania_water_bodies.dbf │ │ │ ├── tasmania_water_bodies.prj │ │ │ ├── tasmania_water_bodies.shp │ │ │ └── tasmania_water_bodies.shx │ ├── demo │ │ ├── WCS_describeCoverage.xml │ │ ├── WCS_getCapabilities.xml │ │ ├── WCS_getCoverage.xml │ │ ├── WFS_describeFeatureType-1.0.xml │ │ ├── WFS_describeFeatureType-1.1.xml │ │ ├── WFS_getCapabilities-1.0.xml │ │ ├── WFS_getCapabilities-1.1.xml │ │ ├── WFS_getFeature-1.0.xml │ │ ├── WFS_getFeature-1.1.xml │ │ ├── WFS_getFeature-2.0.url │ │ ├── WFS_getFeature-2.0.xml │ │ ├── WFS_getFeatureBBOX-1.0.xml │ │ ├── WFS_getFeatureBBOX-1.1.xml │ │ ├── WFS_getFeatureBBOX.url │ │ ├── WFS_getFeatureBetween-1.0.xml │ │ ├── WFS_getFeatureBetween-1.1.xml │ │ ├── WFS_getFeatureBetween.url │ │ ├── WFS_getFeatureBetweenCQL.url │ │ ├── WFS_getFeatureFid.url │ │ ├── WFS_getFeatureFidFilter.url │ │ ├── WFS_getFeatureIntersects-1.0.xml │ │ ├── WFS_getFeatureIntersects-1.1.xml │ │ ├── WFS_getFeatureIntersects.url │ │ ├── WFS_getFeatureMultiFilter.url │ │ ├── WFS_getFeatureNotDisjoint-2.0.url │ │ ├── WFS_getFeatureNotDisjoint-2.0.xml │ │ ├── WFS_mathGetFeature.url │ │ ├── WFS_mathGetFeature.xml │ │ ├── WFS_transactionDelete.xml │ │ ├── WFS_transactionInsert.xml │ │ ├── WFS_transactionUpdate.xml │ │ ├── WFS_transactionUpdateGeom.xml │ │ ├── WMS_GetLegendGraphic-SLD.url │ │ ├── WMS_GetLegendGraphic-SLD_BODY.url │ │ ├── WMS_GetLegendGraphic.url │ │ ├── WMS_describeLayer.url │ │ ├── WMS_featureInfo.url │ │ ├── WMS_getCapabilities.url │ │ ├── WMS_getMap.url │ │ ├── WMS_getMap.xml │ │ ├── WMS_getMap_OpenLayers.url │ │ ├── WMS_getMap_SLD_BODY_LiteralMode-1.3.url │ │ ├── WMS_getMap_SLD_BODY_LiteralMode.url │ │ ├── WMS_getMap_SVG.url │ │ ├── WMS_getMap_SVG_Style.url │ │ ├── WMS_getMap_fid.url │ │ ├── WMS_getMap_fidfilter.url │ │ ├── WMS_getMap_inlineFeature.url │ │ ├── WMS_getMap_inlineFeatureSmile.xml │ │ ├── WMS_getMap_multilayer.url │ │ ├── WMS_getMap_multilayer_cql.url │ │ └── WMS_getMap_multilayer_filter.url │ ├── global.xml │ ├── images │ │ ├── colorpicker.jpg │ │ ├── delete.png │ │ ├── deleteRed.png │ │ ├── down.png │ │ ├── gs.gif │ │ ├── gs.ico │ │ ├── rasterLegend.png │ │ └── up.png │ ├── layergroups │ │ ├── spearfish.xml │ │ ├── tasmania.xml │ │ └── tiger-ny.xml │ ├── logging.xml │ ├── palettes │ │ ├── dem31.pal │ │ ├── ita31.pal │ │ ├── ny31.pal │ │ └── popshade.png │ ├── plugIns │ │ ├── AddressGap.xml │ │ ├── AddressOverlap.xml │ │ ├── AngleSize.xml │ │ ├── Attribute.xml │ │ ├── Constraint.xml │ │ ├── ContainsIntegrity.xml │ │ ├── CrossesIntegrity.xml │ │ ├── DisjointIntegrity.xml │ │ ├── Domain.xml │ │ ├── Equality.xml │ │ ├── GazetteerName.xml │ │ ├── IntersectsIntegrity.xml │ │ ├── IsValidGeometry.xml │ │ ├── LineCoveredByFeatureLine.xml │ │ ├── LineCoveredByPolygon.xml │ │ ├── LineCoveredByPolygonBoundary.xml │ │ ├── LineEndPointCoveredByLine.xml │ │ ├── LineIntersectsLineWithNode.xml │ │ ├── LineMustBeASinglePart.xml │ │ ├── LineNoDangles.xml │ │ ├── LineNoPseudoNode.xml │ │ ├── LineNoSelfIntersect.xml │ │ ├── LineNoSelfOverlapping.xml │ │ ├── LineNotTouchingPolygonInterior.xml │ │ ├── LinesNotIntersect.xml │ │ ├── LinesNotOverlap.xml │ │ ├── NameExists.xml │ │ ├── NameInList.xml │ │ ├── NullZero.xml │ │ ├── OverlapsIntegrity.xml │ │ ├── PointCoveredByEndPointOfLine.xml │ │ ├── PointCoveredByLine.xml │ │ ├── PointCoveredByPolygon.xml │ │ ├── PointCoveredByPolygonBoundary.xml │ │ ├── PointInsidePolygon.xml │ │ ├── PolygonBoundaryCoveredByPolygon.xml │ │ ├── PolygonCoveredByFeaturePolygon.xml │ │ ├── PolygonCoveredByPolygon.xml │ │ ├── PolygonNoGaps.xml │ │ ├── PolygonNotCoveredByPolygon.xml │ │ ├── PolygonNotOverlappingLine.xml │ │ ├── PolygonNotOverlappingPolygon.xml │ │ ├── Range.xml │ │ ├── RelateIntegrity.xml │ │ ├── SQL.xml │ │ ├── SingleValue.xml │ │ ├── StarNode.xml │ │ ├── TouchesIntegrity.xml │ │ ├── UniqueFID.xml │ │ ├── Uniquity.xml │ │ └── WithinIntegrity.xml │ ├── security │ │ ├── auth │ │ │ └── default │ │ │ │ └── config.xml │ │ ├── config.xml │ │ ├── filter │ │ │ ├── anonymous │ │ │ │ └── config.xml │ │ │ ├── basic │ │ │ │ └── config.xml │ │ │ ├── contextAsc │ │ │ │ └── config.xml │ │ │ ├── contextNoAsc │ │ │ │ └── config.xml │ │ │ ├── exception │ │ │ │ └── config.xml │ │ │ ├── form │ │ │ │ └── config.xml │ │ │ ├── formLogout │ │ │ │ └── config.xml │ │ │ ├── interceptor │ │ │ │ └── config.xml │ │ │ ├── rememberme │ │ │ │ └── config.xml │ │ │ ├── restInterceptor │ │ │ │ └── config.xml │ │ │ ├── roleFilter │ │ │ │ └── config.xml │ │ │ └── sslFilter │ │ │ │ └── config.xml │ │ ├── layers.properties │ │ ├── masterpw.xml │ │ ├── masterpw │ │ │ └── default │ │ │ │ ├── config.xml │ │ │ │ └── passwd │ │ ├── pwpolicy │ │ │ ├── default │ │ │ │ └── config.xml │ │ │ └── master │ │ │ │ └── config.xml │ │ ├── rest.properties │ │ ├── role │ │ │ └── default │ │ │ │ ├── config.xml │ │ │ │ ├── roles.xml │ │ │ │ └── roles.xsd │ │ ├── services.properties │ │ └── usergroup │ │ │ └── default │ │ │ ├── config.xml │ │ │ ├── users.xml │ │ │ └── users.xsd │ ├── styles │ │ ├── Lakes.sld │ │ ├── NamedPlaces.sld │ │ ├── burg.sld │ │ ├── burg.xml │ │ ├── burg02.svg │ │ ├── capitals.sld │ │ ├── capitals.xml │ │ ├── cite_lakes.xml │ │ ├── default_generic.sld │ │ ├── default_line.sld │ │ ├── default_line2.sld │ │ ├── default_point.sld │ │ ├── default_polygon.sld │ │ ├── dem.sld │ │ ├── dem.xml │ │ ├── generic.xml │ │ ├── giant_polygon.sld │ │ ├── giant_polygon.xml │ │ ├── grass.xml │ │ ├── grass_fill.png │ │ ├── grass_poly.sld │ │ ├── green.sld │ │ ├── green.xml │ │ ├── line.xml │ │ ├── poi.sld │ │ ├── poi.xml │ │ ├── point.xml │ │ ├── poly_landmarks.sld │ │ ├── poly_landmarks.xml │ │ ├── polygon.xml │ │ ├── pophatch.sld │ │ ├── pophatch.xml │ │ ├── popshade.sld │ │ ├── population.xml │ │ ├── rain.sld │ │ ├── rain.xml │ │ ├── raster.sld │ │ ├── raster.xml │ │ ├── restricted.sld │ │ ├── restricted.xml │ │ ├── simpleRoads.sld │ │ ├── simple_roads.xml │ │ ├── simple_streams.sld │ │ ├── simple_streams.xml │ │ ├── tiger_roads.sld │ │ └── tiger_roads.xml │ ├── user_projections │ │ └── epsg.properties │ ├── validation │ │ ├── FeatureCheck.xml │ │ └── IntegrityCheck.xml │ ├── wcs.xml │ ├── wfs.xml │ ├── wms.xml │ ├── workspaces │ │ ├── cite │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── it.geosolutions │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── nurc │ │ │ ├── arcGridSample │ │ │ │ ├── Arc_Sample │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ │ ├── img_sample2 │ │ │ │ ├── Pk50095 │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ │ ├── mosaic │ │ │ │ ├── coveragestore.xml │ │ │ │ └── mosaic │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ ├── namespace.xml │ │ │ ├── workspace.xml │ │ │ └── worldImageSample │ │ │ │ ├── Img_Sample │ │ │ │ ├── coverage.xml │ │ │ │ └── layer.xml │ │ │ │ └── coveragestore.xml │ │ ├── sde │ │ │ ├── namespace.xml │ │ │ └── workspace.xml │ │ ├── sf │ │ │ ├── namespace.xml │ │ │ ├── sf │ │ │ │ ├── archsites │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── bugsites │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── datastore.xml │ │ │ │ ├── restricted │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── roads │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── streams │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ ├── sfdem │ │ │ │ ├── coveragestore.xml │ │ │ │ └── sfdem │ │ │ │ │ ├── coverage.xml │ │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ │ ├── tiger │ │ │ ├── namespace.xml │ │ │ ├── nyc │ │ │ │ ├── datastore.xml │ │ │ │ ├── giant_polygon │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── poi │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ ├── poly_landmarks │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ │ └── tiger_roads │ │ │ │ │ ├── featuretype.xml │ │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ │ └── topp │ │ │ ├── namespace.xml │ │ │ ├── states_shapefile │ │ │ ├── datastore.xml │ │ │ └── states │ │ │ │ ├── description.ftl │ │ │ │ ├── featuretype.xml │ │ │ │ ├── layer.xml │ │ │ │ └── title.ftl │ │ │ ├── taz_shapes │ │ │ ├── datastore.xml │ │ │ ├── tasmania_cities │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ ├── tasmania_roads │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ ├── tasmania_state_boundaries │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ └── tasmania_water_bodies │ │ │ │ ├── featuretype.xml │ │ │ │ └── layer.xml │ │ │ └── workspace.xml │ └── www │ │ ├── GeoServer.png │ │ ├── GeoServer.webp │ │ └── oereb │ │ ├── 2771.png │ │ ├── FederalLogo.png │ │ ├── MunicipalityLogo.png │ │ ├── PLRCadastreLogo.png │ │ ├── StaoTyp1.png │ │ ├── StaoTyp2.png │ │ ├── StaoTyp3.png │ │ ├── de.png │ │ ├── logo_canton.png │ │ ├── logo_confederation.png │ │ ├── logo_oereb_de.png │ │ ├── logo_oereb_fr.png │ │ └── logo_oereb_it.png └── src │ └── test │ ├── java │ └── org │ │ └── mapfish │ │ └── print │ │ ├── AbstractApiTest.java │ │ ├── ExamplesTest.java │ │ ├── MetricsApiTest.java │ │ └── PrintApiTest.java │ └── resources │ ├── data │ ├── logging.xml │ └── logs │ │ └── PRODUCTION_LOGGING.properties │ ├── examples │ ├── README.md │ ├── add_overlay_layer │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-no-data-layer.png │ │ │ ├── requestData-one-data-layer.png │ │ │ └── requestData-override-overlay.png │ │ ├── requestData-no-data-layer.json │ │ ├── requestData-one-data-layer.json │ │ ├── requestData-override-overlay.json │ │ └── simpleReport.jrxml │ ├── config_aliases_defaults │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-landscape.png │ │ │ └── requestData-portrait.png │ │ ├── pdf-preview-landscape.jrxml │ │ ├── pdf-preview-portrait.jrxml │ │ ├── requestData-landscape.json │ │ └── requestData-portrait.json │ ├── crosses_point_grid │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-all-usa-states-with-crosses-grid.png │ │ │ └── requestData-new-york-with-crosses-grid-22-degree-rotation.png │ │ ├── requestData-all-usa-states-with-crosses-grid.json │ │ ├── requestData-new-york-with-crosses-grid-22-degree-rotation.json │ │ └── simpleReport.jrxml │ ├── customDynamicReport │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ ├── simpleReport.jrxml │ │ └── table.jrxml │ ├── data_uri_json │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-json-style-v2-not-svg.png │ │ ├── requestData-json-style-v2-not-svg.json │ │ └── simpleReport.jrxml │ ├── datasource_dynamic_tables │ │ ├── A4_Portrait.jrxml │ │ ├── A4_landscape.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-landscape.png │ │ │ └── requestData-portrait.png │ │ ├── requestData-landscape.json │ │ ├── requestData-portrait.json │ │ ├── results_landscape.jrxml │ │ └── results_portrait.jrxml │ ├── datasource_many_dynamictables_legend │ │ ├── A4_Portrait.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── north.svg │ │ └── requestData.json │ ├── datasource_multiple_maps │ │ ├── A4_Portrait.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ └── requestData.json │ ├── geoext │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── http_processors │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── image_layer_base64 │ │ ├── A4_Landscape.jrxml │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-layer-base64.png │ │ └── requestData-layer-base64.json │ ├── image_layer_test │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-webp.png │ │ │ ├── requestData-with-error.png │ │ │ └── requestData.png │ │ ├── requestData-webp.json │ │ ├── requestData-with-error.json │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── json_styling │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-json-style-line-v1.png │ │ │ ├── requestData-json-style-line-v2.png │ │ │ └── requestData-json-style-v2-not-svg.png │ │ ├── requestData-json-style-line-v1.json │ │ ├── requestData-json-style-line-v2.json │ │ ├── requestData-json-style-v2-not-svg.json │ │ └── simpleReport.jrxml │ ├── legend │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_cropped │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_dpi │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-noMaxWidth.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData-noMaxWidth.json │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── legend_scaled │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── mapexport │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bmp.bmp │ │ │ ├── requestData-jpeg.jpeg │ │ │ ├── requestData-pdf.pdf │ │ │ ├── requestData-png.png │ │ │ └── requestData-tiff.tiff │ │ ├── requestData-bmp.json │ │ ├── requestData-gif.json │ │ ├── requestData-jpeg.json │ │ ├── requestData-pdf.json │ │ ├── requestData-png.json │ │ └── requestData-tiff.json │ ├── merged_datasource │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── main.jrxml │ │ ├── mapfish-icon.png │ │ ├── requestData.json │ │ └── table.jrxml │ ├── multiple_maps │ │ ├── README.md │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── native_mix │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── oereb │ │ ├── CantonalLogo.jpg │ │ ├── Report.properties │ │ ├── Report_de.properties │ │ ├── Report_fr.properties │ │ ├── Report_it.properties │ │ ├── config.yaml │ │ ├── exclusion_of_liability.jrxml │ │ ├── expected_output │ │ │ ├── mask-requestData.png │ │ │ └── requestData.png │ │ ├── glossar.jrxml │ │ ├── legal.jrxml │ │ ├── legalprovision.jrxml │ │ ├── legend.jrxml │ │ ├── mainpage.jrxml │ │ ├── north.svg │ │ ├── pdfextract.jrxml │ │ ├── requestData.json │ │ ├── sRGB_IEC61966-2-1_black_scaled.icc │ │ ├── table.jrxml │ │ ├── textatweb.jrxml │ │ ├── themelist.jrxml │ │ ├── toc.jrxml │ │ ├── tocFull.jrxml │ │ ├── tocReduced.jrxml │ │ ├── topiclegend.jrxml │ │ ├── topicotherlegend.jrxml │ │ ├── topicpage.jrxml │ │ └── topicresponsibleoffice.jrxml │ ├── overviewmap_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-scale-wmts1_0_0-full-kvp.png │ │ ├── requestData-scale-wmts1_0_0-full-kvp.json │ │ └── simpleReport.jrxml │ ├── paging │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-multipoint.png │ │ │ └── requestData-polygon.png │ │ ├── requestData-multipoint.json │ │ ├── requestData-polygon.json │ │ └── simpleReport.jrxml │ ├── paging_with_overview_layer │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData-polygon.png │ │ ├── requestData-polygon.json │ │ └── simpleReport.jrxml │ ├── pdf_a_compliant │ │ ├── AdobeRGB1998.icc │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── ny_feature.geojson │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── print_osm_new_york_EPSG_3857 │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-osm.png │ │ │ └── requestData-scale-rotate-osm.png │ │ ├── requestData-scale-osm.json │ │ ├── requestData-scale-rotate-osm.json │ │ └── simpleReport.jrxml │ ├── print_osm_new_york_nosubreports │ │ ├── NorthArrow_10.svg │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── printtiledwms │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-auto-meta-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-auto-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-meta-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-tiled-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-scale-tiled-wms1_1_1.png │ │ │ └── requestData-scale-wms1_1_1.png │ │ ├── requestData-bbox-auto-meta-tiled-wms1_1_1.json │ │ ├── requestData-bbox-auto-tiled-wms1_1_1.json │ │ ├── requestData-bbox-meta-tiled-wms1_1_1.json │ │ ├── requestData-bbox-tiled-wms1_1_1.json │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-scale-tiled-wms1_1_1.json │ │ ├── requestData-scale-wms1_1_1.json │ │ └── simpleReport.jrxml │ ├── printwms_SpearfishStreams_EPSG_26713 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_3_0.png │ │ │ ├── requestData-scale-wms1_1_1.png │ │ │ └── requestData-scale-wms1_3_0.png │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-bbox-wms1_3_0.json │ │ ├── requestData-scale-wms1_1_1.json │ │ ├── requestData-scale-wms1_3_0.json │ │ └── simpleReport.jrxml │ ├── printwms_UsaPopulation_EPSG_4326 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-bbox-native-rotate-wms1_3_0.png │ │ │ ├── requestData-bbox-rotate-wms1_3_0.png │ │ │ ├── requestData-bbox-wms1_1_1.png │ │ │ ├── requestData-bbox-wms1_3_0.png │ │ │ ├── requestData-scale-native-rotate-wms1_1_1.png │ │ │ ├── requestData-scale-rotate-wms1_1_1.png │ │ │ ├── requestData-scale-wms1_1_1.png │ │ │ └── requestData-scale-wms1_3_0.png │ │ ├── requestData-bbox-native-rotate-wms1_3_0.json │ │ ├── requestData-bbox-rotate-wms1_3_0.json │ │ ├── requestData-bbox-wms1_1_1.json │ │ ├── requestData-bbox-wms1_3_0.json │ │ ├── requestData-scale-native-rotate-wms1_1_1.json │ │ ├── requestData-scale-rotate-wms1_1_1.json │ │ ├── requestData-scale-wms1_1_1.json │ │ ├── requestData-scale-wms1_3_0.json │ │ └── simpleReport.jrxml │ ├── printwms_archsites_server_type │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-wms1_0_0-high-dpi.png │ │ │ └── requestData-scale-wms1_0_0.png │ │ ├── requestData-scale-wms1_0_0-high-dpi.json │ │ ├── requestData-scale-wms1_0_0.json │ │ └── simpleReport.jrxml │ ├── printwms_background_layer │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-no-data-layer-300dpi.png │ │ │ ├── requestData-no-data-layer.png │ │ │ ├── requestData-one-data-layer.png │ │ │ └── requestData-override-background.png │ │ ├── requestData-no-data-layer-300dpi.json │ │ ├── requestData-no-data-layer.json │ │ ├── requestData-one-data-layer.json │ │ ├── requestData-override-background.json │ │ └── simpleReport.jrxml │ ├── printwms_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-multi-layer-openlayers-2-compatible-style-wms.png │ │ │ ├── requestData-scale-rotate-wms1_0_0.png │ │ │ ├── requestData-scale-wms1_0_0-high-dpi-svg-vector.png │ │ │ ├── requestData-scale-wms1_0_0-high-dpi.png │ │ │ └── requestData-scale-wms1_0_0.png │ │ ├── requestData-multi-layer-openlayers-2-compatible-style-wms.json │ │ ├── requestData-scale-rotate-wms1_0_0.json │ │ ├── requestData-scale-wms1_0_0-high-dpi-svg-vector.json │ │ ├── requestData-scale-wms1_0_0-high-dpi.json │ │ ├── requestData-scale-wms1_0_0.json │ │ └── simpleReport.jrxml │ ├── printwmts_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── expected_output │ │ │ ├── requestData-scale-rotate-wmts1_0_0-full-kvp.png │ │ │ └── requestData-scale-wmts1_0_0-full-kvp.png │ │ ├── requestData-scale-rotate-wmts1_0_0-full-kvp.json │ │ ├── requestData-scale-wmts1_0_0-full-kvp.json │ │ └── simpleReport.jrxml │ ├── report │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── request_rewrite │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── resource_bundle │ │ ├── README.md │ │ ├── Report.properties │ │ ├── Report_fr_CH.properties │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ ├── requestData-en.png │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ ├── requestData-en.json │ │ └── requestData.json │ ├── secured_templates │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ ├── simple │ │ ├── README.md │ │ ├── config.yaml │ │ ├── countries.geojson │ │ ├── expected_output │ │ │ ├── requestData-bmp.bmp │ │ │ ├── requestData-fontawesome-5.png │ │ │ ├── requestData-fontawesome-6.png │ │ │ ├── requestData-jpeg.jpeg │ │ │ ├── requestData-png.png │ │ │ └── requestData-tiff.tiff │ │ ├── report.jrxml │ │ ├── requestData-bmp.json │ │ ├── requestData-fontawesome-5.json │ │ ├── requestData-fontawesome-6.json │ │ ├── requestData-jpeg.json │ │ ├── requestData-pdf.json │ │ ├── requestData-png.json │ │ └── requestData-tiff.json │ ├── simple_A0 │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── report.jrxml │ │ └── requestData.json │ ├── updatePdfMetadata │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ │ └── requestData.png │ │ ├── requestData.json │ │ └── simpleReport.jrxml │ └── verboseExample │ │ ├── README.md │ │ ├── config.yaml │ │ ├── expected_output │ │ └── requestData.png │ │ ├── legend.jrxml │ │ ├── requestData.json │ │ ├── resources │ │ └── geojson.json │ │ ├── simpleReport.jrxml │ │ └── table.jrxml │ ├── examples_to_port │ ├── README.md │ ├── print_tms_tyger_ny_EPSG_3857 │ │ ├── config.yaml │ │ ├── requestData-scale-tms1_0_0.json │ │ └── simpleReport.jrxml │ └── print_vector_new_york_EPSG_3857 │ │ ├── config.yaml │ │ ├── requestData-scale-vector.json │ │ └── simpleReport.jrxml │ └── test-http-request-factory-application-context.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew-debug ├── gradlew-debug.bat ├── gradlew.bat ├── jMeter ├── Readme.md ├── jmeter-test-plan.jmx └── large-request.json ├── jitpack.yml ├── publish ├── README.md └── build.gradle ├── pyproject.toml ├── settings.gradle └── spell-ignore-words.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ci-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/ci-upgrade.yaml -------------------------------------------------------------------------------- /.github/dpkg-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/dpkg-versions.yaml -------------------------------------------------------------------------------- /.github/ghci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/ghci.yaml -------------------------------------------------------------------------------- /.github/monthly-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/monthly-release -------------------------------------------------------------------------------- /.github/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/publish.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/monthly-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/workflows/monthly-release.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-request-automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/workflows/pull-request-automation.yaml -------------------------------------------------------------------------------- /.github/workflows/rebuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.github/workflows/rebuild.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.gitignore -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.hadolint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | -------------------------------------------------------------------------------- /BREAKING-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/BREAKING-CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/SECURITY.md -------------------------------------------------------------------------------- /checkstyle_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/checkstyle_checks.xml -------------------------------------------------------------------------------- /checkstyle_suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/checkstyle_suppressions.xml -------------------------------------------------------------------------------- /ci/check-fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/ci/check-fonts -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/ci/requirements.txt -------------------------------------------------------------------------------- /ci/validate-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/ci/validate-container -------------------------------------------------------------------------------- /core/.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !docker/ 3 | !extraConfigFor/ 4 | -------------------------------------------------------------------------------- /core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/Dockerfile -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/bin/docker-pre-stop-print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/bin/docker-pre-stop-print -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/bin/docker-start-print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/bin/docker-start-print -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/bin/docker-start-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/bin/docker-start-watch -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/bin/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/bin/setenv.sh -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/conf/logback-access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/conf/logback-access.xml -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/conf/logback-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/conf/logback-custom.xml -------------------------------------------------------------------------------- /core/docker/usr/local/tomcat/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/docker/usr/local/tomcat/conf/logback.xml -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/Constants.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/ExceptionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/ExceptionUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/ExtraPropertyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/ExtraPropertyException.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/FileUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/FloatingPointUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/FloatingPointUtil.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/FontTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/FontTools.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/ImageIOPluginScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/ImageIOPluginScanner.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/ImageInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/ImageInit.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/ImageUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/MapPrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/MapPrinter.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/MapPrinterFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/MapPrinterFactory.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/OptionalUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/OptionalUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/PrintException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/PrintException.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/RegexpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/RegexpUtil.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/SetsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/SetsUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/StatsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/StatsUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/SvgUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/SvgUtil.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/URIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/URIUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/VersionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/VersionInfo.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/WaitDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/WaitDB.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/Attribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/attribute/Attribute.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/map/MapBounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/attribute/map/MapBounds.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/map/MapLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/attribute/map/MapLayer.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/attribute/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/attribute/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/CliDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/cli/CliDefinition.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/CliHelpDefinition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/cli/CliHelpDefinition.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/CliServletContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/cli/CliServletContext.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/cli/Main.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/cli/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/cli/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/Configuration.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/CustomFontLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/CustomFontLoader.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/HasConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/HasConfiguration.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/PDFConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/PDFConfig.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/ReportStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/ReportStorage.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/S3ReportStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/S3ReportStorage.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/SmtpConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/SmtpConfig.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/Template.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/Template.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/config/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/CertificateStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/CertificateStore.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/HttpCredential.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/HttpCredential.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/HttpProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/HttpProxy.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/HttpRequestFetcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/HttpRequestFetcher.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/MfRoutePlanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/MfRoutePlanner.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/MfSSLSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/MfSSLSocketFactory.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/UserAgentCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/UserAgentCreator.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/Utils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/http/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/http/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/AbstractLayerParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/AbstractLayerParams.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/CustomEPSGCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/CustomEPSGCodes.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/DistanceUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/DistanceUnit.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/Scale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/Scale.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/geotools/GmlLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/geotools/GmlLayer.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/image/ImageLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/image/ImageLayer.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/image/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/image/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/image/wms/WmsLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/image/wms/WmsLayer.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/style/StyleParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/style/StyleParser.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/style/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/style/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/CoverageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/tiled/CoverageTask.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/osm/OsmLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/tiled/osm/OsmLayer.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/tiled/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/map/tiled/wmts/Matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/map/tiled/wmts/Matrix.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/metrics/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/metrics/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/output/OutputFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/output/OutputFormat.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/output/Values.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/output/Values.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/output/ValuesLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/output/ValuesLogger.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/output/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/output/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/CanSatisfyOneOf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/CanSatisfyOneOf.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/HasDefaultValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/HasDefaultValue.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/MapfishParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/MapfishParser.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/OneOf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/OneOf.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/OneOfTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/OneOfTracker.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/ParserUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/ParserUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/Requires.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/Requires.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/RequiresTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/RequiresTracker.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/parser/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/parser/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/InputValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/processor/InputValue.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/InternalValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/processor/InternalValue.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/OutputValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/processor/OutputValue.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/Processor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/processor/Processor.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/processor/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/processor/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/BaseMapServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/BaseMapServlet.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/ServletInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/ServletInfo.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/job/Accounting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/job/Accounting.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/job/JobManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/job/JobManager.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/job/JobQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/job/JobQueue.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/job/PrintJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/job/PrintJob.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/servlet/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/servlet/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/test/util/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/test/util/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/url/data/Handler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/url/data/Handler.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/url/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/url/data/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/url/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/url/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/PAbstractObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/PAbstractObject.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/PArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/PArray.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/PElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/PElement.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/PJoinedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/PJoinedArray.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/PObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/PObject.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/json/PJsonArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/json/PJsonArray.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/org/mapfish/print/wrapper/yaml/PYamlArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/java/org/mapfish/print/wrapper/yaml/PYamlArray.java -------------------------------------------------------------------------------- /core/src/main/resources/default_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/default_error.png -------------------------------------------------------------------------------- /core/src/main/resources/epsg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/epsg.properties -------------------------------------------------------------------------------- /core/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/logback.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-access-assertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-access-assertions.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-application-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-application-context.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-attributes.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-config-file-loaders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-config-file-loaders.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-config-objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-config-objects.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-config-output-formats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-config-output-formats.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-custom-fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-custom-fonts.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-hibernate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-hibernate.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-layer-parser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-layer-parser.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-named-styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-named-styles.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-processors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-processors.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-security.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring-style-parsers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring-style-parsers.xml -------------------------------------------------------------------------------- /core/src/main/resources/mapfish-spring.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/mapfish-spring.properties -------------------------------------------------------------------------------- /core/src/main/resources/net/opengis/schemas/wfs/1.0.0/wfs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/net/opengis/schemas/wfs/1.0.0/wfs.xsd -------------------------------------------------------------------------------- /core/src/main/resources/net/opengis/schemas/wfs/1.1.0/wfs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/net/opengis/schemas/wfs/1.1.0/wfs.xsd -------------------------------------------------------------------------------- /core/src/main/resources/net/opengis/schemas/wfs/2.0/wfs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/net/opengis/schemas/wfs/2.0/wfs.xsd -------------------------------------------------------------------------------- /core/src/main/resources/org/mapfish/print/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/org/mapfish/print/version.properties -------------------------------------------------------------------------------- /core/src/main/resources/shell-default-log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/shell-default-log.xml -------------------------------------------------------------------------------- /core/src/main/resources/shell-info-log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/shell-info-log.xml -------------------------------------------------------------------------------- /core/src/main/resources/shell-quiet-log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/shell-quiet-log.xml -------------------------------------------------------------------------------- /core/src/main/resources/shell-verbose-log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/resources/shell-verbose-log.xml -------------------------------------------------------------------------------- /core/src/main/webapp/WEB-INF/classes/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/WEB-INF/classes/logback.xml -------------------------------------------------------------------------------- /core/src/main/webapp/WEB-INF/mapfish-print-printer-factory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/WEB-INF/mapfish-print-printer-factory.xml -------------------------------------------------------------------------------- /core/src/main/webapp/WEB-INF/mapfish-print-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/WEB-INF/mapfish-print-servlet.xml -------------------------------------------------------------------------------- /core/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /core/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /core/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/index.html -------------------------------------------------------------------------------- /core/src/main/webapp/mapfish_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/main/webapp/mapfish_transparent.png -------------------------------------------------------------------------------- /core/src/scripts/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/scripts/print -------------------------------------------------------------------------------- /core/src/scripts/print.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/scripts/print.bat -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/StatsUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/StatsUtilsTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/TestHttpClientFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/TestHttpClientFactory.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/URIUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/URIUtilsTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/cli/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/cli/MainTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/config/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/config/package-info.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/http/HttpCredentialTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/http/HttpCredentialTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/http/HttpProxyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/http/HttpProxyTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/map/DistanceUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/map/DistanceUnitTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/map/ScaleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/map/ScaleTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/output/ValuesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/output/ValuesTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/mapfish/print/url/data/TestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/java/org/mapfish/print/url/data/TestHandler.java -------------------------------------------------------------------------------- /core/src/test/resources/META-INF/services/javax.mail.Provider: -------------------------------------------------------------------------------- 1 | org.mapfish.print.servlet.SmtpProviderTestUtils 2 | -------------------------------------------------------------------------------- /core/src/test/resources/fonts/ComingSoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/fonts/ComingSoon.ttf -------------------------------------------------------------------------------- /core/src/test/resources/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/fonts/LICENSE.txt -------------------------------------------------------------------------------- /core/src/test/resources/icons/info-crosswalk-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/icons/info-crosswalk-9.png -------------------------------------------------------------------------------- /core/src/test/resources/icons/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/icons/warn.png -------------------------------------------------------------------------------- /core/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/logback.xml -------------------------------------------------------------------------------- /core/src/test/resources/map-data/geojson/ny-roads-3857.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/geojson/ny-roads-3857.json -------------------------------------------------------------------------------- /core/src/test/resources/map-data/geojson/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/geojson/states.json -------------------------------------------------------------------------------- /core/src/test/resources/map-data/gml/spearfish-streams-v2.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/gml/spearfish-streams-v2.gml -------------------------------------------------------------------------------- /core/src/test/resources/map-data/gml/spearfish-streams-v311.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/gml/spearfish-streams-v311.gml -------------------------------------------------------------------------------- /core/src/test/resources/map-data/gml/spearfish-streams-v32.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/gml/spearfish-streams-v32.gml -------------------------------------------------------------------------------- /core/src/test/resources/map-data/gml/tiger_roads.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/gml/tiger_roads.kml -------------------------------------------------------------------------------- /core/src/test/resources/map-data/icons/men-at-work.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/icons/men-at-work.jpeg -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/arbres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/arbres.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/legend1.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/legend2.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/legend3.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/legend4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/legend4.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/perturbations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/perturbations.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/points-de-vente.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/points-de-vente.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/legends/stationement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/legends/stationement.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1205x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1205x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1205x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1205x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1206x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1206x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1206x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1206x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1207x1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1207x1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ny-tiles/1207x1540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ny-tiles/1207x1540.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/ol-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/ol-demo.html -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/OpenLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/OpenLayers.js -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/blank.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/close.gif -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/east-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/marker-blue.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/marker-gold.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/marker-green.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/marker.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/north-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/north-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/slider.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/south-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/south-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/west-mini.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/img/zoombar.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/ol-demo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/ol-demo.cfg -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/openlayers/readme.txt -------------------------------------------------------------------------------- /core/src/test/resources/map-data/openlayers/theme/default/framedCloud.css: -------------------------------------------------------------------------------- 1 | .olFramedCloudPopupContent { 2 | padding: 5px; 3 | overflow: auto; 4 | } 5 | -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1205/1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/12/1205/1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1205/1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/12/1205/1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1206/1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/12/1206/1538.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/12/1206/1539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/12/1206/1539.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4823/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4823/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4823/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4823/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4824/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4824/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4824/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4824/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4825/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4825/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4825/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4825/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4826/6155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4826/6155.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/14/4826/6156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/14/4826/6156.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9646/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9646/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9646/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9646/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9647/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9647/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9647/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9647/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9648/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9648/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9648/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9648/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9649/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9649/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9649/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9649/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9650/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9650/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9650/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9650/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9651/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9651/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9651/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9651/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9652/12311.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9652/12312.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/osm/15/9652/12313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/osm/15/9652/12313.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/states-native-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/states-native-rotation.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/styles/green.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/styles/green.sld -------------------------------------------------------------------------------- /core/src/test/resources/map-data/styles/remoteOws.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/styles/remoteOws.sld -------------------------------------------------------------------------------- /core/src/test/resources/map-data/styles/remoteTasmania.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/styles/remoteTasmania.sld -------------------------------------------------------------------------------- /core/src/test/resources/map-data/tiger-ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/tiger-ny.png -------------------------------------------------------------------------------- /core/src/test/resources/map-data/wfs-t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/wfs-t.html -------------------------------------------------------------------------------- /core/src/test/resources/map-data/zoomed-in-ny-tiger.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/map-data/zoomed-in-ny-tiger.tif -------------------------------------------------------------------------------- /core/src/test/resources/mapfish-spring-hibernate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/mapfish-spring-hibernate.xml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/attribute/scalebar/requestData.json: -------------------------------------------------------------------------------- 1 | { 2 | "attributes": {} 3 | } 4 | -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/config.yaml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/expectedV3Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/expectedV3Image.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/simpleReport.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/simpleReport.jrxml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/streams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/streams.json -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/streams.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/streams.sld -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/cli/v3Request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/cli/v3Request.json -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/config/font/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/config/font/config.yaml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/http/proxy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/http/proxy/config.yaml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/http/proxy/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/http/proxy/keystore.jks -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/map/style/json/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/map/style/json/mark.png -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/servlet/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/org/mapfish/print/servlet/config.yaml -------------------------------------------------------------------------------- /core/src/test/resources/org/mapfish/print/servlet/fileloader/resourceFile.txt: -------------------------------------------------------------------------------- 1 | some resource file for the configuration 2 | -------------------------------------------------------------------------------- /core/src/test/resources/test-mapfish-spring-custom-fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/core/src/test/resources/test-mapfish-spring-custom-fonts.xml -------------------------------------------------------------------------------- /docker-compose.override.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docker-compose.override.sample.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/build.gradle -------------------------------------------------------------------------------- /docs/src/main/groovy/DocsXmlSupport.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/groovy/DocsXmlSupport.groovy -------------------------------------------------------------------------------- /docs/src/main/groovy/GenerateDocs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/groovy/GenerateDocs.groovy -------------------------------------------------------------------------------- /docs/src/main/groovy/Javadoc7Parser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/groovy/Javadoc7Parser.groovy -------------------------------------------------------------------------------- /docs/src/main/resources/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/css/custom.css -------------------------------------------------------------------------------- /docs/src/main/resources/css/readthedocs-doc-embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/css/readthedocs-doc-embed.css -------------------------------------------------------------------------------- /docs/src/main/resources/css/sphinx_rtd_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/css/sphinx_rtd_theme.css -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/src/main/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/src/main/resources/images/Mapfish_Print_V3_Architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/Mapfish_Print_V3_Architecture.svg -------------------------------------------------------------------------------- /docs/src/main/resources/images/adapt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/adapt1.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/expression.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/image_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/image_table.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/jasperbands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/jasperbands.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/jaspersoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/jaspersoft.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/preview.png -------------------------------------------------------------------------------- /docs/src/main/resources/images/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/images/prompt.png -------------------------------------------------------------------------------- /docs/src/main/resources/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/js/theme.js -------------------------------------------------------------------------------- /docs/src/main/resources/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/pages.json -------------------------------------------------------------------------------- /docs/src/main/resources/templates/_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/_content.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/_main.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/_sub_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/_sub_nav.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/api.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/attributes.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/configuration.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/docker.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/download.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/fileloaders.html: -------------------------------------------------------------------------------- 1 |
Plugins to load config resources.
2 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/jasperreports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/jasperreports.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/layers.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/outputformats.html: -------------------------------------------------------------------------------- 1 |Available output formats.
2 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/processors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/processors.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/properties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/properties.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/scaling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/scaling.html -------------------------------------------------------------------------------- /docs/src/main/resources/templates/styles.html: -------------------------------------------------------------------------------- 1 |Styles for vector layers.
2 | -------------------------------------------------------------------------------- /docs/src/main/resources/templates/tableimages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/docs/src/main/resources/templates/tableimages.html -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/build.gradle -------------------------------------------------------------------------------- /examples/geoserver-data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/README.rst -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/arc_sample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/arc_sample/info.xml -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/arc_sample/precip30min.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/arc_sample/precip30min.asc -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/arc_sample/precip30min.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/arc_sample/precip30min.prj -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/Pk50095.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/Pk50095.prj -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/Pk50095.tfw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/Pk50095.tfw -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/Pk50095.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/Pk50095.tif -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/info.xml -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/usa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/usa.jpeg -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/usa.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/usa.meta -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/img_sample/usa.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/img_sample/usa.prj -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/info.xml -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.fix -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.prj -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.properties -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.qix -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.shp -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/mosaic_sample/mosaic.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/mosaic_sample/mosaic.shx -------------------------------------------------------------------------------- /examples/geoserver-data/coverages/sfdem_sfdem/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/coverages/sfdem_sfdem/info.xml -------------------------------------------------------------------------------- /examples/geoserver-data/csw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/csw.xml -------------------------------------------------------------------------------- /examples/geoserver-data/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/README.md -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/giant_polygon.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/giant_polygon.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/giant_polygon.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/giant_polygon.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/giant_polygon.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/giant_polygon.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poi.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poi.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poi.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poi.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poi.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poi.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poly_landmarks.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poly_landmarks.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poly_landmarks.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poly_landmarks.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/poly_landmarks.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/poly_landmarks.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/tiger_roads.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/tiger_roads.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/tiger_roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/tiger_roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/nyc/tiger_roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/nyc/tiger_roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/archsites.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/archsites.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/archsites.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/archsites.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/archsites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/archsites.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/bugsites.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/bugsites.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/bugsites.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/bugsites.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/bugsites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/bugsites.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/restricted.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/restricted.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/restricted.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/restricted.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/restricted.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/restricted.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/roads.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/roads.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/sfdem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/sfdem.tif -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/streams.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/streams.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/streams.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/streams.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/sf/streams.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/sf/streams.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/README.md -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/states.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/states.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/states.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/states.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/shapefiles/states.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/shapefiles/states.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_cities.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_cities.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_cities.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_cities.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_cities.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_roads.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_roads.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.qix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_roads.qix -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_roads.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_roads.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_roads.shx -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.dbf -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.prj -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shp -------------------------------------------------------------------------------- /examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/data/taz_shapes/tasmania_water_bodies.shx -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WCS_describeCoverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WCS_describeCoverage.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WCS_getCapabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WCS_getCapabilities.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WCS_getCoverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WCS_getCoverage.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_describeFeatureType-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_describeFeatureType-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_describeFeatureType-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_describeFeatureType-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getCapabilities-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getCapabilities-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getCapabilities-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getCapabilities-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeature-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeature-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeature-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeature-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeature-2.0.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeature-2.0.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeature-2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeature-2.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBBOX-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBBOX-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBBOX-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBBOX-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBBOX.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBBOX.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBetween-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBetween-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBetween-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBetween-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBetween.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBetween.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureBetweenCQL.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureBetweenCQL.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureFid.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureFid.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureFidFilter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureFidFilter.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureIntersects-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureIntersects-1.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureIntersects-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureIntersects-1.1.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureIntersects.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureIntersects.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureMultiFilter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureMultiFilter.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureNotDisjoint-2.0.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureNotDisjoint-2.0.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_getFeatureNotDisjoint-2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_getFeatureNotDisjoint-2.0.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_mathGetFeature.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_mathGetFeature.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_mathGetFeature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_mathGetFeature.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_transactionDelete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_transactionDelete.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_transactionInsert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_transactionInsert.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_transactionUpdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_transactionUpdate.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WFS_transactionUpdateGeom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WFS_transactionUpdateGeom.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_GetLegendGraphic-SLD.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_GetLegendGraphic-SLD.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_GetLegendGraphic-SLD_BODY.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_GetLegendGraphic-SLD_BODY.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_GetLegendGraphic.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_GetLegendGraphic.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_describeLayer.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_describeLayer.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_featureInfo.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_featureInfo.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getCapabilities.url: -------------------------------------------------------------------------------- 1 | wms?request=getCapabilities 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_OpenLayers.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_OpenLayers.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_SLD_BODY_LiteralMode.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_SLD_BODY_LiteralMode.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_SVG.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_SVG.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_SVG_Style.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_SVG_Style.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_fid.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_fid.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_fidfilter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_fidfilter.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_inlineFeature.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_inlineFeature.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_inlineFeatureSmile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_inlineFeatureSmile.xml -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_multilayer.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_multilayer.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_multilayer_cql.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_multilayer_cql.url -------------------------------------------------------------------------------- /examples/geoserver-data/demo/WMS_getMap_multilayer_filter.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/demo/WMS_getMap_multilayer_filter.url -------------------------------------------------------------------------------- /examples/geoserver-data/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/global.xml -------------------------------------------------------------------------------- /examples/geoserver-data/images/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/colorpicker.jpg -------------------------------------------------------------------------------- /examples/geoserver-data/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/delete.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/deleteRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/deleteRed.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/down.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/gs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/gs.gif -------------------------------------------------------------------------------- /examples/geoserver-data/images/gs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/gs.ico -------------------------------------------------------------------------------- /examples/geoserver-data/images/rasterLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/rasterLegend.png -------------------------------------------------------------------------------- /examples/geoserver-data/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/images/up.png -------------------------------------------------------------------------------- /examples/geoserver-data/layergroups/spearfish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/layergroups/spearfish.xml -------------------------------------------------------------------------------- /examples/geoserver-data/layergroups/tasmania.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/layergroups/tasmania.xml -------------------------------------------------------------------------------- /examples/geoserver-data/layergroups/tiger-ny.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/layergroups/tiger-ny.xml -------------------------------------------------------------------------------- /examples/geoserver-data/logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/logging.xml -------------------------------------------------------------------------------- /examples/geoserver-data/palettes/dem31.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/palettes/dem31.pal -------------------------------------------------------------------------------- /examples/geoserver-data/palettes/ita31.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/palettes/ita31.pal -------------------------------------------------------------------------------- /examples/geoserver-data/palettes/ny31.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/palettes/ny31.pal -------------------------------------------------------------------------------- /examples/geoserver-data/palettes/popshade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/palettes/popshade.png -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/AddressGap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/AddressGap.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/AddressOverlap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/AddressOverlap.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/AngleSize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/AngleSize.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Attribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Attribute.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Constraint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Constraint.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/ContainsIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/ContainsIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/CrossesIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/CrossesIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/DisjointIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/DisjointIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Domain.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Equality.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Equality.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/GazetteerName.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/GazetteerName.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/IntersectsIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/IntersectsIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/IsValidGeometry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/IsValidGeometry.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineCoveredByFeatureLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineCoveredByFeatureLine.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineCoveredByPolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineCoveredByPolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineCoveredByPolygonBoundary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineCoveredByPolygonBoundary.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineEndPointCoveredByLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineEndPointCoveredByLine.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineIntersectsLineWithNode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineIntersectsLineWithNode.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineMustBeASinglePart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineMustBeASinglePart.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineNoDangles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineNoDangles.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineNoPseudoNode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineNoPseudoNode.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineNoSelfIntersect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineNoSelfIntersect.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LineNoSelfOverlapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LineNoSelfOverlapping.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LinesNotIntersect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LinesNotIntersect.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/LinesNotOverlap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/LinesNotOverlap.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/NameExists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/NameExists.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/NameInList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/NameInList.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/NullZero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/NullZero.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/OverlapsIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/OverlapsIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PointCoveredByEndPointOfLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PointCoveredByEndPointOfLine.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PointCoveredByLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PointCoveredByLine.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PointCoveredByPolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PointCoveredByPolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PointCoveredByPolygonBoundary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PointCoveredByPolygonBoundary.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PointInsidePolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PointInsidePolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PolygonCoveredByPolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PolygonCoveredByPolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PolygonNoGaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PolygonNoGaps.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PolygonNotCoveredByPolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PolygonNotCoveredByPolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PolygonNotOverlappingLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PolygonNotOverlappingLine.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/PolygonNotOverlappingPolygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/PolygonNotOverlappingPolygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Range.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Range.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/RelateIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/RelateIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/SQL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/SQL.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/SingleValue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/SingleValue.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/StarNode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/StarNode.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/TouchesIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/TouchesIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/UniqueFID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/UniqueFID.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/Uniquity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/Uniquity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/plugIns/WithinIntegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/plugIns/WithinIntegrity.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/auth/default/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/auth/default/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/anonymous/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/anonymous/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/basic/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/basic/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/contextAsc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/contextAsc/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/contextNoAsc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/contextNoAsc/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/exception/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/exception/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/form/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/form/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/formLogout/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/formLogout/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/interceptor/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/interceptor/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/rememberme/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/rememberme/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/roleFilter/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/roleFilter/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/filter/sslFilter/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/filter/sslFilter/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/layers.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/layers.properties -------------------------------------------------------------------------------- /examples/geoserver-data/security/masterpw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/masterpw.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/masterpw/default/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/masterpw/default/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/masterpw/default/passwd: -------------------------------------------------------------------------------- 1 | 3Gu9U3xKK1DdKLlI3KiqxXsFcetfUA54 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/security/pwpolicy/default/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/pwpolicy/default/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/pwpolicy/master/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/pwpolicy/master/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/rest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/rest.properties -------------------------------------------------------------------------------- /examples/geoserver-data/security/role/default/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/role/default/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/role/default/roles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/role/default/roles.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/role/default/roles.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/role/default/roles.xsd -------------------------------------------------------------------------------- /examples/geoserver-data/security/services.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/services.properties -------------------------------------------------------------------------------- /examples/geoserver-data/security/usergroup/default/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/usergroup/default/config.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/usergroup/default/users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/usergroup/default/users.xml -------------------------------------------------------------------------------- /examples/geoserver-data/security/usergroup/default/users.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/security/usergroup/default/users.xsd -------------------------------------------------------------------------------- /examples/geoserver-data/styles/Lakes.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/Lakes.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/NamedPlaces.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/NamedPlaces.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/burg.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/burg.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/burg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/burg.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/burg02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/burg02.svg -------------------------------------------------------------------------------- /examples/geoserver-data/styles/capitals.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/capitals.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/capitals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/capitals.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/cite_lakes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/cite_lakes.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/default_generic.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/default_generic.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/default_line.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/default_line.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/default_line2.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/default_line2.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/default_point.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/default_point.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/default_polygon.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/default_polygon.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/dem.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/dem.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/dem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/dem.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/generic.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/giant_polygon.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/giant_polygon.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/giant_polygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/giant_polygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/grass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/grass.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/grass_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/grass_fill.png -------------------------------------------------------------------------------- /examples/geoserver-data/styles/grass_poly.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/grass_poly.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/green.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/green.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/green.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/line.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poi.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/poi.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/poi.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/point.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/point.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poly_landmarks.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/poly_landmarks.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/poly_landmarks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/poly_landmarks.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/polygon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/polygon.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/pophatch.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/pophatch.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/pophatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/pophatch.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/popshade.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/popshade.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/population.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/population.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/rain.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/rain.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/rain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/rain.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/raster.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/raster.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/raster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/raster.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/restricted.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/restricted.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/restricted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/restricted.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simpleRoads.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/simpleRoads.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simple_roads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/simple_roads.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simple_streams.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/simple_streams.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/simple_streams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/simple_streams.xml -------------------------------------------------------------------------------- /examples/geoserver-data/styles/tiger_roads.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/tiger_roads.sld -------------------------------------------------------------------------------- /examples/geoserver-data/styles/tiger_roads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/styles/tiger_roads.xml -------------------------------------------------------------------------------- /examples/geoserver-data/user_projections/epsg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/user_projections/epsg.properties -------------------------------------------------------------------------------- /examples/geoserver-data/validation/FeatureCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/validation/FeatureCheck.xml -------------------------------------------------------------------------------- /examples/geoserver-data/validation/IntegrityCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/validation/IntegrityCheck.xml -------------------------------------------------------------------------------- /examples/geoserver-data/wcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/wcs.xml -------------------------------------------------------------------------------- /examples/geoserver-data/wfs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/wfs.xml -------------------------------------------------------------------------------- /examples/geoserver-data/wms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/wms.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/cite/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/cite/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/cite/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/cite/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/it.geosolutions/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/it.geosolutions/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/nurc/mosaic/mosaic/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/nurc/mosaic/mosaic/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/nurc/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/nurc/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/nurc/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/nurc/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sde/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sde/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sde/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sde/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/archsites/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/archsites/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/bugsites/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/bugsites/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/datastore.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/restricted/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/restricted/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/roads/featuretype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/roads/featuretype.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/roads/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/roads/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sf/streams/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sf/streams/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sfdem/coveragestore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sfdem/coveragestore.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sfdem/sfdem/coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sfdem/sfdem/coverage.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/sfdem/sfdem/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/sfdem/sfdem/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/sf/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/sf/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/tiger/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/nyc/datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/tiger/nyc/datastore.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/nyc/poi/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/tiger/nyc/poi/layer.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/tiger/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/tiger/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/topp/namespace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/states_shapefile/states/title.ftl: -------------------------------------------------------------------------------- 1 | ${STATE_NAME.value} 2 | -------------------------------------------------------------------------------- /examples/geoserver-data/workspaces/topp/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/workspaces/topp/workspace.xml -------------------------------------------------------------------------------- /examples/geoserver-data/www/GeoServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/GeoServer.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/GeoServer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/GeoServer.webp -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/2771.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/2771.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/FederalLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/FederalLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/MunicipalityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/MunicipalityLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/PLRCadastreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/PLRCadastreLogo.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/StaoTyp1.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/StaoTyp2.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/StaoTyp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/StaoTyp3.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/de.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_canton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/logo_canton.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_confederation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/logo_confederation.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/logo_oereb_de.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/logo_oereb_fr.png -------------------------------------------------------------------------------- /examples/geoserver-data/www/oereb/logo_oereb_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/geoserver-data/www/oereb/logo_oereb_it.png -------------------------------------------------------------------------------- /examples/src/test/java/org/mapfish/print/AbstractApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/java/org/mapfish/print/AbstractApiTest.java -------------------------------------------------------------------------------- /examples/src/test/java/org/mapfish/print/ExamplesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/java/org/mapfish/print/ExamplesTest.java -------------------------------------------------------------------------------- /examples/src/test/java/org/mapfish/print/MetricsApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/java/org/mapfish/print/MetricsApiTest.java -------------------------------------------------------------------------------- /examples/src/test/java/org/mapfish/print/PrintApiTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/java/org/mapfish/print/PrintApiTest.java -------------------------------------------------------------------------------- /examples/src/test/resources/data/logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/data/logging.xml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/data_uri_json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/data_uri_json/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/data_uri_json/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/data_uri_json/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/geoext/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/geoext/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/requestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/geoext/requestData.json -------------------------------------------------------------------------------- /examples/src/test/resources/examples/geoext/simpleReport.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/geoext/simpleReport.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/http_processors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/http_processors/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/json_styling/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/json_styling/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/json_styling/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend/legend.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend/legend.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend/requestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend/requestData.json -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend/simpleReport.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend/simpleReport.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_cropped/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend_cropped/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_dpi/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend_dpi/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_dpi/legend.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend_dpi/legend.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_scaled/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend_scaled/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/legend_scaled/legend.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/legend_scaled/legend.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/mapexport/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/mapexport/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/mapexport/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/multiple_maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/multiple_maps/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/multiple_maps/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/multiple_maps/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/multiple_maps/report.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/multiple_maps/report.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/native_mix/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/native_mix/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/native_mix/report.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/native_mix/report.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/CantonalLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/CantonalLogo.jpg -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/Report.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/Report.properties -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/Report_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/Report_de.properties -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/Report_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/Report_fr.properties -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/Report_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/Report_it.properties -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/glossar.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/glossar.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/legal.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/legal.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/legalprovision.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/legalprovision.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/legend.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/legend.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/mainpage.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/mainpage.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/north.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/north.svg -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/pdfextract.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/pdfextract.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/requestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/requestData.json -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/table.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/table.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/textatweb.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/textatweb.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/themelist.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/themelist.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/toc.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/toc.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/tocFull.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/tocFull.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/tocReduced.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/tocReduced.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/topiclegend.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/topiclegend.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/oereb/topicpage.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/oereb/topicpage.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/paging/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/paging/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/paging/simpleReport.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/paging/simpleReport.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/printtiledwms/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/printtiledwms/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/report/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/report/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/report/report.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/report/report.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/report/requestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/report/requestData.json -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/resource_bundle/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/resource_bundle/Report_fr_CH.properties: -------------------------------------------------------------------------------- 1 | title = Titre en Français suisse 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/README.md: -------------------------------------------------------------------------------- 1 | A simple configuration showing a GeoJSON layer in a map. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/countries.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple/countries.geojson -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple/report.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple/report.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/README.md: -------------------------------------------------------------------------------- 1 | A simple A0 configuration showing the result of a WMS error. 2 | -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple_A0/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/report.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple_A0/report.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/simple_A0/requestData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/simple_A0/requestData.json -------------------------------------------------------------------------------- /examples/src/test/resources/examples/verboseExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/verboseExample/README.md -------------------------------------------------------------------------------- /examples/src/test/resources/examples/verboseExample/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/verboseExample/config.yaml -------------------------------------------------------------------------------- /examples/src/test/resources/examples/verboseExample/table.jrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples/verboseExample/table.jrxml -------------------------------------------------------------------------------- /examples/src/test/resources/examples_to_port/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/examples/src/test/resources/examples_to_port/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradlew-debug -------------------------------------------------------------------------------- /gradlew-debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradlew-debug.bat -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jMeter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/jMeter/Readme.md -------------------------------------------------------------------------------- /jMeter/jmeter-test-plan.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/jMeter/jmeter-test-plan.jmx -------------------------------------------------------------------------------- /jMeter/large-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/jMeter/large-request.json -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk21 3 | -------------------------------------------------------------------------------- /publish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/publish/README.md -------------------------------------------------------------------------------- /publish/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/publish/build.gradle -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/pyproject.toml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/settings.gradle -------------------------------------------------------------------------------- /spell-ignore-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapfish/mapfish-print/HEAD/spell-ignore-words.txt --------------------------------------------------------------------------------