diff options
| author | Michael Merickel <michael@merickel.org> | 2011-04-19 01:32:28 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2011-04-20 05:05:40 -0500 |
| commit | a1d8c03490bcd7cb00372170c4e9c67ea9af5ce3 (patch) | |
| tree | f329cbeb0896978bc3e42cba543dece0e0e5c73e /docs/narr/assets.rst | |
| parent | 99d2d26e9c817b6a7f59bfe0f367d76438287ec7 (diff) | |
| download | pyramid-a1d8c03490bcd7cb00372170c4e9c67ea9af5ce3.tar.gz pyramid-a1d8c03490bcd7cb00372170c4e9c67ea9af5ce3.tar.bz2 pyramid-a1d8c03490bcd7cb00372170c4e9c67ea9af5ce3.zip | |
Converting docs to deprecate view parameters in config.add_route.
Diffstat (limited to 'docs/narr/assets.rst')
| -rw-r--r-- | docs/narr/assets.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/narr/assets.rst b/docs/narr/assets.rst index bbb673ecc..8d0e7058c 100644 --- a/docs/narr/assets.rst +++ b/docs/narr/assets.rst @@ -341,7 +341,8 @@ application's startup code. # .. every other add_route declaration should come # before this one, as it will, by default, catch all requests - config.add_route('catchall_static', '/*subpath', 'myapp.static.static_view') + config.add_route('catchall_static', '/*subpath') + config.add_view('myapp.static.static_view', route_name='catchall_static') The special name ``*subpath`` above is used by the :class:`~pyramid.view.static` view callable to signify the path of the file @@ -384,8 +385,8 @@ Or you might register it to be the view callable for a particular route: .. code-block:: python :linenos: - config.add_route('favicon', '/favicon.ico', - view='myapp.views.favicon_view') + config.add_route('favicon', '/favicon.ico') + config.add_view('myapp.views.favicon_view', route_name='favicon') Because this is a simple view callable, it can be protected with a :term:`permission` or can be configured to respond under different |
