mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-08 00:02:35 -05:00
Previously this was only enabled for optional arguments (i.e. those with default values). Enabling them for all arguments allows for more readable PyQGIS code, and there seems no downside given that we already have this support partly enabled. The consequence of this change is that when 3.0 API is frozen the freeze must also include the naming of function arguments, since that's effectively now part of public API.
40 lines
945 B
Plaintext
40 lines
945 B
Plaintext
%Module(name=qgis._server,
|
|
keyword_arguments="All")
|
|
|
|
|
|
%Import QtCore/QtCoremod.sip
|
|
%Import QtGui/QtGuimod.sip
|
|
%Import QtXml/QtXmlmod.sip
|
|
|
|
%Import core/core.sip
|
|
|
|
%Feature HAVE_SERVER_PYTHON_PLUGINS
|
|
|
|
%If (HAVE_SERVER_PYTHON_PLUGINS)
|
|
%Include qgsserverfilter.sip
|
|
%Include qgsserverinterface.sip
|
|
%Include qgsaccesscontrolfilter.sip
|
|
%Include qgsaccesscontrol.sip
|
|
%End
|
|
|
|
%Include qgsmapserviceexception.sip
|
|
%Include qgscapabilitiescache.sip
|
|
%Include qgsrequesthandler.sip
|
|
%Include qgsserverprojectparser.sip
|
|
%Include qgswmsconfigparser.sip
|
|
%Include qgswmsprojectparser.sip
|
|
%Include qgsconfigcache.sip
|
|
%Include qgsserversettings.sip
|
|
%Include qgsserverprojectutils.sip
|
|
%Include qgsserver.sip
|
|
|
|
%Include qgsserverrequest.sip
|
|
%Include qgsserverresponse.sip
|
|
%Include qgsbufferserverresponse.sip
|
|
%Include qgsbufferserverrequest.sip
|
|
%Include qgsserverexception.sip
|
|
%Include qgsservice.sip
|
|
%Include qgsservicemodule.sip
|
|
%Include qgsserviceregistry.sip
|
|
|