summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2017-03-23 01:13:23 -0400
committerBrian Coca <bcoca@users.noreply.github.com>2017-03-24 15:52:36 -0400
commit424e1946f435c5228b450d802a16a585a7798665 (patch)
tree9b93634262a2addc329d2dbda7dbc92483824e39
parentb4c47ebf680bd652913387a03aafa6dbc4d66ec0 (diff)
downloadansible-424e1946f435c5228b450d802a16a585a7798665.tar.gz
moved docs generation and templates to docs/
-rw-r--r--Makefile3
-rwxr-xr-xdocs/bin/dump_keywords.py (renamed from hacking/dump_playbook_attributes.py)4
-rwxr-xr-xdocs/bin/plugin_formatter.py (renamed from hacking/module_formatter.py)2
-rw-r--r--docs/docsite/Makefile15
-rw-r--r--docs/docsite/keyword_desc.yml (renamed from docs/docsite/directive_desc.yml)0
-rw-r--r--docs/docsite/rst/playbooks_special_topics.rst2
-rw-r--r--docs/templates/playbooks_keywords.rst.j2 (renamed from hacking/templates/playbooks_directives.rst.j2)0
-rw-r--r--docs/templates/plugin.rst.j2 (renamed from hacking/templates/rst.j2)0
8 files changed, 14 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 00649daf0d..0f5010dc32 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ OS = $(shell uname -s)
# Manpages are currently built with asciidoc -- would like to move to markdown
# This doesn't evaluate until it's called. The -D argument is the
# directory of the target file ($@), kinda like `dirname`.
-MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1 docs/man/man1/ansible-galaxy.1 docs/man/man1/ansible-vault.1 docs/man/man1/ansible-console.1
+MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1 docs/man/man1/ansible-doc.1 docs/man/man1/ansible-galaxy.1
ifneq ($(shell which a2x 2>/dev/null),)
ASCII2MAN = a2x -L -D $(dir $@) -d manpage -f manpage $<
ASCII2HTMLMAN = a2x -L -D docs/html/man/ -d manpage -f xhtml
@@ -160,6 +160,7 @@ clean:
find ./docs/man -type f -name "*.xml" -delete
find ./docs/man -type f -name "*.asciidoc" -delete
find ./docs/man/man3 -type f -name "*.3" -delete
+ find ./docs/man/man1 -type f -name "*.1" -delete
@echo "Cleaning up output from test runs"
rm -rf test/test_data
@echo "Cleaning up RPM building stuff"
diff --git a/hacking/dump_playbook_attributes.py b/docs/bin/dump_keywords.py
index 0b963ff45f..e5cb23d902 100755
--- a/hacking/dump_playbook_attributes.py
+++ b/docs/bin/dump_keywords.py
@@ -10,7 +10,7 @@ from ansible.playbook.block import Block
from ansible.playbook.role import Role
from ansible.playbook.task import Task
-template_file = 'playbooks_directives.rst.j2'
+template_file = 'playbooks_keywords.rst.j2'
oblist = {}
clist = []
class_list = [ Play, Role, Block, Task ]
@@ -20,7 +20,7 @@ p = optparse.OptionParser(
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("-T", "--template-dir", action="store", dest="template_dir", default="../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")
p.add_option("-d", "--docs-source", action="store", dest="docs", default=None, help="Source for attribute docs")
diff --git a/hacking/module_formatter.py b/docs/bin/plugin_formatter.py
index 8dc103ffe1..319b38d1c0 100755
--- a/hacking/module_formatter.py
+++ b/docs/bin/plugin_formatter.py
@@ -213,7 +213,7 @@ def jinja2_environment(template_dir, typ):
env.filters['html_ify'] = html_ify
env.filters['fmt'] = rst_fmt
env.filters['xline'] = rst_xline
- template = env.get_template('rst.j2')
+ template = env.get_template('plugin.rst.j2')
outputname = "%s_module.rst"
else:
raise Exception("unknown module format type: %s" % typ)
diff --git a/docs/docsite/Makefile b/docs/docsite/Makefile
index 0288d8ffc8..35a9258399 100644
--- a/docs/docsite/Makefile
+++ b/docs/docsite/Makefile
@@ -1,7 +1,7 @@
OS := $(shell uname -s)
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"):
-FORMATTER=../../hacking/module_formatter.py
-DUMPER=../../hacking/dump_playbook_attributes.py
+FORMATTER=../bin/plugin_formatter.py
+DUMPER=../bin/dump_keywords.py
ifeq ($(shell echo $(OS) | egrep -ic 'Darwin|FreeBSD|OpenBSD|DragonFly'),1)
CPUS ?= $(shell sysctl hw.ncpu|awk '{print $$2}')
else
@@ -12,7 +12,7 @@ all: docs
docs: clean htmldocs
-htmldocs: directives modules staticmin
+htmldocs: keywords modules staticmin
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx html
webdocs: docs
@@ -36,14 +36,15 @@ clean:
-rm rst/*_by_category.rst
-rm rst/*_module.rst
-rm rst/playbooks_directives.rst
+ -rm rst/playbooks_keywords.rst
.PHONEY: docs clean
-directives: $(FORMATTER) ../../hacking/templates/rst.j2
- PYTHONPATH=../../lib $(DUMPER) --template-dir=../../hacking/templates --output-dir=rst/ -d ./directive_desc.yml
+keywords: $(FORMATTER) ../templates/playbooks_keywords.rst.j2
+ PYTHONPATH=../../lib $(DUMPER) --template-dir=../templates --output-dir=rst/ -d ./keyword_desc.yml
-modules: $(FORMATTER) ../../hacking/templates/rst.j2
- PYTHONPATH=../../lib $(FORMATTER) -t rst --template-dir=../../hacking/templates --module-dir=../../lib/ansible/modules -o rst/
+modules: $(FORMATTER) ../templates/plugin.rst.j2
+ PYTHONPATH=../../lib $(FORMATTER) -t rst --template-dir=../templates --module-dir=../../lib/ansible/modules -o rst/
staticmin:
cat _themes/srtd/static/css/theme.css | sed -e 's/^[ ]*//g; s/[ ]*$$//g; s/\([:{;,]\) /\1/g; s/ {/{/g; s/\/\*.*\*\///g; /^$$/d' | sed -e :a -e '$$!N; s/\n\(.\)/\1/; ta' > _themes/srtd/static/css/theme.min.css
diff --git a/docs/docsite/directive_desc.yml b/docs/docsite/keyword_desc.yml
index 3ae109643d..3ae109643d 100644
--- a/docs/docsite/directive_desc.yml
+++ b/docs/docsite/keyword_desc.yml
diff --git a/docs/docsite/rst/playbooks_special_topics.rst b/docs/docsite/rst/playbooks_special_topics.rst
index 3e31d38e22..ab5476d2cc 100644
--- a/docs/docsite/rst/playbooks_special_topics.rst
+++ b/docs/docsite/rst/playbooks_special_topics.rst
@@ -21,4 +21,4 @@ and adopt these only if they seem relevant or useful to your environment.
playbooks_tags
playbooks_vault
playbooks_startnstep
- playbooks_directives
+ playbooks_keywords
diff --git a/hacking/templates/playbooks_directives.rst.j2 b/docs/templates/playbooks_keywords.rst.j2
index f55bc2afc5..f55bc2afc5 100644
--- a/hacking/templates/playbooks_directives.rst.j2
+++ b/docs/templates/playbooks_keywords.rst.j2
diff --git a/hacking/templates/rst.j2 b/docs/templates/plugin.rst.j2
index 1f9f692312..1f9f692312 100644
--- a/hacking/templates/rst.j2
+++ b/docs/templates/plugin.rst.j2