diff options
| author | Chris McDonough <chrism@plope.com> | 2011-12-10 13:41:30 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-12-10 13:41:30 -0500 |
| commit | 0115f3cee78c3b99e517b89ea288b4f6f3213a68 (patch) | |
| tree | e6b597c68a863ecdf4068e7c3ffbc6544bf28df0 | |
| parent | 4fd5ec74ce73cee2abd3b366252036214fe65645 (diff) | |
| parent | a0c21d041789eb85ff3f823303012ec45e2325a1 (diff) | |
| download | pyramid-0115f3cee78c3b99e517b89ea288b4f6f3213a68.tar.gz pyramid-0115f3cee78c3b99e517b89ea288b4f6f3213a68.tar.bz2 pyramid-0115f3cee78c3b99e517b89ea288b4f6f3213a68.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
| -rw-r--r-- | docs/whatsnew-1.3.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst index 7b485a725..9c6cc5804 100644 --- a/docs/whatsnew-1.3.rst +++ b/docs/whatsnew-1.3.rst @@ -24,7 +24,7 @@ of Jython and the Python 2.5 version of Google App Engine. We could not easily "straddle" Python 2 and 3 versions and support Python 2 versions older than Python 2.6. You will need Python 2.6 or better to run this version of Pyramid. If you need to use Pyramid on Python 2.5, you should use the most -recent 1.2.X release fo Pyramid there. +recent 1.2.X release of Pyramid there. Though many Pyramid add-ons have releases which are already Python 3 compatible (in particular ``pyramid_debugtoolbar``, ``pyramid_jinja2``, @@ -47,14 +47,14 @@ to make some changes: Previously (in Pyramid 1.0, 1.1 and 1.2), you created a Pyramid application using ``paster create``, like so:: - $myvenv/bin/paster create -t pyramid_starter foo + $ myvenv/bin/paster create -t pyramid_starter foo You're now instead required to create an application using ``pcreate`` like so:: - $myvenv/bin/pcreate -s starter foo + $ myvenv/bin/pcreate -s starter foo -Note that the names of available scaffolds have changed the and flags +Note that the names of available scaffolds have changed and the flags supported by ``pcreate`` are different than those that were supported by ``paster create``. @@ -73,11 +73,11 @@ Analogues of ``paster pshell``, ``paster pviews`` and ``paster ptweens`` also exist under the respective console script names ``pshell``, ``pviews``, and ``ptweens``. -We've replaced use of the Paste http server with the ``wsgiref`` server in +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 ``development.ini`` and ``production.ini`` will have the following line:: - use = egg:pyramid#wsgref + use = egg:pyramid#wsgiref Instead of this (which was the default in older versions):: @@ -86,7 +86,7 @@ Instead of this (which was the default in older versions):: Using ``wsgiref`` as the default WSGI server is purely a default to make it possible to use the same scaffolding under Python 2 and Python 3; people running Pyramid under Python 2 can still manually install ``Paste`` and use -the Paste httpserver by replacing the former line with the latter. This is +the Paste ``httpserver`` by replacing the former line with the latter. This is 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. @@ -133,7 +133,7 @@ Minor Feature Additions - ``bpython`` interpreter compatibility in ``pshell``. See :ref:`ipython_or_bpython` for more information. -- Added :func:`pyramid.paster.get_appsettings`` API function. This function +- Added :func:`pyramid.paster.get_appsettings` API function. This function returns the settings defined within an ``[app:...]`` section in a PasteDeploy ``ini`` file. |
