Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
alias.py 895 B
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

    def execute(self):
        """
        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 []

def setup(app):
    """
    Setup the directives when the extension is activated

    Args:
      app: The main Sphinx application object
    """
    app.add_directive('alias', AliasDirective)