Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
53d50fb6
Commit
53d50fb6
authored
10 years ago
by
Gigg, Martyn Anthony
Browse files
Options
Downloads
Patches
Plain Diff
Rename aliases directive to alias
Refs #9562
parent
b9fe7a42
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/docs/sphinxext/mantiddoc/directives/alias.py
+5
-5
5 additions, 5 deletions
Code/Mantid/docs/sphinxext/mantiddoc/directives/alias.py
with
5 additions
and
5 deletions
Code/Mantid/docs/sphinxext/mantiddoc/directives/alias
es
.py
→
Code/Mantid/docs/sphinxext/mantiddoc/directives/alias.py
+
5
−
5
View file @
53d50fb6
from
base
import
BaseDirective
class
Alias
es
Directive
(
BaseDirective
):
class
AliasDirective
(
BaseDirective
):
"""
Obtains the alias
es
for a given algorithm based on it
'
s name.
Obtains the alias for a given algorithm based on it
'
s name.
"""
required_arguments
,
optional_arguments
=
0
,
0
def
run
(
self
):
"""
Called by Sphinx when the ..alias
es
:: directive is encountered.
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
es
"
))
self
.
add_rst
(
self
.
make_header
(
"
Alias
"
))
format_str
=
"
This algorithm is also known as: **%s**
"
self
.
add_rst
(
format_str
%
alias
)
self
.
commit_rst
()
...
...
@@ -32,4 +32,4 @@ def setup(app):
Args:
app: The main Sphinx application object
"""
app
.
add_directive
(
'
alias
es
'
,
Alias
es
Directive
)
app
.
add_directive
(
'
alias
'
,
AliasDirective
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment