summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst4
-rw-r--r--docs/narr/firstapp.rst11
-rw-r--r--docs/narr/helloworld.py2
-rw-r--r--docs/narr/introduction.rst4
-rw-r--r--docs/narr/logging.rst2
-rw-r--r--docs/whatsnew-1.2.rst2
6 files changed, 12 insertions, 13 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 95ca1f20a..399b78cdf 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -920,7 +920,7 @@ Glossary
database information. :mod:`pyramid_debugtoolbar` is configured into
the ``development.ini`` of all applications which use a Pyramid
:term:`scaffold`. For more information, see
- https://docs.pylonsproject.org/projects/pyramid_debugtoolbar/dev/ .
+ http://docs.pylonsproject.org/projects/pyramid_debugtoolbar/dev/ .
scaffold
A project template that helps users get started writing a Pyramid
@@ -933,7 +933,7 @@ Glossary
used in production applications, because the logger can be configured to
log to a file, to UNIX syslog, to the Windows Event Log, or even to
email. See its `documentation
- <https://docs.pylonsproject.org/projects/pyramid_exclog/dev/>`_.
+ <http://docs.pylonsproject.org/projects/pyramid_exclog/dev/>`_.
console script
A script written to the ``bin`` (on UNIX, or ``Scripts`` on Windows)
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index ccc2b8b18..c082f616b 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -71,11 +71,10 @@ named ``hello_world``.
:linenos:
:pyobject: hello_world
-This function doesn't do anything very difficult. The functions accepts a
-single argument (``request``). The ``hello_world`` function returns an
-instance of the :class:`pyramid.response.Response`. The single argument to
-the class' constructor is value computed from arguments matched from the url
-route. This value becomes the body of the response.
+The function accepts a single argument (``request``) and it returns an
+instance of the :class:`pyramid.response.Response` class. The single
+argument to the class' constructor is a string computed from parameters
+matched from the URL. This value becomes the body of the response.
This function is known as a :term:`view callable`. A view callable
accepts a single argument, ``request``. It is expected to return a
@@ -157,7 +156,7 @@ Adding Configuration
:lines: 10-11
First line above calls the :meth:`pyramid.config.Configurator.add_route`
-method, which registers a :term:`route` to match any url path that begins
+method, which registers a :term:`route` to match any URL path that begins
with ``/hello/`` followed by a string.
The second line, ``config.add_view(hello_world, route_name='hello')``,
diff --git a/docs/narr/helloworld.py b/docs/narr/helloworld.py
index 93a403a13..7c26c8cdc 100644
--- a/docs/narr/helloworld.py
+++ b/docs/narr/helloworld.py
@@ -10,6 +10,6 @@ if __name__ == '__main__':
config.add_route('hello', '/hello/{name}')
config.add_view(hello_world, route_name='hello')
app = config.make_wsgi_app()
- server = make_server('0.0.0.0', 8080)
+ server = make_server('0.0.0.0', 8080, app)
server.serve_forever()
diff --git a/docs/narr/introduction.rst b/docs/narr/introduction.rst
index 2387db6a7..7c6ad00f3 100644
--- a/docs/narr/introduction.rst
+++ b/docs/narr/introduction.rst
@@ -219,7 +219,7 @@ that the Pyramid core doesn't. Add-on packages already exist which let you
easily send email, let you use the Jinja2 templating system, let you use
XML-RPC or JSON-RPC, let you integrate with jQuery Mobile, etc.
-Examples: https://docs.pylonsproject.org/docs/pyramid.html#pyramid-add-on-documentation
+Examples: http://docs.pylonsproject.org/docs/pyramid.html#pyramid-add-on-documentation
Class-based and function-based views
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -842,7 +842,7 @@ official narrative docs. In any case, the Pyramid documentation is
comprehensive.
Example: The rest of this documentation and the cookbook at
-https://docs.pylonsproject.org/projects/pyramid_cookbook/dev/ .
+http://docs.pylonsproject.org/projects/pyramid_cookbook/dev/ .
.. index::
single: Pylons Project
diff --git a/docs/narr/logging.rst b/docs/narr/logging.rst
index 5377d0c66..f9f72270f 100644
--- a/docs/narr/logging.rst
+++ b/docs/narr/logging.rst
@@ -291,7 +291,7 @@ Logging Exceptions
To log (or email) exceptions generated by your :app:`Pyramid` application,
use the :term:`pyramid_exclog` package. Details about its configuration are
in its `documentation
-<https://docs.pylonsproject.org/projects/pyramid_exclog/dev/>`_.
+<http://docs.pylonsproject.org/projects/pyramid_exclog/dev/>`_.
Request Logging with Paste's TransLogger
----------------------------------------
diff --git a/docs/whatsnew-1.2.rst b/docs/whatsnew-1.2.rst
index 49854a7e7..ea56cf52d 100644
--- a/docs/whatsnew-1.2.rst
+++ b/docs/whatsnew-1.2.rst
@@ -63,7 +63,7 @@ Scaffolding Changes
package at all; configuration in the ``production.ini`` file which used to
require its ``error_catcher`` middleware has been removed. Configuring
error catching / email sending is now the domain of the ``pyramid_exclog``
- package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
+ package (see http://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
- All scaffolds now send the ``cache_max_age`` parameter to the
``add_static_view`` method.