Skip to content

Commit a815140

Browse files
authored
Merge pull request pallets-eco#718 from pallets/docs
use pallets-sphinx-themes
2 parents 3c96f76 + f994cba commit a815140

File tree

14 files changed

+102
-655
lines changed

14 files changed

+102
-655
lines changed

CHANGES.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Unreleased
66
- Make engine configuration more flexible. (:pr:`684`)
77
- Address SQLAlchemy 1.3 deprecations. (:pr:`684`)
88
- ``get_or_404()`` and ``first_or_404()`` now accept a ``description``
9-
parameter to control the 404 message. (:pr:`636`)
10-
- Use ``time.perf_counter`` for Python 3 on Windows. (:pr:`638`)
9+
parameter to control the 404 message. (:issue:`636`)
10+
- Use ``time.perf_counter`` for Python 3 on Windows. (:issue:`638`)
1111
- Drop support for Python 2.6 and 3.3. (:pr:`687`)
1212

1313

@@ -27,15 +27,15 @@ Released 2017-10-05
2727

2828
- If a model has a table name that matches an existing table in the
2929
metadata, use that table. Fixes a regression where reflected tables
30-
were not picked up by models. (:pr:`551`)
30+
were not picked up by models. (:issue:`551`)
3131
- Raise the correct error when a model has a table name but no primary
3232
key. (:pr:`556`)
3333
- Fix ``repr`` on models that don't have an identity because they have
34-
not been flushed yet. (:pr:`555`)
34+
not been flushed yet. (:issue:`555`)
3535
- Allow specifying a ``max_per_page`` limit for pagination, to avoid
3636
users specifying high values in the request args. (:pr:`542`)
3737
- For ``paginate`` with ``error_out=False``, the minimum value for
38-
``page`` is 1 and ``per_page`` is 0. (:pr:`558`)
38+
``page`` is 1 and ``per_page`` is 0. (:issue:`558`)
3939

4040

4141
Version 2.3.0
@@ -51,14 +51,14 @@ Released 2017-09-28
5151
- Passing an existing ``declarative_base()`` as ``model_class`` to
5252
``SQLAlchemy.__init__`` will use this as the base class instead of
5353
creating one. This allows customizing the metaclass used to
54-
construct the base. (:pr:`546`)
54+
construct the base. (:issue:`546`)
5555
- The undocumented ``DeclarativeMeta`` internals that the extension
5656
uses for binds and table name generation have been refactored to
5757
work as mixins. Documentation is added about how to create a custom
58-
metaclass that does not do table name generation. (:pr:`546`)
58+
metaclass that does not do table name generation. (:issue:`546`)
5959
- Model and metaclass code has been moved to a new ``models`` module.
6060
``_BoundDeclarativeMeta`` is renamed to ``DefaultMeta``; the old
61-
name will be removed in 3.0. (:pr:`546`)
61+
name will be removed in 3.0. (:issue:`546`)
6262
- Models have a default ``repr`` that shows the model name and primary
6363
key. (:pr:`530`)
6464
- Fixed a bug where using ``init_app`` would cause connectors to
@@ -79,13 +79,13 @@ Released 2017-02-27, codename Dubnium
7979
- Allow listening to SQLAlchemy events on ``db.session``.
8080
(:pr:`364`)
8181
- Allow ``__bind_key__`` on abstract models. (:pr:`373`)
82-
- Allow ``SQLALCHEMY_ECHO`` to be a string. (:pr:`409`)
82+
- Allow ``SQLALCHEMY_ECHO`` to be a string. (:issue:`409`)
8383
- Warn when ``SQLALCHEMY_DATABASE_URI`` is not set. (:pr:`443`)
84-
- Don't let pagination generate invalid page numbers. (:pr:`460`)
84+
- Don't let pagination generate invalid page numbers. (:issue:`460`)
8585
- Drop support of Flask < 0.10. This means the db session is always
86-
tied to the app context and its teardown event. (:pr:`461`)
86+
tied to the app context and its teardown event. (:issue:`461`)
8787
- Tablename generation logic no longer accesses class properties
88-
unless they are ``declared_attr``. (:pr:`467`)
88+
unless they are ``declared_attr``. (:issue:`467`)
8989

9090

9191
Version 2.1

docs/Makefile

Lines changed: 9 additions & 120 deletions
Original file line numberDiff line numberDiff line change
@@ -1,130 +1,19 @@
1-
# Makefile for Sphinx documentation
1+
# Minimal makefile for Sphinx documentation
22
#
33

44
# You can set these variables from the command line.
55
SPHINXOPTS =
66
SPHINXBUILD = sphinx-build
7-
PAPER =
7+
SOURCEDIR = .
88
BUILDDIR = _build
99

10-
# Internal variables.
11-
PAPEROPT_a4 = -D latex_paper_size=a4
12-
PAPEROPT_letter = -D latex_paper_size=letter
13-
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
14-
15-
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
16-
10+
# Put it first so that "make" without argument is like "make help".
1711
help:
18-
@echo "Please use \`make <target>' where <target> is one of"
19-
@echo " html to make standalone HTML files"
20-
@echo " dirhtml to make HTML files named index.html in directories"
21-
@echo " singlehtml to make a single large HTML file"
22-
@echo " pickle to make pickle files"
23-
@echo " json to make JSON files"
24-
@echo " htmlhelp to make HTML files and a HTML help project"
25-
@echo " qthelp to make HTML files and a qthelp project"
26-
@echo " devhelp to make HTML files and a Devhelp project"
27-
@echo " epub to make an epub"
28-
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
29-
@echo " latexpdf to make LaTeX files and run them through pdflatex"
30-
@echo " text to make text files"
31-
@echo " man to make manual pages"
32-
@echo " changes to make an overview of all changed/added/deprecated items"
33-
@echo " linkcheck to check all external links for integrity"
34-
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
35-
36-
clean:
37-
-rm -rf $(BUILDDIR)/*
38-
39-
html:
40-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
41-
@echo
42-
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
43-
44-
dirhtml:
45-
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
46-
@echo
47-
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
48-
49-
singlehtml:
50-
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
51-
@echo
52-
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
53-
54-
pickle:
55-
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
56-
@echo
57-
@echo "Build finished; now you can process the pickle files."
58-
59-
json:
60-
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
61-
@echo
62-
@echo "Build finished; now you can process the JSON files."
63-
64-
htmlhelp:
65-
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
66-
@echo
67-
@echo "Build finished; now you can run HTML Help Workshop with the" \
68-
".hhp project file in $(BUILDDIR)/htmlhelp."
69-
70-
qthelp:
71-
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
72-
@echo
73-
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
74-
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
75-
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Flask-SQLAlchemy.qhcp"
76-
@echo "To view the help file:"
77-
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Flask-SQLAlchemy.qhc"
78-
79-
devhelp:
80-
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
81-
@echo
82-
@echo "Build finished."
83-
@echo "To view the help file:"
84-
@echo "# mkdir -p $$HOME/.local/share/devhelp/Flask-SQLAlchemy"
85-
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Flask-SQLAlchemy"
86-
@echo "# devhelp"
87-
88-
epub:
89-
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
90-
@echo
91-
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
92-
93-
latex:
94-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
95-
@echo
96-
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
97-
@echo "Run \`make' in that directory to run these through (pdf)latex" \
98-
"(use \`make latexpdf' here to do that automatically)."
99-
100-
latexpdf:
101-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
102-
@echo "Running LaTeX files through pdflatex..."
103-
make -C $(BUILDDIR)/latex all-pdf
104-
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
105-
106-
text:
107-
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
108-
@echo
109-
@echo "Build finished. The text files are in $(BUILDDIR)/text."
110-
111-
man:
112-
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
113-
@echo
114-
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
115-
116-
changes:
117-
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
118-
@echo
119-
@echo "The overview file is in $(BUILDDIR)/changes."
12+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
12013

121-
linkcheck:
122-
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
123-
@echo
124-
@echo "Link check complete; look for any errors in the above output " \
125-
"or in $(BUILDDIR)/linkcheck/output.txt."
14+
.PHONY: help Makefile
12615

127-
doctest:
128-
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
129-
@echo "Testing of doctests in the sources finished, look at the " \
130-
"results in $(BUILDDIR)/doctest/output.txt."
16+
# Catch-all target: route all unknown targets to Sphinx using the new
17+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
18+
%: Makefile
19+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/_templates/sidebarintro.html

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/_templates/sidebarlogo.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
Changes
2+
=======
3+
14
.. include:: ../CHANGES.rst

0 commit comments

Comments
 (0)