aboutsummaryrefslogtreecommitdiff
path: root/graphics/qgis
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/qgis')
-rw-r--r--graphics/qgis/Makefile6
-rw-r--r--graphics/qgis/distinfo6
-rw-r--r--graphics/qgis/files/patch-cmake_FindGRASS.cmake13
-rw-r--r--graphics/qgis/files/patch-cmake_FindPyQt5.py11
-rw-r--r--graphics/qgis/files/patch-cmake_Txt2Tags.cmake20
-rw-r--r--graphics/qgis/files/patch-doc_INSTALL.html9
-rw-r--r--graphics/qgis/files/patch-doc_INSTALL.t2t28
-rw-r--r--graphics/qgis/files/patch-doc_news.html9
-rw-r--r--graphics/qgis/files/patch-doc_news.t2t18
-rw-r--r--graphics/qgis/files/patch-python_plugins_processing_algs_saga_SagaAlgorithmProvider.py10
-rw-r--r--graphics/qgis/files/patch-scripts_release.pl13
-rw-r--r--graphics/qgis/files/patch-scripts_update-news.pl13
-rw-r--r--graphics/qgis/files/patch-src_analysis_interpolation_qgsinterpolator.h10
-rw-r--r--graphics/qgis/files/patch-src_core_CMakeLists.txt10
-rw-r--r--graphics/qgis/files/patch-src_plugins_grass_CMakeLists.txt10
-rw-r--r--graphics/qgis/pkg-plist223
16 files changed, 149 insertions, 260 deletions
diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile
index 3aa767e9989d..81e473357a72 100644
--- a/graphics/qgis/Makefile
+++ b/graphics/qgis/Makefile
@@ -3,8 +3,7 @@
PORTNAME= qgis
DISTVERSIONPREFIX= final-
-DISTVERSION= 3_10_1
-PORTREVISION= 3
+DISTVERSION= 3_12_1
CATEGORIES= graphics geography
MAINTAINER= rhurlin@gwdg.de
@@ -144,8 +143,6 @@ PLIST_SUB= DISTVERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
post-patch:
- @${REINPLACE_CMD} -e 's|markupsafe ||g' \
- ${WRKSRC}/python/ext-libs/CMakeLists.txt
# On i386, '-mllvm -inline-threshold=128' does not build under all circumstances
# See bugs 242557 and 241687.
.if ${OPSYS} == FreeBSD && ${ARCH} == "i386"
@@ -158,6 +155,7 @@ pre-configure:
post-install:
@${RM} ${STAGEDIR}${DATADIR}/python/pytz/tzfile.py.bak
+ ${FIND} ${STAGEDIR}${LOCALBASE} -name "__pycache__" | ${XARGS} ${RM} -rf
@${RM} /tmp/srs.db
check:
diff --git a/graphics/qgis/distinfo b/graphics/qgis/distinfo
index c30b50f45fba..c5725ec25449 100644
--- a/graphics/qgis/distinfo
+++ b/graphics/qgis/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1575643297
-SHA256 (qgis-QGIS-final-3_10_1_GH0.tar.gz) = 1f63a3010a2ef0faf1098b448dfefb8468912cd688738a7fbf57de5f9a04af07
-SIZE (qgis-QGIS-final-3_10_1_GH0.tar.gz) = 117585660
+TIMESTAMP = 1585054080
+SHA256 (qgis-QGIS-final-3_12_1_GH0.tar.gz) = 29dbb7738180fe16392fc98a4f4d84a1c96252eae1ab0055d414548cd76b3635
+SIZE (qgis-QGIS-final-3_12_1_GH0.tar.gz) = 128867387
diff --git a/graphics/qgis/files/patch-cmake_FindGRASS.cmake b/graphics/qgis/files/patch-cmake_FindGRASS.cmake
deleted file mode 100644
index b8802605689b..000000000000
--- a/graphics/qgis/files/patch-cmake_FindGRASS.cmake
+++ /dev/null
@@ -1,13 +0,0 @@
---- cmake/FindGRASS.cmake.orig 2020-01-25 06:32:41 UTC
-+++ cmake/FindGRASS.cmake
-@@ -161,9 +161,7 @@ IF (UNIX)
- IF (GRASS_FIND_VERSION EQUAL 7)
- IF (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
- FOREACH (VERSION_MINOR 9 8 7 6 5 4 3 2 1 0)
-- FOREACH (VERSION_BUILD 9 8 7 6 5 4 3 2 1 0)
-- LIST (APPEND GRASS_PATHS /usr/local/grass-${GRASS_FIND_VERSION}.${VERSION_MINOR}.${VERSION_BUILD})
-- ENDFOREACH (VERSION_BUILD)
-+ LIST (APPEND GRASS_PATHS /usr/local/grass${GRASS_FIND_VERSION}${VERSION_MINOR})
- ENDFOREACH(VERSION_MINOR)
- ELSE (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
- FOREACH (PATH /usr/lib64 /usr/lib)
diff --git a/graphics/qgis/files/patch-cmake_FindPyQt5.py b/graphics/qgis/files/patch-cmake_FindPyQt5.py
deleted file mode 100644
index ea0b2f59a35f..000000000000
--- a/graphics/qgis/files/patch-cmake_FindPyQt5.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake/FindPyQt5.py.orig 2019-01-02 08:42:18 UTC
-+++ cmake/FindPyQt5.py
-@@ -54,7 +54,7 @@ except ImportError:
- 'pyqt_version_str': PyQt5.QtCore.PYQT_VERSION_STR,
- 'pyqt_sip_flags': PyQt5.QtCore.PYQT_CONFIGURATION['sip_flags'],
- 'pyqt_mod_dir': os.path.join(cfg.default_mod_dir, "PyQt5"),
-- 'pyqt_sip_dir': sip_dir,
-+ 'pyqt_sip_dir': sip_dir.replace('PyQtsip', 'PyQt5'),
- 'pyqt_bin_dir': cfg.default_bin_dir,
- }
- pyqtcfg = sipconfig.Configuration([cfg])
diff --git a/graphics/qgis/files/patch-cmake_Txt2Tags.cmake b/graphics/qgis/files/patch-cmake_Txt2Tags.cmake
deleted file mode 100644
index d3cbc680b40c..000000000000
--- a/graphics/qgis/files/patch-cmake_Txt2Tags.cmake
+++ /dev/null
@@ -1,20 +0,0 @@
---- cmake/Txt2Tags.cmake.orig 2019-12-06 12:02:59 UTC
-+++ cmake/Txt2Tags.cmake
-@@ -42,7 +42,7 @@ MACRO(ADD_TXT2TAGS_FILES _sources)
- ADD_CUSTOM_COMMAND(
- OUTPUT ${_out}
- COMMAND ${TXT2TAGS_EXECUTABLE}
-- ARGS --encoding=utf-8 -o${_out} -t txt ${_in}
-+ ARGS -o${_out} -t txt ${_in}
- DEPENDS ${_in}
- COMMENT "Building ${_out} from ${_in}"
- )
-@@ -50,7 +50,7 @@ MACRO(ADD_TXT2TAGS_FILES _sources)
- ADD_CUSTOM_COMMAND(
- OUTPUT ${_out}.html
- COMMAND ${TXT2TAGS_EXECUTABLE}
-- ARGS --encoding=utf-8 -o${_out}.html -t html ${_in}
-+ ARGS -o${_out}.html -t html ${_in}
- DEPENDS ${_in}
- COMMENT "Building ${_out}.html from ${_in}"
- )
diff --git a/graphics/qgis/files/patch-doc_INSTALL.html b/graphics/qgis/files/patch-doc_INSTALL.html
deleted file mode 100644
index 65c7743567dc..000000000000
--- a/graphics/qgis/files/patch-doc_INSTALL.html
+++ /dev/null
@@ -1,9 +0,0 @@
---- doc/INSTALL.html.orig 2019-12-06 12:02:59 UTC
-+++ doc/INSTALL.html
-@@ -3130,5 +3130,5 @@ The following people have contributed to this document
-
- </DIV>
- <!-- html code generated by txt2tags 2.6 (http://txt2tags.org) -->
--<!-- cmdline: txt2tags -\-encoding=utf-8 -odoc/INSTALL.html -t html doc/INSTALL.t2t -->
-+<!-- cmdline: txt2tags -odoc/INSTALL.html -t html doc/INSTALL.t2t -->
- </BODY></HTML>
diff --git a/graphics/qgis/files/patch-doc_INSTALL.t2t b/graphics/qgis/files/patch-doc_INSTALL.t2t
deleted file mode 100644
index f75a5ca840c4..000000000000
--- a/graphics/qgis/files/patch-doc_INSTALL.t2t
+++ /dev/null
@@ -1,28 +0,0 @@
---- doc/INSTALL.t2t.orig 2019-12-06 12:02:59 UTC
-+++ doc/INSTALL.t2t
-@@ -4,14 +4,14 @@ Building QGIS from source - step by step
-
- %! target : html
- %! style : style.css
--%! Options : --toc --toc-level 2 --enum-title --css-sugar --css-inside
-+%! Options : --toc --toc-level 2 --enum-title
- %! preproc : TUT_URL https://qgis.org
- %! PostProc(html): '(?i)(<pre>)' '<div class="code">\1'
- %! PostProc(html): '(?i)(</pre>)' '\1</div>'
- %! PostProc(html): \(R\) &reg;
- % Next line will replace tabs with 2 spaces in txt generated outputs
- %! PostProc(txt): '(?i)(\t)' ' '
--%! encoding: iso-8859-1
-+%! encoding: utf-8
- %
- % Tex processing
- %
-@@ -36,7 +36,7 @@ Building QGIS from source - step by step
- %! PostProc(tex): NEWPAGE '\\newpage'
- % Give alternating table rows different colors and use a smaller font in tables (\tiny)
- %! PostProc(tex): '\\begin{tabular}' '\\rowcolors{2}{tableShade}{white} \n\\tiny\\begin{tabular}'
--%! encoding: iso-8859-1
-+%! encoding: utf-8
-
- %! PostProc(tex): WALLPAPER-IMAGE 'qgis-footer.png'
- % These are comments and will not be generated in any output
diff --git a/graphics/qgis/files/patch-doc_news.html b/graphics/qgis/files/patch-doc_news.html
deleted file mode 100644
index 66d84035c67c..000000000000
--- a/graphics/qgis/files/patch-doc_news.html
+++ /dev/null
@@ -1,9 +0,0 @@
---- doc/news.html.orig 2019-12-06 12:02:59 UTC
-+++ doc/news.html
-@@ -3651,5 +3651,5 @@ July 6, 2002
- </DIV>
-
- <!-- html code generated by txt2tags 2.6 (http://txt2tags.org) -->
--<!-- cmdline: txt2tags -\-encoding=utf-8 -odoc/news.html -t html doc/news.t2t -->
-+<!-- cmdline: txt2tags -odoc/news.html -t html doc/news.t2t -->
- </BODY></HTML>
diff --git a/graphics/qgis/files/patch-doc_news.t2t b/graphics/qgis/files/patch-doc_news.t2t
deleted file mode 100644
index c5b4fbed0e99..000000000000
--- a/graphics/qgis/files/patch-doc_news.t2t
+++ /dev/null
@@ -1,18 +0,0 @@
---- doc/news.t2t.orig 2019-12-06 12:02:59 UTC
-+++ doc/news.t2t
-@@ -4,13 +4,13 @@ Change history for the QGIS Project
-
- %! target : html
- %! style : style.css
--%! Options : --toc --toc-level 1 --enum-title --css-sugar --css-inside
-+%! Options : --toc --toc-level 1 --enum-title
- %! preproc : TUT_URL https://qgis.org
- %! PostProc(html): '(?i)(<pre>)' '<div class="code">\1'
- %! PostProc(html): '(?i)(</pre>)' '\1</div>'
- % Next line will replace tabs with 2 spaces in txt generated outputs
- %! PostProc(txt): '(?i)(\t)' ' '
--%! encoding: iso-8859-1
-+%! encoding: utf-8
- %
- % These are comments and will not be generated in any output
- % -------------------
diff --git a/graphics/qgis/files/patch-python_plugins_processing_algs_saga_SagaAlgorithmProvider.py b/graphics/qgis/files/patch-python_plugins_processing_algs_saga_SagaAlgorithmProvider.py
index c6f92a2503b3..a074fa5c8042 100644
--- a/graphics/qgis/files/patch-python_plugins_processing_algs_saga_SagaAlgorithmProvider.py
+++ b/graphics/qgis/files/patch-python_plugins_processing_algs_saga_SagaAlgorithmProvider.py
@@ -1,19 +1,19 @@
---- python/plugins/processing/algs/saga/SagaAlgorithmProvider.py.orig 2019-03-02 02:07:46 UTC
+--- python/plugins/processing/algs/saga/SagaAlgorithmProvider.py.orig 2020-03-27 05:50:09 UTC
+++ python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
-@@ -82,7 +82,7 @@ class SagaAlgorithmProvider(QgsProcessingProvider):
+@@ -79,7 +79,7 @@ class SagaAlgorithmProvider(QgsProcessingProvider):
def canBeActivated(self):
version = SagaUtils.getInstalledVersion(True)
-- if version is not None and version.startswith(REQUIRED_VERSION):
+- if version is not None and (version.startswith(REQUIRED_VERSION) or version.startswith(BETA_SUPPORT_VERSION)):
+ if version is not None and version >= REQUIRED_VERSION:
return True
return False
-@@ -93,7 +93,7 @@ class SagaAlgorithmProvider(QgsProcessingProvider):
+@@ -96,7 +96,7 @@ class SagaAlgorithmProvider(QgsProcessingProvider):
self.tr('Processing'), Qgis.Critical)
return
-- if not version.startswith(REQUIRED_VERSION):
+- if not version.startswith(REQUIRED_VERSION) and not version.startswith(BETA_SUPPORT_VERSION):
+ if version < REQUIRED_VERSION:
QgsMessageLog.logMessage(self.tr('Problem with SAGA installation: unsupported SAGA version (found: {}, required: {}).').format(version, REQUIRED_VERSION),
self.tr('Processing'),
diff --git a/graphics/qgis/files/patch-scripts_release.pl b/graphics/qgis/files/patch-scripts_release.pl
deleted file mode 100644
index b34fc12f505f..000000000000
--- a/graphics/qgis/files/patch-scripts_release.pl
+++ /dev/null
@@ -1,13 +0,0 @@
---- scripts/release.pl.orig 2019-12-06 12:02:59 UTC
-+++ scripts/release.pl
-@@ -182,8 +182,8 @@ run( "cp debian/changelog /tmp", "backup changelog fai
- unless( $dopoint ) {
- run( "perl -i -pe 's/qgis-dev-deps/qgis-ltr-deps/;' doc/msvc.t2t", "could not update osgeo4w deps package" ) if $doltr;
- run( "perl -i -pe 's/qgis-dev-deps/qgis-rel-deps/;' doc/msvc.t2t", "could not update osgeo4w deps package" ) unless $doltr;
-- run( "txt2tags --encoding=utf-8 -odoc/INSTALL.html -t html doc/INSTALL.t2t", "could not update INSTALL.html" );
-- run( "txt2tags --encoding=utf-8 -oINSTALL -t txt doc/INSTALL.t2t", "could not update INSTALL" );
-+ run( "txt2tags -odoc/INSTALL.html -t html doc/INSTALL.t2t", "could not update INSTALL.html" );
-+ run( "txt2tags -oINSTALL -t txt doc/INSTALL.t2t", "could not update INSTALL" );
-
- run( "cp -v images/splash/splash-$newmajor.$newminor.png images/splash/splash.png", "splash png switch failed" );
- run( "convert -resize 164x314 ms-windows/Installer-Files/WelcomeFinishPage-$newmajor.$newminor.png BMP3:ms-windows/Installer-Files/WelcomeFinishPage.bmp", "installer bitmap switch failed" );
diff --git a/graphics/qgis/files/patch-scripts_update-news.pl b/graphics/qgis/files/patch-scripts_update-news.pl
deleted file mode 100644
index 6fd213c2121e..000000000000
--- a/graphics/qgis/files/patch-scripts_update-news.pl
+++ /dev/null
@@ -1,13 +0,0 @@
---- scripts/update-news.pl.orig 2019-12-06 12:02:59 UTC
-+++ scripts/update-news.pl
-@@ -61,8 +61,8 @@ close $in;
-
- copy($tempfile, "doc/news.t2t");
-
--system "txt2tags --encoding=utf-8 -odoc/news.html -t html doc/news.t2t";
--system "txt2tags --encoding=utf-8 -oNEWS -t txt doc/news.t2t";
-+system "txt2tags -odoc/news.html -t html doc/news.t2t";
-+system "txt2tags -oNEWS -t txt doc/news.t2t";
-
- =head1 NAME
-
diff --git a/graphics/qgis/files/patch-src_analysis_interpolation_qgsinterpolator.h b/graphics/qgis/files/patch-src_analysis_interpolation_qgsinterpolator.h
deleted file mode 100644
index aeaa4120161f..000000000000
--- a/graphics/qgis/files/patch-src_analysis_interpolation_qgsinterpolator.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/analysis/interpolation/qgsinterpolator.h.orig 2019-07-13 11:21:02 UTC
-+++ src/analysis/interpolation/qgsinterpolator.h
-@@ -18,6 +18,7 @@
- #ifndef QGSINTERPOLATOR_H
- #define QGSINTERPOLATOR_H
-
-+#include <QList>
- #include <QVector>
- #include "qgis_sip.h"
- #include "qgis_analysis.h"
diff --git a/graphics/qgis/files/patch-src_core_CMakeLists.txt b/graphics/qgis/files/patch-src_core_CMakeLists.txt
deleted file mode 100644
index 0d178daf2f4b..000000000000
--- a/graphics/qgis/files/patch-src_core_CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/core/CMakeLists.txt.orig 2019-10-28 04:34:30 UTC
-+++ src/core/CMakeLists.txt
-@@ -889,6 +889,7 @@ ELSE(MSVC)
- SET_SOURCE_FILES_PROPERTIES(${QGIS_CORE_MOC_SRCS} PROPERTIES COMPILE_FLAGS "-Wno-deprecated-declarations" )
- IF ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" AND (CMAKE_BUILD_TYPE MATCHES Release OR CMAKE_BUILD_TYPE MATCHES RelWithDebInfo))
- SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_BINARY_DIR}/qgsexpression_texts.cpp PROPERTIES COMPILE_FLAGS "-O1")
-+ SET_SOURCE_FILES_PROPERTIES(qgscoordinatereferencesystem.cpp PROPERTIES COMPILE_FLAGS "-mllvm -inline-threshold=128")
- ENDIF ()
- ENDIF(MSVC)
-
diff --git a/graphics/qgis/files/patch-src_plugins_grass_CMakeLists.txt b/graphics/qgis/files/patch-src_plugins_grass_CMakeLists.txt
deleted file mode 100644
index 27d35ba08abd..000000000000
--- a/graphics/qgis/files/patch-src_plugins_grass_CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/plugins/grass/CMakeLists.txt.orig 2018-11-23 12:08:36 UTC
-+++ src/plugins/grass/CMakeLists.txt
-@@ -211,6 +211,7 @@ MACRO(ADD_GRASSPLUGIN GRASS_BUILD_VERSION)
- qgis_app
- qgis_gui
- ${OPENPTY_LIBRARY}
-+ -lulog
- )
-
- IF (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
diff --git a/graphics/qgis/pkg-plist b/graphics/qgis/pkg-plist
index fbbcfedc6433..061e7f44c064 100644
--- a/graphics/qgis/pkg-plist
+++ b/graphics/qgis/pkg-plist
@@ -2,6 +2,7 @@
bin/qgis
bin/qgis_bench
%%SERVER%%bin/qgis_mapserv.fcgi
+%%SERVER%%bin/qgis_mapserver
%%SERVER%%bin/wms_metadata.xml
include/qgis/Bezier3D.h
include/qgis/CloughTocherInterpolator.h
@@ -30,6 +31,7 @@ include/qgis/qgisinterface.h
include/qgis/qgisplugin.h
include/qgis/qgs25drenderer.h
include/qgis/qgs25drendererwidget.h
+include/qgis/qgs3dalgorithms.h
include/qgis/qgs3danimationsettings.h
include/qgis/qgs3dmapscene.h
include/qgis/qgs3dmapsettings.h
@@ -50,6 +52,7 @@ include/qgis/qgsabstractmetadatabase.h
include/qgis/qgsabstractproviderconnection.h
include/qgis/qgsabstractreportsection.h
include/qgis/qgsabstractvaliditycheck.h
+include/qgis/qgsabstractvectorlayer3drenderer.h
include/qgis/qgsaction.h
include/qgis/qgsactionmanager.h
include/qgis/qgsactionmenu.h
@@ -59,6 +62,7 @@ include/qgis/qgsadvanceddigitizingdockwidget.h
include/qgis/qgsadvanceddigitizingfloater.h
include/qgis/qgsaggregatecalculator.h
include/qgis/qgsaggregatetoolbutton.h
+include/qgis/qgsalgorithmfiledownloader.h
include/qgis/qgsalgorithmimportphotos.h
include/qgis/qgsalignmentcombobox.h
include/qgis/qgsalignraster.h
@@ -118,8 +122,11 @@ include/qgis/qgsauthsslerrorsdialog.h
include/qgis/qgsauthsslimportdialog.h
include/qgis/qgsauthtrustedcasdialog.h
include/qgis/qgsauxiliarystorage.h
+include/qgis/qgsbasicnumericformat.h
+include/qgis/qgsbearingnumericformat.h
include/qgis/qgsbearingutils.h
include/qgis/qgsbilinearrasterresampler.h
+include/qgis/qgsbillboardgeometry.h
include/qgis/qgsbinarywidgetfactory.h
include/qgis/qgsbinarywidgetwrapper.h
include/qgis/qgsblendmodecombobox.h
@@ -156,10 +163,7 @@ include/qgis/qgscheckboxfieldformatter.h
include/qgis/qgscheckboxsearchwidgetwrapper.h
include/qgis/qgscheckboxwidgetfactory.h
include/qgis/qgscheckboxwidgetwrapper.h
-include/qgis/qgschunkedentity_p.h
-include/qgis/qgschunklist_p.h
include/qgis/qgschunkloader_p.h
-include/qgis/qgschunknode_p.h
include/qgis/qgschunkqueuejob_p.h
include/qgis/qgscircle.h
include/qgis/qgscircularstring.h
@@ -212,6 +216,7 @@ include/qgis/qgscontrastenhancement.h
include/qgis/qgscontrastenhancementfunction.h
include/qgis/qgscoordinateboundspreviewmapwidget.h
include/qgis/qgscoordinateformatter.h
+include/qgis/qgscoordinateoperationwidget.h
include/qgis/qgscoordinatereferencesystem.h
include/qgis/qgscoordinatetransform.h
include/qgis/qgscoordinatetransformcontext.h
@@ -221,6 +226,7 @@ include/qgis/qgscptcitycolorrampdialog.h
include/qgis/qgscredentialdialog.h
include/qgis/qgscredentials.h
include/qgis/qgscubicrasterresampler.h
+include/qgis/qgscurrencynumericformat.h
include/qgis/qgscurve.h
include/qgis/qgscurveeditorwidget.h
include/qgis/qgscurvepolygon.h
@@ -253,8 +259,6 @@ include/qgis/qgsdbfilterproxymodel.h
include/qgis/qgsdefaultsearchwidgetwrapper.h
include/qgis/qgsdefaultvalue.h
include/qgis/qgsdemterraingenerator.h
-include/qgis/qgsdemterraintilegeometry_p.h
-include/qgis/qgsdemterraintileloader_p.h
include/qgis/qgsderivativefilter.h
include/qgis/qgsdetaileditemdata.h
include/qgis/qgsdetaileditemdelegate.h
@@ -291,6 +295,7 @@ include/qgis/qgsenumerationwidgetfactory.h
include/qgis/qgsenumerationwidgetwrapper.h
include/qgis/qgserror.h
include/qgis/qgserrordialog.h
+include/qgis/qgseventtracing.h
include/qgis/qgsexception.h
include/qgis/qgsexiftools.h
include/qgis/qgsexpression.h
@@ -308,6 +313,7 @@ include/qgis/qgsexpressionlineedit.h
include/qgis/qgsexpressionnode.h
include/qgis/qgsexpressionnodeimpl.h
include/qgis/qgsexpressionselectiondialog.h
+include/qgis/qgsexpressionstoredialog.h
include/qgis/qgsextentgroupbox.h
include/qgis/qgsextentgroupboxplugin.h
include/qgis/qgsexternalresourceconfigdlg.h
@@ -316,10 +322,9 @@ include/qgis/qgsexternalresourcewidgetfactory.h
include/qgis/qgsexternalresourcewidgetplugin.h
include/qgis/qgsexternalresourcewidgetwrapper.h
include/qgis/qgsfallbackfieldformatter.h
+include/qgis/qgsfallbacknumericformat.h
include/qgis/qgsfeature.h
-include/qgis/qgsfeature3dhandler_p.h
include/qgis/qgsfeaturefiltermodel.h
-include/qgis/qgsfeaturefiltermodel_p.h
include/qgis/qgsfeaturefilterprovider.h
include/qgis/qgsfeatureid.h
include/qgis/qgsfeatureiterator.h
@@ -337,7 +342,6 @@ include/qgis/qgsfeaturesource.h
include/qgis/qgsfeaturestore.h
include/qgis/qgsfeedback.h
include/qgis/qgsfield.h
-include/qgis/qgsfield_p.h
include/qgis/qgsfieldcombobox.h
include/qgis/qgsfieldcomboboxplugin.h
include/qgis/qgsfieldconditionalformatwidget.h
@@ -361,6 +365,7 @@ include/qgis/qgsfillsymbollayer.h
include/qgis/qgsfilterlineedit.h
include/qgis/qgsfilterlineeditplugin.h
include/qgis/qgsfindfilesbypatternwidget.h
+include/qgis/qgsflatterraingenerator.h
include/qgis/qgsfloatingwidget.h
include/qgis/qgsfocuswatcher.h
include/qgis/qgsfontbutton.h
@@ -373,15 +378,18 @@ include/qgis/qgsgdalprovider.h
include/qgis/qgsgdalsourceselect.h
include/qgis/qgsgdalutils.h
include/qgis/qgsgenericfeatureselectionmanager.h
+include/qgis/qgsgenericspatialindex.h
include/qgis/qgsgeometry.h
include/qgis/qgsgeometryanglecheck.h
include/qgis/qgsgeometryareacheck.h
+include/qgis/qgsgeometrycheck.h
include/qgis/qgsgeometrycheckcontext.h
include/qgis/qgsgeometrychecker.h
include/qgis/qgsgeometrycheckerror.h
include/qgis/qgsgeometrycheckerutils.h
include/qgis/qgsgeometrycheckfactory.h
include/qgis/qgsgeometrycheckregistry.h
+include/qgis/qgsgeometrycheckresolutionmethod.h
include/qgis/qgsgeometrycollection.h
include/qgis/qgsgeometrycontainedcheck.h
include/qgis/qgsgeometrydanglecheck.h
@@ -392,11 +400,13 @@ include/qgis/qgsgeometryeditutils.h
include/qgis/qgsgeometryengine.h
include/qgis/qgsgeometryfactory.h
include/qgis/qgsgeometryfollowboundariescheck.h
+include/qgis/qgsgeometrygapcheck.h
include/qgis/qgsgeometrygeneratorsymbollayer.h
include/qgis/qgsgeometryholecheck.h
include/qgis/qgsgeometryisvalidcheck.h
include/qgis/qgsgeometrylineintersectioncheck.h
include/qgis/qgsgeometrylinelayerintersectioncheck.h
+include/qgis/qgsgeometrymissingvertexcheck.h
include/qgis/qgsgeometrymultipartcheck.h
include/qgis/qgsgeometryoptions.h
include/qgis/qgsgeometryoverlapcheck.h
@@ -422,6 +432,7 @@ include/qgis/qgsgeopackageprojectstoragedialog.h
include/qgis/qgsgeopackageprojectstorageguiprovider.h
include/qgis/qgsgeopackageproviderconnection.h
include/qgis/qgsgeopackagerasterwritertask.h
+include/qgis/qgsgeopdflayertreemodel.h
include/qgis/qgsgeos.h
include/qgis/qgsgloweffect.h
include/qgis/qgsgml.h
@@ -439,6 +450,7 @@ include/qgis/qgsgraph.h
include/qgis/qgsgraphanalyzer.h
include/qgis/qgsgraphbuilder.h
include/qgis/qgsgraphbuilderinterface.h
+include/qgis/qgsgraphdirector.h
include/qgis/qgsgridfilewriter.h
include/qgis/qgsgroupwmsdatadialog.h
include/qgis/qgsgui.h
@@ -449,6 +461,7 @@ include/qgis/qgshelp.h
include/qgis/qgshiddenwidgetfactory.h
include/qgis/qgshiddenwidgetwrapper.h
include/qgis/qgshighlight.h
+include/qgis/qgshighlightablecombobox.h
include/qgis/qgshillshadefilter.h
include/qgis/qgshillshaderenderer.h
include/qgis/qgshillshaderendererwidget.h
@@ -466,6 +479,7 @@ include/qgis/qgsifeatureselectionmanager.h
include/qgis/qgsimagecache.h
include/qgis/qgsimageoperation.h
include/qgis/qgsindexedfeature.h
+include/qgis/qgsinstallgridshiftdialog.h
include/qgis/qgsinternalgeometryengine.h
include/qgis/qgsinterpolator.h
include/qgis/qgsinterval.h
@@ -478,10 +492,15 @@ include/qgis/qgskeyvaluewidget.h
include/qgis/qgskeyvaluewidgetfactory.h
include/qgis/qgskeyvaluewidgetwrapper.h
include/qgis/qgslabelfeature.h
+include/qgis/qgslabeling.h
include/qgis/qgslabelingengine.h
include/qgis/qgslabelingenginesettings.h
include/qgis/qgslabelinggui.h
+include/qgis/qgslabelobstaclesettings.h
+include/qgis/qgslabelobstaclesettingswidget.h
include/qgis/qgslabelsearchtree.h
+include/qgis/qgslabelsettingswidgetbase.h
+include/qgis/qgslabelthinningsettings.h
include/qgis/qgslayerdefinition.h
include/qgis/qgslayermetadata.h
include/qgis/qgslayermetadataformatter.h
@@ -504,8 +523,12 @@ include/qgis/qgslayertreeviewdefaultactions.h
include/qgis/qgslayertreeviewindicator.h
include/qgis/qgslayertreeviewitemdelegate.h
include/qgis/qgslayout.h
+include/qgis/qgslayoutaddpagesdialog.h
include/qgis/qgslayoutaligner.h
include/qgis/qgslayoutatlas.h
+include/qgis/qgslayoutatlaswidget.h
+include/qgis/qgslayoutattributeselectiondialog.h
+include/qgis/qgslayoutattributetablewidget.h
include/qgis/qgslayoutcombobox.h
include/qgis/qgslayoutcustomdrophandler.h
include/qgis/qgslayoutdesignerinterface.h
@@ -515,6 +538,10 @@ include/qgis/qgslayoutframe.h
include/qgis/qgslayoutgeopdfexporter.h
include/qgis/qgslayoutgridsettings.h
include/qgis/qgslayoutguidecollection.h
+include/qgis/qgslayoutguidewidget.h
+include/qgis/qgslayoutguiutils.h
+include/qgis/qgslayouthtmlwidget.h
+include/qgis/qgslayoutimageexportoptionsdialog.h
include/qgis/qgslayoutitem.h
include/qgis/qgslayoutitem3dmap.h
include/qgis/qgslayoutitemattributetable.h
@@ -525,6 +552,7 @@ include/qgis/qgslayoutitemguiregistry.h
include/qgis/qgslayoutitemhtml.h
include/qgis/qgslayoutitemlabel.h
include/qgis/qgslayoutitemlegend.h
+include/qgis/qgslayoutitemmanualtable.h
include/qgis/qgslayoutitemmap.h
include/qgis/qgslayoutitemmapgrid.h
include/qgis/qgslayoutitemmapitem.h
@@ -537,10 +565,17 @@ include/qgis/qgslayoutitempolyline.h
include/qgis/qgslayoutitemregistry.h
include/qgis/qgslayoutitemscalebar.h
include/qgis/qgslayoutitemshape.h
+include/qgis/qgslayoutitemslistview.h
include/qgis/qgslayoutitemtexttable.h
include/qgis/qgslayoutitemundocommand.h
include/qgis/qgslayoutitemwidget.h
+include/qgis/qgslayoutlabelwidget.h
+include/qgis/qgslayoutlegendlayersdialog.h
+include/qgis/qgslayoutlegendwidget.h
include/qgis/qgslayoutmanager.h
+include/qgis/qgslayoutmanualtablewidget.h
+include/qgis/qgslayoutmapgridwidget.h
+include/qgis/qgslayoutmapwidget.h
include/qgis/qgslayoutmeasurement.h
include/qgis/qgslayoutmeasurementconverter.h
include/qgis/qgslayoutmodel.h
@@ -550,15 +585,25 @@ include/qgis/qgslayoutmultiframeundocommand.h
include/qgis/qgslayoutnewitempropertiesdialog.h
include/qgis/qgslayoutobject.h
include/qgis/qgslayoutpagecollection.h
+include/qgis/qgslayoutpagepropertieswidget.h
+include/qgis/qgslayoutpdfexportoptionsdialog.h
+include/qgis/qgslayoutpicturewidget.h
include/qgis/qgslayoutpoint.h
+include/qgis/qgslayoutpolygonwidget.h
+include/qgis/qgslayoutpolylinewidget.h
+include/qgis/qgslayoutpropertieswidget.h
+include/qgis/qgslayoutqptdrophandler.h
include/qgis/qgslayoutrendercontext.h
include/qgis/qgslayoutreportcontext.h
include/qgis/qgslayoutreportsectionlabel.h
include/qgis/qgslayoutruler.h
+include/qgis/qgslayoutscalebarwidget.h
include/qgis/qgslayoutserializableobject.h
+include/qgis/qgslayoutshapewidget.h
include/qgis/qgslayoutsize.h
include/qgis/qgslayoutsnapper.h
include/qgis/qgslayouttable.h
+include/qgis/qgslayouttablebackgroundcolorsdialog.h
include/qgis/qgslayouttablecolumn.h
include/qgis/qgslayoutundocommand.h
include/qgis/qgslayoutundostack.h
@@ -585,19 +630,17 @@ include/qgis/qgslegendstyle.h
include/qgis/qgslegendsymbolitem.h
include/qgis/qgslimitedrandomcolorrampdialog.h
include/qgis/qgsline3dsymbol.h
-include/qgis/qgsline3dsymbol_p.h
include/qgis/qgslinearminmaxenhancement.h
include/qgis/qgslinearminmaxenhancementwithclip.h
-include/qgis/qgslinematerial_p.h
include/qgis/qgslinesegment.h
include/qgis/qgslinestring.h
include/qgis/qgslinesymbollayer.h
-include/qgis/qgslinevertexdata_p.h
include/qgis/qgslinuxnative.h
include/qgis/qgslistfieldformatter.h
include/qgis/qgslistwidget.h
include/qgis/qgslistwidgetfactory.h
include/qgis/qgslistwidgetwrapper.h
+include/qgis/qgslocaldefaultsettings.h
include/qgis/qgslocalec.h
include/qgis/qgslocator.h
include/qgis/qgslocatorcontext.h
@@ -631,6 +674,7 @@ include/qgis/qgsmaplayerref.h
include/qgis/qgsmaplayerrenderer.h
include/qgis/qgsmaplayerstore.h
include/qgis/qgsmaplayerstyle.h
+include/qgis/qgsmaplayerstyleguiutils.h
include/qgis/qgsmaplayerstylemanager.h
include/qgis/qgsmaplayerstylemanagerwidget.h
include/qgis/qgsmapmouseevent.h
@@ -662,16 +706,19 @@ include/qgis/qgsmaptopixelgeometrysimplifier.h
include/qgis/qgsmapunitscale.h
include/qgis/qgsmargins.h
include/qgis/qgsmarkersymbollayer.h
+include/qgis/qgsmaskidprovider.h
+include/qgis/qgsmasksymbollayerwidget.h
include/qgis/qgsmasterlayoutinterface.h
include/qgis/qgsmemoryfeatureiterator.h
include/qgis/qgsmemoryprovider.h
include/qgis/qgsmemoryproviderutils.h
include/qgis/qgsmenuheader.h
+include/qgis/qgsmesh3daveraging.h
include/qgis/qgsmesh3dsymbol.h
-include/qgis/qgsmesh3dsymbol_p.h
include/qgis/qgsmeshcalcnode.h
include/qgis/qgsmeshcalculator.h
include/qgis/qgsmeshcalcutils.h
+include/qgis/qgsmeshcontours.h
include/qgis/qgsmeshdataprovider.h
include/qgis/qgsmeshlayer.h
include/qgis/qgsmeshlayer3drenderer.h
@@ -681,7 +728,9 @@ include/qgis/qgsmeshlayerutils.h
include/qgis/qgsmeshmemorydataprovider.h
include/qgis/qgsmeshrenderersettings.h
include/qgis/qgsmeshspatialindex.h
+include/qgis/qgsmeshterraingenerator.h
include/qgis/qgsmeshtimesettings.h
+include/qgis/qgsmeshtracerenderer.h
include/qgis/qgsmeshvectorrenderer.h
include/qgis/qgsmessagebar.h
include/qgis/qgsmessagebaritem.h
@@ -701,6 +750,7 @@ include/qgis/qgsmultipolygon.h
include/qgis/qgsmultirenderchecker.h
include/qgis/qgsmultisurface.h
include/qgis/qgsnative.h
+include/qgis/qgsnativealgorithms.h
include/qgis/qgsnetworkaccessmanager.h
include/qgis/qgsnetworkcontentfetcher.h
include/qgis/qgsnetworkcontentfetcherregistry.h
@@ -725,6 +775,11 @@ include/qgis/qgsninecellfilter.h
include/qgis/qgsnmeaconnection.h
include/qgis/qgsnullsymbolrenderer.h
include/qgis/qgsnullsymbolrendererwidget.h
+include/qgis/qgsnumericformat.h
+include/qgis/qgsnumericformatguiregistry.h
+include/qgis/qgsnumericformatregistry.h
+include/qgis/qgsnumericformatselectorwidget.h
+include/qgis/qgsnumericformatwidget.h
include/qgis/qgsnumericscalebarrenderer.h
include/qgis/qgsobjectcustomproperties.h
include/qgis/qgsofflineediting.h
@@ -771,6 +826,7 @@ include/qgis/qgspasswordlineedit.h
include/qgis/qgspasswordlineeditplugin.h
include/qgis/qgspathresolver.h
include/qgis/qgspenstylecombobox.h
+include/qgis/qgspercentagenumericformat.h
include/qgis/qgsphongmaterialsettings.h
include/qgis/qgspiediagram.h
include/qgis/qgspixmaplabel.h
@@ -778,8 +834,8 @@ include/qgis/qgspluginlayer.h
include/qgis/qgspluginlayerregistry.h
include/qgis/qgspluginmanagerinterface.h
include/qgis/qgspoint.h
+include/qgis/qgspoint3dbillboardmaterial.h
include/qgis/qgspoint3dsymbol.h
-include/qgis/qgspoint3dsymbol_p.h
include/qgis/qgspointclusterrenderer.h
include/qgis/qgspointclusterrendererwidget.h
include/qgis/qgspointdisplacementrenderer.h
@@ -787,10 +843,10 @@ include/qgis/qgspointdisplacementrendererwidget.h
include/qgis/qgspointdistancerenderer.h
include/qgis/qgspointlightsettings.h
include/qgis/qgspointlocator.h
+include/qgis/qgspointlocatorinittask.h
include/qgis/qgspointxy.h
include/qgis/qgspolygon.h
include/qgis/qgspolygon3dsymbol.h
-include/qgis/qgspolygon3dsymbol_p.h
include/qgis/qgspostgresstringutils.h
include/qgis/qgspresetcolorrampdialog.h
include/qgis/qgsprevieweffect.h
@@ -830,6 +886,7 @@ include/qgis/qgsprocessingwidgetwrapper.h
include/qgis/qgsprocessingwidgetwrapperimpl.h
include/qgis/qgsproject.h
include/qgis/qgsprojectbadlayerhandler.h
+include/qgis/qgsprojectdisplaysettings.h
include/qgis/qgsprojectfiletransform.h
include/qgis/qgsprojectionselectiondialog.h
include/qgis/qgsprojectionselectiontreewidget.h
@@ -847,7 +904,6 @@ include/qgis/qgsprojectversion.h
include/qgis/qgsprojectviewsettings.h
include/qgis/qgsprojutils.h
include/qgis/qgsproperty.h
-include/qgis/qgsproperty_p.h
include/qgis/qgspropertyassistantwidget.h
include/qgis/qgspropertycollection.h
include/qgis/qgspropertyoverridebutton.h
@@ -888,6 +944,7 @@ include/qgis/qgsrasteridentifyresult.h
include/qgis/qgsrasterinterface.h
include/qgis/qgsrasteriterator.h
include/qgis/qgsrasterlayer.h
+include/qgis/qgsrasterlayerproperties.h
include/qgis/qgsrasterlayerrenderer.h
include/qgis/qgsrasterlayersaveasdialog.h
include/qgis/qgsrastermatrix.h
@@ -900,6 +957,7 @@ include/qgis/qgsrasterpyramid.h
include/qgis/qgsrasterpyramidsoptionswidget.h
include/qgis/qgsrasterrange.h
include/qgis/qgsrasterrenderer.h
+include/qgis/qgsrasterrendererregistry.h
include/qgis/qgsrasterrendererwidget.h
include/qgis/qgsrasterresamplefilter.h
include/qgis/qgsrasterresampler.h
@@ -909,7 +967,6 @@ include/qgis/qgsrastertransparency.h
include/qgis/qgsrastertransparencywidget.h
include/qgis/qgsrasterviewport.h
include/qgis/qgsratiolockbutton.h
-include/qgis/qgsraycastingutils_p.h
include/qgis/qgsreadwritecontext.h
include/qgis/qgsreadwritelocker.h
include/qgis/qgsreclassifyutils.h
@@ -918,6 +975,7 @@ include/qgis/qgsreferencedgeometry.h
include/qgis/qgsregularpolygon.h
include/qgis/qgsrelation.h
include/qgis/qgsrelationaggregatesearchwidgetwrapper.h
+include/qgis/qgsrelationcontext.h
include/qgis/qgsrelationeditorwidget.h
include/qgis/qgsrelationeditorwidgetplugin.h
include/qgis/qgsrelationmanager.h
@@ -960,6 +1018,7 @@ include/qgis/qgsscaleutils.h
include/qgis/qgsscalevisibilitydialog.h
include/qgis/qgsscalewidget.h
include/qgis/qgsscalewidgetplugin.h
+include/qgis/qgsscientificnumericformat.h
include/qgis/qgsscrollarea.h
include/qgis/qgssearchquerybuilder.h
include/qgis/qgssearchwidgettoolbutton.h
@@ -988,8 +1047,8 @@ include/qgis/qgssourceselectprovider.h
include/qgis/qgssourceselectproviderregistry.h
include/qgis/qgsspatialindex.h
include/qgis/qgsspatialindexkdbush.h
-include/qgis/qgsspatialindexkdbush_p.h
include/qgis/qgsspatialindexkdbushdata.h
+include/qgis/qgsspatialindexutils.h
include/qgis/qgsspatialiteutils.h
include/qgis/qgsspinbox.h
include/qgis/qgsspinboxplugin.h
@@ -997,6 +1056,7 @@ include/qgis/qgssqlcomposerdialog.h
include/qgis/qgssqlexpressioncompiler.h
include/qgis/qgssqliteutils.h
include/qgis/qgssqlstatement.h
+include/qgis/qgsstackedbardiagram.h
include/qgis/qgsstatisticalsummary.h
include/qgis/qgsstatusbar.h
include/qgis/qgsstoredexpressionmanager.h
@@ -1020,6 +1080,7 @@ include/qgis/qgssymbol.h
include/qgis/qgssymbolbutton.h
include/qgis/qgssymbolbuttonplugin.h
include/qgis/qgssymbollayer.h
+include/qgis/qgssymbollayerreference.h
include/qgis/qgssymbollayerregistry.h
include/qgis/qgssymbollayerutils.h
include/qgis/qgssymbollayerwidget.h
@@ -1027,17 +1088,18 @@ include/qgis/qgssymbollevelsdialog.h
include/qgis/qgssymbolselectordialog.h
include/qgis/qgssymbolslistwidget.h
include/qgis/qgssymbolwidgetcontext.h
+include/qgis/qgstablecell.h
+include/qgis/qgstableeditordialog.h
+include/qgis/qgstableeditorformattingwidget.h
+include/qgis/qgstableeditorwidget.h
include/qgis/qgstablewidgetbase.h
include/qgis/qgstablewidgetitem.h
include/qgis/qgstabwidget.h
include/qgis/qgstaskmanager.h
include/qgis/qgstaskmanagerwidget.h
include/qgis/qgsterraindownloader.h
-include/qgis/qgsterrainentity_p.h
include/qgis/qgsterraingenerator.h
-include/qgis/qgsterraintexturegenerator_p.h
-include/qgis/qgsterraintextureimage_p.h
-include/qgis/qgsterraintileentity_p.h
+include/qgis/qgsterraintileloader_p.h
include/qgis/qgstessellatedpolygongeometry.h
include/qgis/qgstessellator.h
include/qgis/qgstest.h
@@ -1052,7 +1114,6 @@ include/qgis/qgstextformatwidget.h
include/qgis/qgstextlabelfeature.h
include/qgis/qgstextpreview.h
include/qgis/qgstextrenderer.h
-include/qgis/qgstextrenderer_p.h
include/qgis/qgsthreadingutils.h
include/qgis/qgsticksscalebarrenderer.h
include/qgis/qgstilecache.h
@@ -1111,10 +1172,12 @@ include/qgis/qgsvectorlayereditutils.h
include/qgis/qgsvectorlayerexporter.h
include/qgis/qgsvectorlayerfeaturecounter.h
include/qgis/qgsvectorlayerfeatureiterator.h
+include/qgis/qgsvectorlayerfeaturepool.h
include/qgis/qgsvectorlayerjoinbuffer.h
include/qgis/qgsvectorlayerjoininfo.h
include/qgis/qgsvectorlayerlabeling.h
include/qgis/qgsvectorlayerlabelprovider.h
+include/qgis/qgsvectorlayerref.h
include/qgis/qgsvectorlayerrenderer.h
include/qgis/qgsvectorlayersaveasdialog.h
include/qgis/qgsvectorlayerselectionmanager.h
@@ -1129,9 +1192,9 @@ include/qgis/qgsvirtuallayerdefinition.h
include/qgis/qgsvirtuallayerdefinitionutils.h
include/qgis/qgsvirtuallayertask.h
include/qgis/qgsvscrollarea.h
+include/qgis/qgsweakrelation.h
include/qgis/qgswebpage.h
include/qgis/qgswebview.h
-include/qgis/qgswidgetstatehelper_p.h
include/qgis/qgswidgetwrapper.h
include/qgis/qgswindow3dengine.h
include/qgis/qgswindowmanagerinterface.h
@@ -1141,6 +1204,8 @@ include/qgis/qgsxmlutils.h
include/qgis/qgsziputils.h
include/qgis/qgszonalstatistics.h
include/qgis/qobjectuniqueptr.h
+include/qgis/ui_qgsadvanceddigitizingdockwidgetbase.h
+include/qgis/ui_qgsadvanceddigitizingfloaterbase.h
include/qgis/ui_qgsarcgisservicesourceselectbase.h
include/qgis/ui_qgsauthauthoritieseditor.h
include/qgis/ui_qgsauthcertificateinfo.h
@@ -1164,15 +1229,28 @@ include/qgis/ui_qgsauthsslimporterrors.h
include/qgis/ui_qgsauthtrustedcasdialog.h
include/qgis/ui_qgscredentialdialog.h
include/qgis/ui_qgsdetaileditemwidgetbase.h
+include/qgis/ui_qgseffectstackpropertieswidgetbase.h
include/qgis/ui_qgsexpressionbuilder.h
include/qgis/ui_qgsexpressionbuilderdialogbase.h
include/qgis/ui_qgsexpressionselectiondialogbase.h
+include/qgis/ui_qgsexpressionstoredialogbase.h
+include/qgis/ui_qgsfeaturefilterwidget.h
include/qgis/ui_qgsgenericprojectionselectorbase.h
+include/qgis/ui_qgslayoutguidewidgetbase.h
+include/qgis/ui_qgslayoutimageexportoptions.h
+include/qgis/ui_qgslayoutitemwidgetbase.h
+include/qgis/ui_qgslayoutnewpagedialog.h
+include/qgis/ui_qgslayoutpagepropertieswidget.h
+include/qgis/ui_qgslayoutwidgetbase.h
include/qgis/ui_qgsmessagelogviewer.h
include/qgis/ui_qgsmessageviewer.h
include/qgis/ui_qgsowssourceselectbase.h
+include/qgis/ui_qgspdfexportoptions.h
include/qgis/ui_qgsprojectionselectorbase.h
include/qgis/ui_qgsquerybuilderbase.h
+include/qgis/ui_qgsrasterlayerpropertiesbase.h
+include/qgis/ui_qgsrenderercontainerbase.h
+include/qgis/ui_qgsrendererpropsdialogbase.h
include/qgis/ui_qgssqlcomposerdialogbase.h
include/qgis/ui_qgssublayersdialogbase.h
include/qgis/ui_qgstablewidgetuibase.h
@@ -1226,6 +1304,7 @@ lib/qgis/plugins/libowsprovider.so
lib/qgis/plugins/libpkcs12authmethod.so
lib/qgis/plugins/libpkipathsauthmethod.so
lib/qgis/plugins/libpostgresprovider.so
+lib/qgis/plugins/libpostgresrasterprovider.so
lib/qgis/plugins/libspatialiteprovider.so
lib/qgis/plugins/libtopolplugin.so
lib/qgis/plugins/libvirtuallayerprovider.so
@@ -1235,12 +1314,12 @@ lib/qgis/plugins/libwmsprovider.so
%%SERVER%%lib/qgis/server/libdummy.so
%%SERVER%%lib/qgis/server/libwcs.so
%%SERVER%%lib/qgis/server/libwfs.so
-lib/qgis/server/libwfs3.so
+%%SERVER%%lib/qgis/server/libwfs3.so
%%SERVER%%lib/qgis/server/libwms.so
%%SERVER%%lib/qgis/server/libwmts.so
%%QT_PLUGINDIR%%/designer/libqgis_customwidgets.so
%%QT_PLUGINDIR%%/designer/libqgis_customwidgets.so.%%DISTVERSION%%
-%%QT_PLUGINDIR%%/sqldrivers/libqsqlspatialite.so
+%%SERVER%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlspatialite.so
man/man1/qgis.1.gz
share/applications/org.qgis.qgis.desktop
share/icons/hicolor/128x128/apps/qgis.png
@@ -1353,6 +1432,8 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/doc/INSTALL
%%DATADIR%%/doc/INSTALL.html
%%DATADIR%%/doc/LICENSE
+%%DATADIR%%/doc/NEWS
+%%DATADIR%%/doc/NEWS.html
%%DATADIR%%/doc/SPONSORS
%%DATADIR%%/doc/TRANSLATORS
%%DATADIR%%/doc/developersmap.html
@@ -1394,8 +1475,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/doc/images/projects/thumbnails/f6379f3083e612fd47917e1f948d795b6951dde9.png.200x100_q85.png
%%DATADIR%%/doc/images/qgis-icon-60x60.png
%%DATADIR%%/doc/index.html
-%%DATADIR%%/doc/news
-%%DATADIR%%/doc/news.html
%%DATADIR%%/doc/nohelp.html
%%DATADIR%%/doc/style.css
%%GRASS%%%%DATADIR%%/grass/locations.gml
@@ -2478,34 +2557,43 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/i18n/qgis_et.qm
%%DATADIR%%/i18n/qgis_eu.qm
%%DATADIR%%/i18n/qgis_fi.qm
+%%DATADIR%%/i18n/qgis_fr.qm
%%DATADIR%%/i18n/qgis_gl.qm
-%%DATADIR%%/i18n/qgis_hi.qm
%%DATADIR%%/i18n/qgis_hu.qm
-%%DATADIR%%/i18n/qgis_id.qm
%%DATADIR%%/i18n/qgis_is.qm
%%DATADIR%%/i18n/qgis_it.qm
%%DATADIR%%/i18n/qgis_ja.qm
%%DATADIR%%/i18n/qgis_ko.qm
%%DATADIR%%/i18n/qgis_ky.qm
%%DATADIR%%/i18n/qgis_lt.qm
-%%DATADIR%%/i18n/qgis_lv.qm
%%DATADIR%%/i18n/qgis_nb.qm
%%DATADIR%%/i18n/qgis_nl.qm
%%DATADIR%%/i18n/qgis_pl.qm
%%DATADIR%%/i18n/qgis_pt_BR.qm
+%%DATADIR%%/i18n/qgis_pt_PT.qm
%%DATADIR%%/i18n/qgis_ro.qm
%%DATADIR%%/i18n/qgis_ru.qm
%%DATADIR%%/i18n/qgis_sl.qm
+%%DATADIR%%/i18n/qgis_sv.qm
%%DATADIR%%/i18n/qgis_tr.qm
%%DATADIR%%/i18n/qgis_uk.qm
%%DATADIR%%/i18n/qgis_vi.qm
%%DATADIR%%/i18n/qgis_zh-Hans.qm
+%%DATADIR%%/i18n/qgis_zh-Hant.qm
%%DATADIR%%/images/icons/qbrowser-icon.png
%%DATADIR%%/images/icons/qgis-icon-16x16.png
%%DATADIR%%/images/icons/qgis-icon-512x512.png
%%DATADIR%%/images/icons/qgis-icon-60x60.png
%%DATADIR%%/images/icons/qgis-icon-macos.png
%%DATADIR%%/images/icons/qgis-mime-icon.png
+%%DATADIR%%/images/icons/sponsor_medals/2010/bronze_medal_2010.png
+%%DATADIR%%/images/icons/sponsor_medals/2010/gold_medal_2010.png
+%%DATADIR%%/images/icons/sponsor_medals/2010/platin_medal_2010.png
+%%DATADIR%%/images/icons/sponsor_medals/2010/silver_medal_2010.png
+%%DATADIR%%/images/icons/sponsor_medals/2011/bronze_medal_2011.png
+%%DATADIR%%/images/icons/sponsor_medals/2011/gold_medal_2011.png
+%%DATADIR%%/images/icons/sponsor_medals/2011/platin_medal_2011.png
+%%DATADIR%%/images/icons/sponsor_medals/2011/silver_medal_2011.png
%%DATADIR%%/python/console/__init__.py
%%DATADIR%%/python/console/console.py
%%DATADIR%%/python/console/console_compile_apis.py
@@ -2650,6 +2738,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/gdal/ClipVectorByExtent.py
%%DATADIR%%/python/plugins/processing/algs/gdal/ClipVectorByMask.py
%%DATADIR%%/python/plugins/processing/algs/gdal/ColorRelief.py
+%%DATADIR%%/python/plugins/processing/algs/gdal/Datasources2Vrt.py
%%DATADIR%%/python/plugins/processing/algs/gdal/Dissolve.py
%%DATADIR%%/python/plugins/processing/algs/gdal/ExecuteSql.py
%%DATADIR%%/python/plugins/processing/algs/gdal/GdalAlgorithm.py
@@ -2703,6 +2792,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/gdal/tri.py
%%DATADIR%%/python/plugins/processing/algs/gdal/ui/RasterOptionsWidget.py
%%DATADIR%%/python/plugins/processing/algs/gdal/ui/__init__.py
+%%DATADIR%%/python/plugins/processing/algs/gdal/viewshed.py
%%DATADIR%%/python/plugins/processing/algs/gdal/warp.py
%%DATADIR%%/python/plugins/processing/algs/grass7/Grass7Algorithm.py
%%DATADIR%%/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py
@@ -3118,9 +3208,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/otb/OtbChoiceWidget.py
%%DATADIR%%/python/plugins/processing/algs/otb/OtbUtils.py
%%DATADIR%%/python/plugins/processing/algs/otb/__init__.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/AddTableField.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Aggregate.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Aspect.py
%%DATADIR%%/python/plugins/processing/algs/qgis/BarPlot.py
%%DATADIR%%/python/plugins/processing/algs/qgis/BasicStatistics.py
%%DATADIR%%/python/plugins/processing/algs/qgis/BoxPlot.py
@@ -3128,28 +3216,18 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/qgis/CheckValidity.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Climb.py
%%DATADIR%%/python/plugins/processing/algs/qgis/ConcaveHull.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/CreateAttributeIndex.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/CreateConstantRaster.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Datasources2Vrt.py
%%DATADIR%%/python/plugins/processing/algs/qgis/DefineProjection.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Delaunay.py
%%DATADIR%%/python/plugins/processing/algs/qgis/DeleteColumn.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/DeleteDuplicateGeometries.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/DensifyGeometries.py
%%DATADIR%%/python/plugins/processing/algs/qgis/EliminateSelection.py
%%DATADIR%%/python/plugins/processing/algs/qgis/ExecuteSQL.py
%%DATADIR%%/python/plugins/processing/algs/qgis/ExportGeometryInfo.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/ExtentFromLayer.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/ExtractSpecificVertices.py
%%DATADIR%%/python/plugins/processing/algs/qgis/FieldPyculator.py
%%DATADIR%%/python/plugins/processing/algs/qgis/FieldsCalculator.py
%%DATADIR%%/python/plugins/processing/algs/qgis/FieldsMapper.py
%%DATADIR%%/python/plugins/processing/algs/qgis/FindProjection.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/GeometryByExpression.py
%%DATADIR%%/python/plugins/processing/algs/qgis/GeometryConvert.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Grid.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Heatmap.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Hillshade.py
%%DATADIR%%/python/plugins/processing/algs/qgis/HubDistanceLines.py
%%DATADIR%%/python/plugins/processing/algs/qgis/HubDistancePoints.py
%%DATADIR%%/python/plugins/processing/algs/qgis/HypsometricCurves.py
@@ -3161,62 +3239,40 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/qgis/LinesToPolygons.py
%%DATADIR%%/python/plugins/processing/algs/qgis/MeanAndStdDevPlot.py
%%DATADIR%%/python/plugins/processing/algs/qgis/MinimumBoundingGeometry.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/NearestNeighbourAnalysis.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Orthogonalize.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PointDistance.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsDisplacement.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsFromLines.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/PointsFromPolygons.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/PointsInPolygon.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/PointsLayerFromTable.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PointsToPaths.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PolarPlot.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/PoleOfInaccessibility.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Polygonize.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PostGISExecuteAndLoadSQL.py
%%DATADIR%%/python/plugins/processing/algs/qgis/PostGISExecuteSQL.py
%%DATADIR%%/python/plugins/processing/algs/qgis/QgisAlgorithm.py
%%DATADIR%%/python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/RandomExtract.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomExtractWithinSubsets.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomPointsAlongLines.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/RandomPointsExtent.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomPointsLayer.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomPointsPolygons.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomSelection.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RandomSelectionWithinSubsets.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RasterCalculator.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RasterLayerHistogram.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/RasterLayerStatistics.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RasterSampling.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Rasterize.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/RectanglesOvalsDiamondsFixed.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RectanglesOvalsDiamondsVariable.py
%%DATADIR%%/python/plugins/processing/algs/qgis/RegularPoints.py
%%DATADIR%%/python/plugins/processing/algs/qgis/Relief.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Ruggedness.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SelectByAttribute.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SelectByExpression.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/ServiceAreaFromLayer.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/ServiceAreaFromPoint.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SetMValue.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SetRasterStyle.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SetVectorStyle.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SetZValue.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SingleSidedBuffer.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/Slope.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SnapGeometries.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SpatialIndex.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SpatialJoin.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SpatialJoinSummary.py
%%DATADIR%%/python/plugins/processing/algs/qgis/SpatialiteExecuteSQL.py
%%DATADIR%%/python/plugins/processing/algs/qgis/StatisticsByCategories.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/SumLines.py
%%DATADIR%%/python/plugins/processing/algs/qgis/TextToFloat.py
%%DATADIR%%/python/plugins/processing/algs/qgis/TilesXYZ.py
%%DATADIR%%/python/plugins/processing/algs/qgis/TinInterpolation.py
%%DATADIR%%/python/plugins/processing/algs/qgis/TopoColors.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/TruncateTable.py
%%DATADIR%%/python/plugins/processing/algs/qgis/UniqueValues.py
%%DATADIR%%/python/plugins/processing/algs/qgis/VariableDistanceBuffer.py
%%DATADIR%%/python/plugins/processing/algs/qgis/VectorLayerHistogram.py
@@ -3224,7 +3280,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/qgis/VectorLayerScatterplot3D.py
%%DATADIR%%/python/plugins/processing/algs/qgis/VectorSplit.py
%%DATADIR%%/python/plugins/processing/algs/qgis/VoronoiPolygons.py
-%%DATADIR%%/python/plugins/processing/algs/qgis/ZonalStatistics.py
%%DATADIR%%/python/plugins/processing/algs/qgis/__init__.py
%%DATADIR%%/python/plugins/processing/algs/qgis/ui/AddNewExpressionDialog.ui
%%DATADIR%%/python/plugins/processing/algs/qgis/ui/AggregatesPanel.py
@@ -3454,7 +3509,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/saga/description/MetricConversions.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/MinimumDistanceAnalysis.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/MirrorGrid.txt
-%%DATADIR%%/python/plugins/processing/algs/saga/description/ModifedQuadraticShepard.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/ModifiedQuadraticShepard.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/MonthlyGlobalbyLatitude.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/MorphologicalFilter(OpenCV).txt
@@ -3516,6 +3570,9 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/algs/saga/description/RankFilter.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/RealSurfaceArea.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/ReclassifyGridValues.txt
+%%DATADIR%%/python/plugins/processing/algs/saga/description/ReclassifyGridValuesRange.txt
+%%DATADIR%%/python/plugins/processing/algs/saga/description/ReclassifyGridValuesSingle.txt
+%%DATADIR%%/python/plugins/processing/algs/saga/description/ReclassifyGridValuesTable.txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/RegressionAnalysis(PointsGrid).txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/RegressionAnalysis(PointsandPredictorGrid).txt
%%DATADIR%%/python/plugins/processing/algs/saga/description/RegressionKriging.txt
@@ -3679,7 +3736,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/gui/matrixmodelerwidget.py
%%DATADIR%%/python/plugins/processing/gui/menus.py
%%DATADIR%%/python/plugins/processing/gui/wrappers.py
-%%DATADIR%%/python/plugins/processing/gui/wrappers_map_theme.py
%%DATADIR%%/python/plugins/processing/gui/wrappers_postgis.py
%%DATADIR%%/python/plugins/processing/images/delete.svg
%%DATADIR%%/python/plugins/processing/images/dem.png
@@ -3765,7 +3821,7 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/plugins/processing/tests/OtbAlgorithmsTest.py
%%DATADIR%%/python/plugins/processing/tests/ProcessingGeneralTest.py
%%DATADIR%%/python/plugins/processing/tests/ProjectProvider.py
-%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest.py
+%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest1.py
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest2.py
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest3.py
%%DATADIR%%/python/plugins/processing/tests/QgisAlgorithmsTest4.py
@@ -3855,7 +3911,6 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/python/qgis/core/additions/__init__.py
%%DATADIR%%/python/qgis/core/additions/edit.py
%%DATADIR%%/python/qgis/core/additions/fromfunction.py
-%%DATADIR%%/python/qgis/core/additions/markerlinesymbollayer.py
%%DATADIR%%/python/qgis/core/additions/metaenum.py
%%DATADIR%%/python/qgis/core/additions/processing.py
%%DATADIR%%/python/qgis/core/additions/projectdirtyblocker.py
@@ -5101,21 +5156,21 @@ share/metainfo/org.qgis.qgis.appdata.xml
%%DATADIR%%/resources/palettes/new_layer_colors.gpl
%%DATADIR%%/resources/qgis.db
%%DATADIR%%/resources/qgis_global_settings.ini
-%%DATADIR%%/resources/server/api/ogc/schema.json
-%%DATADIR%%/resources/server/api/ogc/static/jsonFormatter.min.css
-%%DATADIR%%/resources/server/api/ogc/static/jsonFormatter.min.js
-%%DATADIR%%/resources/server/api/ogc/static/style.css
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/describeCollection.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/describeCollections.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/footer.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getApiDescription.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getFeature.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getFeatures.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getLandingPage.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getRequirementClasses.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/header.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/leaflet_map.html
-%%DATADIR%%/resources/server/api/ogc/templates/wfs3/links.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/schema.json
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/static/jsonFormatter.min.css
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/static/jsonFormatter.min.js
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/static/style.css
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/describeCollection.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/describeCollections.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/footer.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getApiDescription.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getFeature.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getFeatures.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getLandingPage.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/getRequirementClasses.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/header.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/leaflet_map.html
+%%SERVER%%%%DATADIR%%/resources/server/api/ogc/templates/wfs3/links.html
%%SERVER%%%%DATADIR%%/resources/server/schemaExtension.xsd
%%DATADIR%%/resources/spatialite.db
%%DATADIR%%/resources/srs.db