diff options
| author | Chris McDonough <chrism@plope.com> | 2012-07-28 23:03:34 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-07-28 23:03:34 -0400 |
| commit | 9b163141a31d3874e4f2e855e02ab072fa5b090f (patch) | |
| tree | 8027ef04a07bd0c01f60d347d8fca2ec4d8acc7c /docs | |
| parent | e652518e00cde05b55b065196a460efd9bc86e32 (diff) | |
| parent | 14f9fe44ec75c055d89374a7852e1ca2af0ff31c (diff) | |
| download | pyramid-9b163141a31d3874e4f2e855e02ab072fa5b090f.tar.gz pyramid-9b163141a31d3874e4f2e855e02ab072fa5b090f.tar.bz2 pyramid-9b163141a31d3874e4f2e855e02ab072fa5b090f.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorials/modwsgi/index.rst | 11 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/design.rst | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/docs/tutorials/modwsgi/index.rst b/docs/tutorials/modwsgi/index.rst index e070f8eda..d11167344 100644 --- a/docs/tutorials/modwsgi/index.rst +++ b/docs/tutorials/modwsgi/index.rst @@ -73,9 +73,10 @@ commands and files. .. code-block:: python - from pyramid.paster import get_app - application = get_app( - '/Users/chrism/modwsgi/env/myapp/production.ini', 'main') + from pyramid.paster import get_app, setup_logging + ini_path = '/Users/chrism/modwsgi/env/myapp/production.ini' + setup_logging(ini_path) + application = get_app(ini_path, 'main') The first argument to ``get_app`` is the project configuration file name. It's best to use the ``production.ini`` file provided by your @@ -85,6 +86,10 @@ commands and files. ``application`` is important: mod_wsgi requires finding such an assignment when it opens the file. + The call to ``setup_logging`` initializes the standard library's + `logging` module to allow logging within your application. + See :ref:`logging_config`. + #. Make the ``pyramid.wsgi`` script executable. .. code-block:: text diff --git a/docs/tutorials/wiki2/design.rst b/docs/tutorials/wiki2/design.rst index 2e6fc0e77..deaf32ef6 100644 --- a/docs/tutorials/wiki2/design.rst +++ b/docs/tutorials/wiki2/design.rst @@ -20,7 +20,7 @@ Models We'll be using a SQLite database to hold our wiki data, and we'll be using :term:`SQLAlchemy` to access the data in this database. -Within the database, we define a single table named `tables`, whose elements +Within the database, we define a single table named `pages`, whose elements will store the wiki pages. There are two columns: `name` and `data`. URLs like ``/PageName`` will try to find an element in |
