summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2016-02-25 16:41:50 -0500
committerBrian Coca <brian.coca+git@gmail.com>2016-02-25 16:48:37 -0500
commitfbdcb22e36f6aeb01e10f972b8a4e7d691b1f908 (patch)
treef1e9628a11b8b88fa5d791bd395b90a37571d27a /hacking
parent771f1e31a9588129eb92b269ac94fb714780d400 (diff)
downloadansible-fbdcb22e36f6aeb01e10f972b8a4e7d691b1f908.tar.gz
now generate list of playbook ojbect directives
TODO: needs links/info and conditionals added
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/dump_playbook_attributes.py33
-rw-r--r--hacking/templates/playbooks_directives.rst.j219
2 files changed, 52 insertions, 0 deletions
diff --git a/hacking/dump_playbook_attributes.py b/hacking/dump_playbook_attributes.py
new file mode 100755
index 0000000000..3fa2b41084
--- /dev/null
+++ b/hacking/dump_playbook_attributes.py
@@ -0,0 +1,33 @@
+#!/usr/bin/env python2
+
+import optparse
+from jinja2 import Environment, FileSystemLoader
+
+from ansible.playbook import Play
+from ansible.playbook.block import Block
+from ansible.playbook.role import Role
+from ansible.playbook.task import Task
+
+template_file = 'playbooks_directives.rst.j2'
+oblist = {}
+for aclass in Play, Block, Role, Task:
+ aobj = aclass()
+ oblist[type(aobj).__name__] = aobj
+
+p = optparse.OptionParser(
+ version='%prog 1.0',
+ usage='usage: %prog [options]',
+ description='Generate module documentation from metadata',
+)
+p.add_option("-T", "--template-dir", action="store", dest="template_dir", default="hacking/templates", help="directory containing Jinja2 templates")
+p.add_option("-o", "--output-dir", action="store", dest="output_dir", default='/tmp/', help="Output directory for rst files")
+
+(options, args) = p.parse_args()
+
+env = Environment(loader=FileSystemLoader(options.template_dir), trim_blocks=True,)
+template = env.get_template(template_file)
+outputname = options.output_dir + template_file.replace('.j2','')
+tempvars = { 'oblist': oblist }
+
+with open( outputname, 'w') as f:
+ f.write(template.render(tempvars))
diff --git a/hacking/templates/playbooks_directives.rst.j2 b/hacking/templates/playbooks_directives.rst.j2
new file mode 100644
index 0000000000..0dc9408e43
--- /dev/null
+++ b/hacking/templates/playbooks_directives.rst.j2
@@ -0,0 +1,19 @@
+Directives Glossary
+===================
+
+Here we list the common playbook objects and the possible directives that can be used with them.
+Note that not all directives affect the object itself and might just be there to be inherited by other contained objects.
+
+.. contents::
+ :local:
+ :depth: 1
+
+{% for name in oblist %}
+
+{{ name }}
+{{ '-' * name|length }}
+{% for attribute in oblist[name].__dict__['_attributes']|sort %}
+ * {{ attribute }}
+{% endfor %}
+
+{% endfor %}