Skip to content

Commit

Permalink
Merge pull request #3579 from stevepiercy/1.10-branch
Browse files Browse the repository at this point in the history
Backport #3577
  • Loading branch information
digitalresistor committed May 7, 2020
2 parents aad9921 + f1ad155 commit 5d68745
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion docs/api/request.rst
Expand Up @@ -14,7 +14,8 @@
model_url, resource_url, resource_path, set_property,
effective_principals, authenticated_userid,
unauthenticated_userid, has_permission,
invoke_exception_view
invoke_exception_view, localizer, response, session,
json_body

.. attribute:: context

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -384,9 +384,9 @@ def app_role(role, rawtext, text, lineno, inliner, options={}, content=[]):

def setup(app):
app.add_role('app', app_role)
app.add_directive('frontmatter', FrontMatter, 1, (0, 0, 0))
app.add_directive('mainmatter', MainMatter, 1, (0, 0, 0))
app.add_directive('backmatter', BackMatter, 1, (0, 0, 0))
app.add_directive('frontmatter', FrontMatter)
app.add_directive('mainmatter', MainMatter)
app.add_directive('backmatter', BackMatter)
app.connect('autodoc-process-signature', resig)


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -23,4 +23,4 @@ ignore =
*.egg-info/*
ignore-default-rules = true
ignore-bad-ideas =
tests/pkgs/localeapp/*
tests/pkgs/localeapp/**/*.mo
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -66,15 +66,15 @@ deps =
basepython = python3.5
whitelist_externals = make
commands =
make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E"
make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E -D suppress_warnings=ref.term"
extras =
docs

[testenv:pdf]
basepython = python3.5
whitelist_externals = make
commands =
make -C docs latexpdf BUILDDIR={envdir} "SPHINXOPTS=-W -E"
make -C docs latexpdf BUILDDIR={envdir} "SPHINXOPTS=-W -E -D suppress_warnings=ref.term"
extras =
docs

Expand Down

0 comments on commit 5d68745

Please sign in to comment.