Skip to content

Commit

Permalink
Updated docs conf
Browse files Browse the repository at this point in the history
  • Loading branch information
blaflamme committed Jan 11, 2011
1 parent 9474230 commit 824b499
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion docs/Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ help:
clean: clean:
-rm -rf _build/* -rm -rf _build/*


html: html: _themes
mkdir -p _build/html _build/doctrees mkdir -p _build/html _build/doctrees
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
@echo @echo
Expand Down Expand Up @@ -68,3 +68,6 @@ linkcheck:
@echo @echo
@echo "Link check complete; look for any errors in the above output " \ @echo "Link check complete; look for any errors in the above output " \
"or in _build/linkcheck/output.txt." "or in _build/linkcheck/output.txt."

_themes:
git clone git://github.com/Pylons/pylons_sphinx_theme.git _themes
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
] ]


# Looks for bfg's objects # Looks for bfg's objects
intersphinx_mapping = {'http://docs.pylonshq.com/pyramid/dev': None} intersphinx_mapping = {'http://docs.pylonsproject.org/projects/pyramid/dev': None}


# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['.templates'] templates_path = ['_templates']


# The suffix of source filenames. # The suffix of source filenames.
source_suffix = '.rst' source_suffix = '.rst'
Expand Down Expand Up @@ -93,7 +93,7 @@
#show_authors = False #show_authors = False


# The name of the Pygments (syntax highlighting) style to use. # The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx' #pygments_style = 'sphinx'




# Options for HTML output # Options for HTML output
Expand All @@ -102,7 +102,7 @@
# Add and use Pylons theme # Add and use Pylons theme
sys.path.append(os.path.abspath('_themes')) sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes'] html_theme_path = ['_themes']
html_theme = 'pylons' html_theme = 'pyramid'


# The style sheet to use for HTML and HTML Help pages. A file of that name # The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths # must exist either in Sphinx' static/ path, or in one of the custom paths
Expand Down

0 comments on commit 824b499

Please sign in to comment.