summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py3
-rw-r--r--docs/glossary.rst10
-rw-r--r--docs/narr/startup.rst4
-rw-r--r--docs/tutorials/wiki2/design.rst8
4 files changed, 14 insertions, 11 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 69d00cdaa..6662b1b43 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -65,6 +65,9 @@ intersphinx_mapping = {
None),
'venusian':
('http://docs.pylonsproject.org/projects/venusian/en/latest', None),
+ 'toolbar':
+ ('http://docs.pylonsproject.org/projects/pyramid_debugtoolbar/en/latest',
+ None),
}
# Add any paths that contain templates here, relative to this directory.
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 1b7a5f307..3a732e853 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -901,9 +901,9 @@ Glossary
The scaffold has been retired but the demo plays a similar role.
Pyramid Cookbook
- An additional documentation resource for Pyramid which presents topical,
- practical usages of Pyramid available via
- http://docs.pylonsproject.org/ .
+ Additional documentation for Pyramid which presents topical,
+ practical uses of Pyramid:
+ http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest.
distutils
The standard system for packaging and distributing Python packages. See
@@ -932,12 +932,12 @@ Glossary
:ref:`registering_tweens`.
pyramid_debugtoolbar
- A Pyramid add on which displays a helpful debug toolbar "on top of" HTML
+ A Pyramid add-on which displays a helpful debug toolbar "on top of" HTML
pages rendered by your application, displaying request, routing, and
database information. :mod:`pyramid_debugtoolbar` is configured into
the ``development.ini`` of all applications which use a Pyramid
:term:`scaffold`. For more information, see
- http://docs.pylonsproject.org/projects/pyramid_debugtoolbar/dev/ .
+ http://docs.pylonsproject.org/projects/pyramid_debugtoolbar/en/latest/.
scaffold
A project template that generates some of the major parts of a Pyramid
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index 3a9225032..1affa1758 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -8,12 +8,12 @@ you'll see something much like this show up on the console:
.. code-block:: text
- $ pserve myproject/MyProject.ini
+ $ pserve development.ini
Starting server in PID 16601.
serving on 0.0.0.0:6543 view at http://127.0.0.1:6543
This chapter explains what happens between the time you press the "Return"
-key on your keyboard after typing ``pserve myproject/MyProject.ini``
+key on your keyboard after typing ``pserve development.ini``
and the time the line ``serving on 0.0.0.0:6543 ...`` is output to your
console.
diff --git a/docs/tutorials/wiki2/design.rst b/docs/tutorials/wiki2/design.rst
index c56d7fecf..df2c83398 100644
--- a/docs/tutorials/wiki2/design.rst
+++ b/docs/tutorials/wiki2/design.rst
@@ -100,7 +100,7 @@ listed in the following table:
| | with existing | | | |
| | content. | | | |
| | | | | |
-| | If the form was | | | |
+| | If the form is | | | |
| | submitted, redirect | | | |
| | to /PageName | | | |
+----------------------+-----------------------+-------------+------------+------------+
@@ -110,15 +110,15 @@ listed in the following table:
| | the edit form | | | |
| | without content. | | | |
| | | | | |
-| | If the form was | | | |
+| | If the form is | | | |
| | submitted, | | | |
| | redirect to | | | |
| | /PageName | | | |
+----------------------+-----------------------+-------------+------------+------------+
| /login | Display login form, | login | login.pt | |
-| | Forbidden [3]_ | | | |
+| | Forbidden [3]_ | | | |
| | | | | |
-| | If the form was | | | |
+| | If the form is | | | |
| | submitted, | | | |
| | authenticate. | | | |
| | | | | |