Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
959a4610
Commit
959a4610
authored
Dec 10, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1718 from jpmens/andoc2
CLI: ansible-doc rebased
parents
63788316
77e06025
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
10 deletions
+15
-10
bin/ansible-doc
+15
-10
No files found.
bin/ansible-doc
View file @
959a4610
...
...
@@ -32,9 +32,12 @@ from ansible import utils
from
ansible
import
errors
from
ansible.utils
import
module_docs
import
ansible.constants
as
C
from
ansible.utils
import
version
MODULEDIR
=
C
.
DEFAULT_MODULE_PATH
BLACKLIST_EXTS
=
(
'.swp'
,
'.bak'
,
'~'
,
'.rpm'
)
_ITALIC
=
re
.
compile
(
r"I\(([^)]+)\)"
)
_BOLD
=
re
.
compile
(
r"B\(([^)]+)\)"
)
_MODULE
=
re
.
compile
(
r"M\(([^)]+)\)"
)
...
...
@@ -60,6 +63,7 @@ def print_man(doc):
print
"
%
s
\n
"
%
textwrap
.
fill
(
tty_ify
(
desc
),
initial_indent
=
" "
,
subsequent_indent
=
" "
)
if
'option_keys'
in
doc
and
len
(
doc
[
'option_keys'
])
>
0
:
print
"Options (= is mandatory):
\n
"
for
o
in
doc
[
'option_keys'
]:
...
...
@@ -74,7 +78,7 @@ def print_man(doc):
desc
=
""
.
join
(
opt
[
'description'
])
if
'choices'
in
opt
:
choices
=
", "
.
join
(
opt
[
'choices'
])
choices
=
", "
.
join
(
str
(
i
)
for
i
in
opt
[
'choices'
])
desc
=
desc
+
" (Choices: "
+
choices
+
")"
print
"
%
s
\n
"
%
textwrap
.
fill
(
tty_ify
(
desc
),
initial_indent
=
opt_indent
,
subsequent_indent
=
opt_indent
)
...
...
@@ -98,12 +102,12 @@ def print_snippet(doc):
opt
=
doc
[
'options'
][
o
]
desc
=
tty_ify
(
""
.
join
(
opt
[
'description'
]))
s
=
o
+
"="
print
"
%-20
s #
%
s"
%
(
s
,
desc
[
0
:
60
]
)
print
"
%-20
s #
%
s"
%
(
s
,
desc
)
def
main
():
p
=
optparse
.
OptionParser
(
version
=
'
%
prog 1.0'
,
version
=
version
(
"
%
prog"
)
,
usage
=
'usage:
%
prog [options] [module...]'
,
description
=
'Show Ansible module documentation'
,
)
...
...
@@ -128,7 +132,8 @@ def main():
(
options
,
args
)
=
p
.
parse_args
()
if
options
.
module_path
is
not
None
:
utils
.
plugins
.
vars_loader
.
add_directory
(
options
.
module_path
)
for
i
in
options
.
module_path
.
split
(
os
.
pathsep
):
utils
.
plugins
.
module_finder
.
add_directory
(
i
)
if
options
.
list_dir
:
# list all modules
...
...
@@ -138,16 +143,18 @@ def main():
# os.system("ls -C %s" % (path))
if
os
.
path
.
isdir
(
path
):
for
module
in
os
.
listdir
(
path
):
if
any
(
module
.
endswith
(
x
)
for
x
in
BLACKLIST_EXTS
):
continue
module_list
.
append
(
module
)
for
module
in
sorted
(
module_list
):
for
module
in
sorted
(
set
(
module_list
)
):
if
module
in
module_docs
.
BLACKLIST_MODULES
:
continue
filename
=
utils
.
plugins
.
module_finder
.
find_plugin
(
module
)
try
:
doc
=
utils
.
module_docs
.
get_docstring
(
filename
)
doc
=
module_docs
.
get_docstring
(
filename
)
desc
=
tty_ify
(
doc
.
get
(
'short_description'
,
'?'
))
if
len
(
desc
)
>
55
:
desc
=
desc
+
'...'
...
...
@@ -158,8 +165,6 @@ def main():
sys
.
exit
()
module_list
=
[]
if
len
(
args
)
==
0
:
p
.
print_help
()
...
...
@@ -171,11 +176,11 @@ def main():
utils
.
plugins
.
module_finder
.
print_paths
()))
continue
if
filename
.
endswith
(
".swp"
):
if
any
(
filename
.
endswith
(
x
)
for
x
in
BLACKLIST_EXTS
):
continue
try
:
doc
=
utils
.
module_docs
.
get_docstring
(
filename
)
doc
=
module_docs
.
get_docstring
(
filename
)
except
:
sys
.
stderr
.
write
(
"ERROR: module
%
s missing documentation
\n
"
%
module
)
continue
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment