Skip to content

Commit

Permalink
[processing] update algorithm help link (fixes #13506)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 5, 2015
1 parent ac3f390 commit ca697db
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions python/plugins/processing/core/GeoAlgorithm.py
Expand Up @@ -132,13 +132,16 @@ def help(self):
groupName = groupName.replace('[', '').replace(']', '').replace(' - ', '_')
groupName = groupName.replace(' ', '_')
cmdLineName = self.commandLineName()
algName = cmdLineName[cmdLineName.find(':') + 1:].lower()
validChars = \
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_'
safeGroupName = ''.join(c for c in groupName if c in validChars)
safeAlgName = ''.join(c for c in algName if c in validChars)

helpUrl = 'http://docs.qgis.org/{}/en/docs/user_manual/processing_algs/{}/{}/{}.html'.format(qgsVersion, providerName, safeGroupName, safeAlgName)
safeAlgName = self.name.lower().replace(' ', '-')
validChars = \
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-'
safeAlgName = ''.join(c for c in safeAlgName if c in validChars)

helpUrl = 'http://docs.qgis.org/{}/en/docs/user_manual/processing_algs/{}/{}.html#{}'.format(qgsVersion, providerName, safeGroupName, safeAlgName)
return False, helpUrl

def processAlgorithm(self, progress):
Expand Down

0 comments on commit ca697db

Please sign in to comment.