Skip to content

Commit

Permalink
Update help Url for Core plugins in official doc
Browse files Browse the repository at this point in the history
(cherry picked from commit 352423e)
  • Loading branch information
DelazJ authored and nyalldawson committed Jun 15, 2019
1 parent c6d8e8b commit b8e9ed8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Guidance: https://docs.qgis.org/2.18/en/docs/user_manual/plugins/plugins_metasearch.html#managing-catalog-services -->
<!-- Guidance: https://docs.qgis.org/testing/en/docs/user_manual/plugins/core_plugins/plugins_metasearch.html#managing-catalog-services -->
<qgsCSWConnections version="1.0">
<csw name="USA: Data.gov CSW" url="https://catalog.data.gov/csw-all"/>
<csw name="Danmark: National CSW (geodata-info)" url="https://geodata-info.dk/srv/dan/csw"/>
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/MetaSearch/util.py
Expand Up @@ -142,10 +142,10 @@ def get_help_url():
else:
version = '.'.join([major, minor])

path = '%s/%s/docs/user_manual/plugins/plugins_metasearch.html' % \
path = '%s/%s/docs/user_manual/plugins/core_plugins/plugins_metasearch.html' % \
(version, locale_name)

return '/'.join(['http://docs.qgis.org', path])
return '/'.join(['https://docs.qgis.org', path])


def open_url(url):
Expand Down
Expand Up @@ -545,5 +545,5 @@ void eVisDatabaseConnectionGui::pbtnRunQuery_clicked()

void eVisDatabaseConnectionGui::showHelp()
{
QgsHelp::openHelp( QStringLiteral( "plugins/plugins_evis.html#database-connection" ) );
QgsHelp::openHelp( QStringLiteral( "plugins/core_plugins/plugins_evis.html#database-connection" ) );
}
2 changes: 1 addition & 1 deletion src/plugins/geometry_checker/qgsgeometrycheckerdialog.cpp
Expand Up @@ -112,5 +112,5 @@ void QgsGeometryCheckerDialog::closeEvent( QCloseEvent *ev )

void QgsGeometryCheckerDialog::showHelp()
{
QgsHelp::openHelp( QStringLiteral( "plugins/plugins_geometry_checker.html" ) );
QgsHelp::openHelp( QStringLiteral( "plugins/core_plugins/plugins_geometry_checker.html" ) );
}
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -690,7 +690,7 @@ void QgsGeorefPluginGui::localHistogramStretch()
// Info slots
void QgsGeorefPluginGui::showHelp()
{
QgsHelp::openHelp( QStringLiteral( "plugins/plugins_georeferencer.html#defining-the-transformation-settings" ) );
QgsHelp::openHelp( QStringLiteral( "plugins/core_plugins/plugins_georeferencer.html#defining-the-transformation-settings" ) );
}

// Comfort slots
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/offline_editing/offline_editing_plugin_gui.cpp
Expand Up @@ -238,7 +238,7 @@ void QgsOfflineEditingPluginGui::buttonBox_rejected()

void QgsOfflineEditingPluginGui::showHelp()
{
QgsHelp::openHelp( QStringLiteral( "plugins/plugins_offline_editing.html" ) );
QgsHelp::openHelp( QStringLiteral( "plugins/core_plugins/plugins_offline_editing.html" ) );
}

void QgsOfflineEditingPluginGui::restoreState()
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/topology/rulesDialog.cpp
Expand Up @@ -336,5 +336,5 @@ void rulesDialog::clearRules()

void rulesDialog::showHelp()
{
QgsHelp::openHelp( QStringLiteral( "plugins/plugins_topology_checker.html" ) );
QgsHelp::openHelp( QStringLiteral( "plugins/core_plugins/plugins_topology_checker.html" ) );
}

0 comments on commit b8e9ed8

Please sign in to comment.