Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Server] fix wmsInspireActivated to wmsInspireActivate
  • Loading branch information
rldhont committed May 25, 2017
1 parent 13a3f2f commit 95a5cce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion python/server/qgsserverprojectutils.sip
Expand Up @@ -127,7 +127,7 @@ namespace QgsServerProjectUtils
* \param project the QGIS project
* \returns if Inspire is activated.
*/
bool wmsInspireActivated( const QgsProject &project );
bool wmsInspireActivate( const QgsProject &project );

/** Returns the Inspire language.
* \param project the QGIS project
Expand Down
2 changes: 1 addition & 1 deletion src/server/qgsserverprojectutils.cpp
Expand Up @@ -104,7 +104,7 @@ bool QgsServerProjectUtils::wmsInfoFormatSia2045( const QgsProject &project )
return false;
}

bool QgsServerProjectUtils::wmsInspireActivated( const QgsProject &project )
bool QgsServerProjectUtils::wmsInspireActivate( const QgsProject &project )
{
return project.readBoolEntry( QStringLiteral( "WMSInspire" ), QStringLiteral( "/activated" ) );
}
Expand Down
2 changes: 1 addition & 1 deletion src/server/qgsserverprojectutils.h
Expand Up @@ -129,7 +129,7 @@ namespace QgsServerProjectUtils
* \param project the QGIS project
* \returns if Inspire is activated.
*/
SERVER_EXPORT bool wmsInspireActivated( const QgsProject &project );
SERVER_EXPORT bool wmsInspireActivate( const QgsProject &project );

/** Returns the Inspire language.
* \param project the QGIS project
Expand Down
10 changes: 5 additions & 5 deletions src/server/services/wms/qgswmsgetcapabilities.cpp
Expand Up @@ -34,10 +34,10 @@
#include "qgslayertreelayer.h"
#include "qgslayertreemodel.h"
#include "qgslayertree.h"
#include "qgsmaplayerstylemanager.h"

#include "qgscsexception.h"
#include "qgsexpressionnodeimpl.h"
#include "qgsmaplayerstylemanager.h"


namespace QgsWms
Expand Down Expand Up @@ -180,7 +180,7 @@ namespace QgsWms
schemaLocation += QLatin1String( " http://www.opengis.net/sld" );
schemaLocation += QLatin1String( " http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd" );
schemaLocation += QLatin1String( " http://www.qgis.org/wms" );
if ( QgsServerProjectUtils::wmsInspireActivated( *project ) )
if ( QgsServerProjectUtils::wmsInspireActivate( *project ) )
{
wmsCapabilitiesElement.setAttribute( QStringLiteral( "xmlns:inspire_common" ), QStringLiteral( "http://inspire.ec.europa.eu/schemas/common/1.0" ) );
wmsCapabilitiesElement.setAttribute( QStringLiteral( "xmlns:inspire_vs" ), QStringLiteral( "http://inspire.ec.europa.eu/schemas/inspire_vs/1.0" ) );
Expand Down Expand Up @@ -533,7 +533,7 @@ namespace QgsWms
elem.setAttribute( QStringLiteral( "RemoteWCS" ), QStringLiteral( "0" ) );
capabilityElem.appendChild( elem );

if ( QgsServerProjectUtils::wmsInspireActivated( *project ) )
if ( QgsServerProjectUtils::wmsInspireActivate( *project ) )
{
capabilityElem.appendChild( getInspireCapabilitiesElement( doc, project ) );
}
Expand All @@ -546,7 +546,7 @@ namespace QgsWms
{
QDomElement inspireCapabilitiesElem;

if ( !QgsServerProjectUtils::wmsInspireActivated( *project ) )
if ( !QgsServerProjectUtils::wmsInspireActivate( *project ) )
return inspireCapabilitiesElem;

inspireCapabilitiesElem = doc.createElement( QStringLiteral( "inspire_vs:ExtendedCapabilities" ) );
Expand Down Expand Up @@ -993,7 +993,7 @@ namespace QgsWms
// add details about supported styles of the layer
appendLayerStyles( doc, layerElem, l, project, version, request );

//min/max scale denominatormScaleBasedVisibility
//min/max scale denominatorScaleBasedVisibility
if ( l->hasScaleBasedVisibility() )
{
if ( version == QLatin1String( "1.1.1" ) )
Expand Down

0 comments on commit 95a5cce

Please sign in to comment.