Skip to content

Commit

Permalink
Change default theme to 'alabaster'
Browse files Browse the repository at this point in the history
Add docs-api/docs-requirements.txt

update .gitignore for docs-api/ tmp files.
  • Loading branch information
alikins committed Jun 30, 2016
1 parent e8d3b4b commit 0b19fd5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ docsite/_static/*.png
docsite/_static/websupport.js
docsite/searchindex.js
docsite/htmlout
docs-api/rst/
docs-api/_build/
# deb building stuff...
debian/
deb-build
Expand Down
14 changes: 10 additions & 4 deletions docs-api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#sys.path.insert(0, os.path.abspath('../bin'))
sys.path.insert(0, os.path.abspath('../lib/ansible'))
import sphinx_rtd_theme
import alabaster

# -- General configuration ------------------------------------------------

Expand All @@ -36,12 +37,13 @@
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.graphviz',
'sphinx.ext.inheritance_diagram'
'sphinx.ext.inheritance_diagram',
'alabaster',
]

#autodoc_default_flags = ['members', 'show-inheritance', 'inherited-members', 'undoc-members',]
autodoc_default_flags = ['members', 'show-inheritance', 'undoc-members',]
autoclass_content = ['both']
autoclass_content = 'both'
autodoc_member_order = 'bysource'
autodoc_mock_imports = ['xmltodict', 'winrm', 'redis', 'StricRedis']

Expand Down Expand Up @@ -127,8 +129,12 @@
#html_theme = 'srtd'
html_short_title = 'Ansible Documentation'

html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
#html_theme = "sphinx_rtd_theme"
#html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

html_theme_path = [alabaster.get_path()]
html_theme = 'alabaster'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
Expand Down
8 changes: 8 additions & 0 deletions docs-api/docs-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sphinx

# extensions
sphinxcontrib-napoleon
sphinxcontrib-inheritance

sphinx-rtd-theme
alabaster

0 comments on commit 0b19fd5

Please sign in to comment.