Chris McDonough
2012-01-04 ef4f39d31a74b875347fd7bd4fbce760915f05ce
Merge branch 'master' of github.com:Pylons/pyramid
3 files modified
10 ■■■■ changed files
docs/copyright.rst 2 ●●● patch | view | raw | blame | history
docs/narr/commandline.rst 6 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki/basiclayout.rst 2 ●●● patch | view | raw | blame | history
docs/copyright.rst
@@ -59,7 +59,7 @@
  Merickel, Eric Ongerth, Niall O'Higgins, Christoph Zwerschke, John
  Anderson, Atsushi Odagiri, Kirk Strauser, JD Navarro, Joe Dallago,
  Savoir-Faire Linux, Ćukasz Fidosz, Christopher Lambacher, Claus Conrad,
  Chris Beelby, Phil Jenvey and a number of people with only psuedonyms on
  Chris Beelby, Phil Jenvey and a number of people with only pseudonyms on
  GitHub.
Cover Designer:
docs/narr/commandline.rst
@@ -670,9 +670,9 @@
virtualenv when the distribution is installed, it's a convenient way to
package and distribute functionality that you can call from the command-line.
It's often more convenient to create a console script than it is to create a
``.py`` script and instruct people to call it with "the right Python
interpreter": because it generates a file that lives in ``bin``, when it's
invoked, it will always use "the right" Python environment, which means it
``.py`` script and instruct people to call it with the "right" Python
interpreter.  A console script generates a file that lives in ``bin``, and when it's
invoked it will always use the "right" Python environment, which means it
will always be invoked in an environment where all the libraries it needs
(such as Pyramid) are available.
docs/tutorials/wiki/basiclayout.rst
@@ -10,7 +10,7 @@
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/basiclayout/
<http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki/src/basiclayout/>`_.
Appplication Configuration with ``__init__.py``
Application Configuration with ``__init__.py``
------------------------------------------------
A directory on disk can be turned into a Python :term:`package` by containing