Newer
Older
from mantiddoc.directives.base import AlgorithmBaseDirective
class AliasDirective(AlgorithmBaseDirective):
Obtains the alias for a given algorithm based on it's name.
required_arguments, optional_arguments = 0, 0
Called by Sphinx when the ..alias:: directive is encountered.
alg = self.create_mantid_algorithm(self.algorithm_name(), self.algorithm_version())
alias = alg.alias()
if len(alias) == 0:
return []
self.add_rst(self.make_header("Alias"))
format_str = "This algorithm is also known as: **%s**"
self.add_rst(format_str % alias)
return []
"""
Setup the directives when the extension is activated
Args:
app: The main Sphinx application object
"""
app.add_directive('alias', AliasDirective)