Skip to content

Commit 55251d0

Browse files
authored
Merge pull request #24 from azmeuk/doc
Updated doc conf, and added RTD conf
2 parents 84b32a5 + 51f6897 commit 55251d0

File tree

4 files changed

+62
-235
lines changed

4 files changed

+62
-235
lines changed

.readthedocs.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
version: 2
3+
python:
4+
install:
5+
- method: pip
6+
path: .
7+
- requirements: docs/requirements.txt
8+
sphinx:
9+
builder: dirhtml

CHANGES.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ Unreleased
2828
- Check for ``sqlalchemy.`` to avoid matching packages with names starting
2929
with ``sqlalchemy`` (6237a0f_)
3030
- Use SQLAlchemy's Column.doc for WTForm's Field.description (`#21`_)
31-
- Stopped support for python < 3.5 and added a style pre-commit hook. (`#624`_)
31+
- Stopped support for python < 3.5 and added a style pre-commit hook. (`#23`_)
32+
- Documentation cleanup. (`#24`_)
3233

3334
.. _#2: https://github.com/wtforms/wtforms-sqlalchemy/pull/2
3435
.. _#3: https://github.com/wtforms/wtforms-sqlalchemy/pull/3
@@ -42,7 +43,8 @@ Unreleased
4243
.. _#17: https://github.com/wtforms/wtforms-sqlalchemy/pull/17
4344
.. _6237a0f: https://github.com/wtforms/wtforms-sqlalchemy/commit/6237a0f9e53ec5f22048be7f129e29f7f1c58448
4445
.. _#21: https://github.com/wtforms/wtforms-sqlalchemy/pull/21
45-
.. _#624: https://github.com/wtforms/wtforms-sqlalchemy/pull/624
46+
.. _#23: https://github.com/wtforms/wtforms-sqlalchemy/pull/23
47+
.. _#24: https://github.com/wtforms/wtforms-sqlalchemy/pull/24
4648

4749
Version 0.1
4850
-----------

docs/conf.py

Lines changed: 44 additions & 232 deletions
Original file line numberDiff line numberDiff line change
@@ -1,184 +1,61 @@
1-
#
2-
# WTForms-SQLAlchemy documentation build configuration file, created by
3-
# sphinx-quickstart on Sun Nov 10 16:35:07 2013.
4-
#
5-
# This file is execfile()d with the current directory set to its containing dir.
6-
#
7-
# Note that not all possible configuration values are present in this
8-
# autogenerated file.
9-
#
10-
# All configuration values have a default; values that are commented out
11-
# serve to show the default.
121
import os
132
import sys
143

15-
# If extensions (or modules to document with autodoc) are in another directory,
16-
# add these directories to sys.path here. If the directory is relative to the
17-
# documentation root, use os.path.abspath to make it absolute, like shown here.
18-
sys.path.insert(0, os.path.abspath(".."))
19-
20-
# -- General configuration -----------------------------------------------------
21-
22-
# If your documentation needs a minimal Sphinx version, state it here.
23-
# needs_sphinx = '1.0'
24-
25-
# Add any Sphinx extension module names here, as strings. They can be extensions
26-
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
27-
extensions = ["sphinx.ext.autodoc", "sphinx.ext.doctest", "sphinx.ext.coverage"]
28-
29-
# Add any paths that contain templates here, relative to this directory.
30-
templates_path = ["_templates"]
4+
from pallets_sphinx_themes import get_version
5+
from pallets_sphinx_themes import ProjectLink
316

32-
# The suffix of source filenames.
33-
source_suffix = ".rst"
34-
35-
# The encoding of source files.
36-
# source_encoding = 'utf-8-sig'
7+
sys.path.insert(0, os.path.abspath(".."))
378

38-
# The master toctree document.
39-
master_doc = "index"
9+
# -- Project -------------------------------------------------------------------
4010

41-
# General information about the project.
4211
project = "WTForms-SQLAlchemy"
43-
copyright = "2014, WTForms Team"
44-
45-
# The version info for the project you're documenting, acts as replacement for
46-
# |version| and |release|, also used in various other places throughout the
47-
# built documents.
48-
#
49-
# The short X.Y version.
50-
version = "0.2"
51-
# The full version, including alpha/beta/rc tags.
52-
release = "0.2dev"
5312

54-
# The language for content autogenerated by Sphinx. Refer to documentation
55-
# for a list of supported languages.
56-
# language = None
13+
# -- General -------------------------------------------------------------------
5714

58-
# There are two options for replacing |today|: either, you set today to some
59-
# non-false value, then it is used:
60-
# today = ''
61-
# Else, today_fmt is used as the format for a strftime call.
62-
# today_fmt = '%B %d, %Y'
63-
64-
# List of patterns, relative to source directory, that match files and
65-
# directories to ignore when looking for source files.
15+
master_doc = "index"
16+
extensions = [
17+
"sphinx.ext.autodoc",
18+
"sphinx.ext.intersphinx",
19+
"sphinx.ext.viewcode",
20+
"pallets_sphinx_themes",
21+
"sphinx_issues",
22+
"sphinxcontrib.log_cabinet",
23+
]
24+
intersphinx_mapping = {
25+
"python": ("https://docs.python.org/3/", None),
26+
"WTForms": ("https://wtforms.readthedocs.io/en/stable/", None),
27+
}
28+
copyright = "2020, WTForms Team"
29+
release, version = get_version("WTForms")
6630
exclude_patterns = ["_build"]
67-
68-
# The reST default role (used for this markup: `text`) to use for all documents.
69-
# default_role = None
70-
71-
# If true, '()' will be appended to :func: etc. cross-reference text.
72-
# add_function_parentheses = True
73-
74-
# If true, the current module name will be prepended to all description
75-
# unit titles (such as .. function::).
76-
# add_module_names = True
77-
78-
# If true, sectionauthor and moduleauthor directives will be shown in the
79-
# output. They are ignored by default.
80-
# show_authors = False
81-
82-
# The name of the Pygments (syntax highlighting) style to use.
8331
pygments_style = "sphinx"
8432

85-
# A list of ignored prefixes for module index sorting.
86-
# modindex_common_prefix = []
87-
88-
89-
# -- Options for HTML output ---------------------------------------------------
90-
91-
# The theme to use for HTML and HTML Help pages. See the documentation for
92-
# a list of builtin themes.
93-
html_theme = "default"
94-
95-
# Theme options are theme-specific and customize the look and feel of a theme
96-
# further. For a list of options available for each theme, see the
97-
# documentation.
98-
# html_theme_options = {}
99-
100-
# Add any paths that contain custom themes here, relative to this directory.
101-
# html_theme_path = []
102-
103-
# The name for this set of Sphinx documents. If None, it defaults to
104-
# "<project> v<release> documentation".
105-
# html_title = None
106-
107-
# A shorter title for the navigation bar. Default is the same as html_title.
108-
# html_short_title = None
109-
110-
# The name of an image file (relative to this directory) to place at the top
111-
# of the sidebar.
112-
# html_logo = None
113-
114-
# The name of an image file (within the static path) to use as favicon of the
115-
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
116-
# pixels large.
117-
# html_favicon = None
118-
119-
# Add any paths that contain custom static files (such as style sheets) here,
120-
# relative to this directory. They are copied after the builtin static files,
121-
# so a file named "default.css" will overwrite the builtin "default.css".
122-
html_static_path = ["_static"]
123-
124-
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
125-
# using the given strftime format.
126-
# html_last_updated_fmt = '%b %d, %Y'
127-
128-
# If true, SmartyPants will be used to convert quotes and dashes to
129-
# typographically correct entities.
130-
# html_use_smartypants = True
131-
132-
# Custom sidebar templates, maps document names to template names.
133-
# html_sidebars = {}
134-
135-
# Additional templates that should be rendered to pages, maps page names to
136-
# template names.
137-
# html_additional_pages = {}
138-
139-
# If false, no module index is generated.
140-
# html_domain_indices = True
141-
142-
# If false, no index is generated.
143-
# html_use_index = True
144-
145-
# If true, the index is split into individual pages for each letter.
146-
# html_split_index = False
147-
148-
# If true, links to the reST sources are added to the pages.
149-
# html_show_sourcelink = True
150-
151-
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
152-
# html_show_sphinx = True
153-
154-
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
155-
# html_show_copyright = True
156-
157-
# If true, an OpenSearch description file will be output, and all pages will
158-
# contain a <link> tag referring to it. The value of this option must be the
159-
# base URL from which the finished HTML is served.
160-
# html_use_opensearch = ''
161-
162-
# This is the file name suffix for HTML files (e.g. ".xhtml").
163-
# html_file_suffix = None
164-
165-
# Output file base name for HTML help builder.
166-
htmlhelp_basename = "WTForms-SQLAlchemydoc"
167-
168-
169-
# -- Options for LaTeX output --------------------------------------------------
170-
171-
latex_elements = {
172-
# The paper size ('letterpaper' or 'a4paper').
173-
# 'papersize': 'letterpaper',
174-
# The font size ('10pt', '11pt' or '12pt').
175-
# 'pointsize': '10pt',
176-
# Additional stuff for the LaTeX preamble.
177-
# 'preamble': '',
33+
# -- HTML ----------------------------------------------------------------------
34+
35+
html_theme = "werkzeug"
36+
html_context = {
37+
"project_links": [
38+
ProjectLink(
39+
"WTForms documentation", "https://wtforms.readthedocs.io/en/stable/"
40+
),
41+
ProjectLink("PyPI Releases", "https://pypi.org/project/WTForms-SQLAlchemy/"),
42+
ProjectLink("Source Code", "https://github.com/wtforms/wtforms-sqlalchemy/"),
43+
ProjectLink("Discord Chat", "https://discord.gg/F65P7Z9",),
44+
ProjectLink(
45+
"Issue Tracker", "https://github.com/wtforms/wtforms-sqlalchemy/issues/"
46+
),
47+
]
48+
}
49+
html_sidebars = {
50+
"index": ["project.html", "localtoc.html", "searchbox.html"],
51+
"**": ["localtoc.html", "relations.html", "searchbox.html"],
17852
}
53+
singlehtml_sidebars = {"index": ["project.html", "localtoc.html"]}
54+
html_title = f"WTForms SQLAlchemy Documentation ({version})"
55+
html_show_sourcelink = False
56+
57+
# -- LATEX ---------------------------------------------------------------------
17958

180-
# Grouping the document tree into LaTeX files. List of tuples
181-
# (source start file, target name, title, author, documentclass [howto/manual]).
18259
latex_documents = [
18360
(
18461
"index",
@@ -188,68 +65,3 @@
18865
"manual",
18966
),
19067
]
191-
192-
# The name of an image file (relative to this directory) to place at the top of
193-
# the title page.
194-
# latex_logo = None
195-
196-
# For "manual" documents, if this is true, then toplevel headings are parts,
197-
# not chapters.
198-
# latex_use_parts = False
199-
200-
# If true, show page references after internal links.
201-
# latex_show_pagerefs = False
202-
203-
# If true, show URL addresses after external links.
204-
# latex_show_urls = False
205-
206-
# Documents to append as an appendix to all manuals.
207-
# latex_appendices = []
208-
209-
# If false, no module index is generated.
210-
# latex_domain_indices = True
211-
212-
213-
# -- Options for manual page output --------------------------------------------
214-
215-
# One entry per manual page. List of tuples
216-
# (source start file, name, description, authors, manual section).
217-
man_pages = [
218-
(
219-
"index",
220-
"wtforms-sqlalchemy",
221-
"WTForms-SQLAlchemy Documentation",
222-
["WTForms Team"],
223-
1,
224-
)
225-
]
226-
227-
# If true, show URL addresses after external links.
228-
# man_show_urls = False
229-
230-
231-
# -- Options for Texinfo output ------------------------------------------------
232-
233-
# Grouping the document tree into Texinfo files. List of tuples
234-
# (source start file, target name, title, author,
235-
# dir menu entry, description, category)
236-
texinfo_documents = [
237-
(
238-
"index",
239-
"WTForms-SQLAlchemy",
240-
"WTForms-SQLAlchemy Documentation",
241-
"WTForms Team",
242-
"WTForms-SQLAlchemy",
243-
"One line description of project.",
244-
"Miscellaneous",
245-
),
246-
]
247-
248-
# Documents to append as an appendix to all manuals.
249-
# texinfo_appendices = []
250-
251-
# If false, no module index is generated.
252-
# texinfo_domain_indices = True
253-
254-
# How to display URL addresses: 'footnote', 'no', or 'inline'.
255-
# texinfo_show_urls = 'footnote'

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, style
2+
envlist = py36, py37, py38, style, docs
33

44
[testenv]
55
setenv =
@@ -10,3 +10,7 @@ commands = python setup.py test
1010
deps = pre-commit
1111
skip_install = true
1212
commands = pre-commit run --all-files --show-diff-on-failure
13+
14+
[testenv:docs]
15+
deps = -r docs/requirements.txt
16+
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html

0 commit comments

Comments
 (0)