summaryrefslogtreecommitdiff
path: root/docs/narr/startup.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-30 04:30:57 -0400
committerChris McDonough <chrism@plope.com>2011-07-30 04:30:57 -0400
commitd8c76559cf0d8775aa2c46d62b94100528fb8a7f (patch)
tree9af038c2dadf42226c11fc1c9531011af64fa99d /docs/narr/startup.rst
parent6aafc53c0ee74c2a568fb4d36f5eaab968126088 (diff)
parent875ded31e7fdd0c85d1c91458248581b9dd729d7 (diff)
downloadpyramid-d8c76559cf0d8775aa2c46d62b94100528fb8a7f.tar.gz
pyramid-d8c76559cf0d8775aa2c46d62b94100528fb8a7f.tar.bz2
pyramid-d8c76559cf0d8775aa2c46d62b94100528fb8a7f.zip
Merge branch 'feature.settings-prefix'
Diffstat (limited to 'docs/narr/startup.rst')
-rw-r--r--docs/narr/startup.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/narr/startup.rst b/docs/narr/startup.rst
index 68df9d417..c9ed01f83 100644
--- a/docs/narr/startup.rst
+++ b/docs/narr/startup.rst
@@ -92,10 +92,10 @@ Here's a high-level time-ordered overview of what happens when you press
In this case, the ``myproject.__init__:main`` function referred to by the
entry point URI ``egg:MyProject`` (see :ref:`MyProject_ini` for more
information about entry point URIs, and how they relate to callables),
- will receive the key/value pairs ``{'reload_templates':'true',
- 'debug_authorization':'false', 'debug_notfound':'false',
- 'debug_routematch':'false', 'debug_templates':'true',
- 'default_locale_name':'en'}``.
+ will receive the key/value pairs ``{'pyramid.reload_templates':'true',
+ 'pyramid.debug_authorization':'false', 'pyramid.debug_notfound':'false',
+ 'pyramid.debug_routematch':'false', 'pyramid.debug_templates':'true',
+ 'pyramid.default_locale_name':'en'}``.
#. The ``main`` function first constructs a
:class:`~pyramid.config.Configurator` instance, passing a root resource
@@ -109,8 +109,8 @@ Here's a high-level time-ordered overview of what happens when you press
The ``settings`` dictionary contains all the options in the
``[app:MyProject]`` section of our .ini file except the ``use`` option
- (which is internal to Paste) such as ``reload_templates``,
- ``debug_authorization``, etc.
+ (which is internal to Paste) such as ``pyramid.reload_templates``,
+ ``pyramid.debug_authorization``, etc.
#. The ``main`` function then calls various methods on the instance of the
class :class:`~pyramid.config.Configurator` created in the previous step.