Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] show alforithm and help authors in Help tab (fix #8917)
  • Loading branch information
alexbruy committed Mar 28, 2014
1 parent cd9aae7 commit 2b458e8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/processing/gui/Help2Html.py
Expand Up @@ -53,6 +53,9 @@ def getHtmlFile(self, alg, helpFile):
for out in self.alg.outputs:
s += '<h3>' + out.description + '</h3>\n'
s += '<p>' + self.getDescription(out.name) + '</p>\n'
s += '<br>'
s += '<p align="right">Algorithm author: ' + self.getDescription(self.ALG_CREATOR) + '</p>'
s += '<p align="right">Help author: ' + self.getDescription(self.ALG_HELP_CREATOR) + '</p>'
s += '</body></html>'
filename = tempFolder() + os.sep + 'temphelp.html'
tempHtml = codecs.open(filename, 'w', encoding='utf-8')
Expand Down

0 comments on commit 2b458e8

Please sign in to comment.