Browse Source

experimental readthedocs build

rtd
David Lord 6 years ago
parent
commit
86acd842ce
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
  1. 26
      docs/conf.py
  2. 3
      docs/requirements.txt

26
docs/conf.py

@ -3,8 +3,7 @@ from __future__ import print_function
import inspect import inspect
import re import re
from pallets_sphinx_themes import ProjectLink, get_version
from pallets_sphinx_themes import DocVersion, ProjectLink, get_version
# Project -------------------------------------------------------------- # Project --------------------------------------------------------------
@ -21,6 +20,7 @@ extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.autodoc',
'sphinx.ext.intersphinx', 'sphinx.ext.intersphinx',
'sphinxcontrib.log_cabinet', 'sphinxcontrib.log_cabinet',
'pallets_sphinx_themes',
] ]
intersphinx_mapping = { intersphinx_mapping = {
@ -39,42 +39,34 @@ intersphinx_mapping = {
html_theme = 'flask' html_theme = 'flask'
html_context = { html_context = {
'project_links': [ 'project_links': [
ProjectLink('Donate to Pallets', 'https://psfmember.org/civicrm/contribute/transact?reset=1&id=20'), ProjectLink('Donate to Pallets', 'https://www.palletsprojects.com/donate'),
ProjectLink('Flask Website', 'https://palletsprojects.com/p/flask/'), ProjectLink('Flask Website', 'https://palletsprojects.com/p/flask/'),
ProjectLink('PyPI releases', 'https://pypi.org/project/Flask/'), ProjectLink('PyPI releases', 'https://pypi.org/project/Flask/'),
ProjectLink('Source Code', 'https://github.com/pallets/flask/'), ProjectLink('Source Code', 'https://github.com/pallets/flask/'),
ProjectLink( ProjectLink('Issue Tracker', 'https://github.com/pallets/flask/issues/'),
'Issue Tracker', 'https://github.com/pallets/flask/issues/'),
],
'versions': [
DocVersion('dev', 'Development', 'unstable'),
DocVersion('1.0', 'Flask 1.0', 'stable'),
DocVersion('0.12', 'Flask 0.12'),
], ],
'canonical_url': 'http://flask.pocoo.org/docs/{}/'.format(version),
'carbon_ads_args': 'zoneid=1673&serve=C6AILKT&placement=pocooorg',
} }
html_sidebars = { html_sidebars = {
'index': [ 'index': [
'project.html', 'project.html',
'versions.html', 'versions.html',
'carbon_ads.html',
'searchbox.html', 'searchbox.html',
], ],
'**': [ '**': [
'localtoc.html', 'localtoc.html',
'relations.html', 'relations.html',
'versions.html', 'versions.html',
'carbon_ads.html',
'searchbox.html', 'searchbox.html',
] ]
} }
singlehtml_sidebars = [
"project.html",
"versions.html",
"localtoc.html",
]
html_static_path = ['_static'] html_static_path = ['_static']
html_favicon = '_static/flask-favicon.ico' html_favicon = '_static/flask-favicon.ico'
html_logo = '_static/flask.png' html_logo = '_static/flask.png'
html_additional_pages = {
'404': '404.html',
}
html_show_sourcelink = False html_show_sourcelink = False
# LaTeX ---------------------------------------------------------------- # LaTeX ----------------------------------------------------------------

3
docs/requirements.txt

@ -0,0 +1,3 @@
sphinx
sphinxcontrib-log-cabinet
https://github.com/pallets/pallets-sphinx-themes/archive/master.zip
Loading…
Cancel
Save