diff options
| author | Chris McDonough <chrism@plope.com> | 2011-12-15 21:36:19 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-12-15 21:36:19 -0500 |
| commit | 63f7a19b58738b8fe5fbe82f362825fa53ddc0d2 (patch) | |
| tree | ae76a8285e901994ba62802b639802d2de2e0b0e /docs/whatsnew-1.3.rst | |
| parent | 8e615c4f433c4df9b694c6452f793ed4763434ff (diff) | |
| parent | 61838b76639d6dcf9facd549841a2ed0d07ea012 (diff) | |
| download | pyramid-63f7a19b58738b8fe5fbe82f362825fa53ddc0d2.tar.gz pyramid-63f7a19b58738b8fe5fbe82f362825fa53ddc0d2.tar.bz2 pyramid-63f7a19b58738b8fe5fbe82f362825fa53ddc0d2.zip | |
Merge branch '1.3-branch'
Diffstat (limited to 'docs/whatsnew-1.3.rst')
| -rw-r--r-- | docs/whatsnew-1.3.rst | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst index 28c161ad0..8dd3c3cdb 100644 --- a/docs/whatsnew-1.3.rst +++ b/docs/whatsnew-1.3.rst @@ -76,12 +76,14 @@ command:: The ``ini`` configuration file format supported by Pyramid has not changed. As a result, Python 2-only users can install PasteScript manually and use -``paster serve`` and ``paster create`` instead if they like. However, using -``pserve`` and ``pcreate`` will work under both Python 2 and Python 3. +``paster serve`` instead if they like. However, using ``pserve`` will work +under both Python 2 and Python 3. ``pcreate`` is required to be used for +internal Pyramid scaffolding; externally distributed scaffolding may allow +for both ``pcreate`` and/or ``paster create``. -Analogues of ``paster pshell``, ``paster pviews`` and ``paster ptweens`` also -exist under the respective console script names ``pshell``, ``pviews``, and -``ptweens``. +Analogues of ``paster pshell``, ``paster pviews``, ``paster request`` and +``paster ptweens`` also exist under the respective console script names +``pshell``, ``pviews``, ``prequest`` and ``ptweens``. We've replaced use of the Paste ``httpserver`` with the ``wsgiref`` server in the scaffolds, so once you create a project from a scaffold, its @@ -101,6 +103,10 @@ actually recommended if you rely on proxying from Apache or Nginx to a ``pserve`` -invoked application. **The wsgiref server is not a production quality server.** See :ref:`alternate_wsgi_server` for more information. +New releases in every older major Pyramid series (1.0.2, 1.1.3, 1.2.5) also +have the ``egg:pyramid#wsgiref`` entry point, so scaffold-writers can depend +on it being there even in older major Pyramid versions. + .. warning:: Previously, paste.httpserver "helped" by converting header values that weren't @@ -286,6 +292,16 @@ Documentation Enhancements - A narrative documentation chapter named :ref:`using_introspection` was added. It describes how to query the introspection system. +- Added an API docs chapter for :mod:`pyramid.scaffolds`. + +- Added a narrative docs chapter named :ref:`scaffolding_chapter`. + +- Added a description of the ``prequest`` command-line script at + :ref:`invoking_a_request`. + +- Added a section to the "Command-Line Pyramid" chapter named + :ref:`making_a_console_script`. + Dependency Changes ------------------ |
