Chris McDonough
2012-01-05 f2ef9a3026723cabbfaeffd128d7b7a874f74002
Merge branch '1.3-branch' into pathinfogeddon
10 files modified
36 ■■■■ changed files
docs/copyright.rst 2 ●●● patch | view | raw | blame | history
docs/narr/commandline.rst 6 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/basiclayout.rst 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/authorization/setup.py 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/basiclayout/setup.py 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/models/setup.py 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/tests/setup.py 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/views/setup.py 4 ●●●● patch | view | raw | blame | history
docs/tutorials/wiki2/tests.rst 2 ●●● patch | view | raw | blame | history
pyramid/scaffolds/alchemy/setup.py_tmpl 4 ●●●● 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/wiki2/basiclayout.rst
@@ -145,7 +145,7 @@
As the result of this view configuration, when the pattern associated with
the view named ``home`` is matched during a request, the function named
``my_view`` will be executed.  The the function named ``my_view`` returns a
``my_view`` will be executed.  The function named ``my_view`` returns a
dictionary; the renderer will use the ``templates/mytemplate.pt`` template to
create a response based on the values in the dictionary.
docs/tutorials/wiki2/src/authorization/setup.py
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -17,9 +16,6 @@
    'docutils',
    'waitress',
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='tutorial',
      version='0.0',
docs/tutorials/wiki2/src/basiclayout/setup.py
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -16,9 +15,6 @@
    'zope.sqlalchemy',
    'waitress',
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='tutorial',
      version='0.0',
docs/tutorials/wiki2/src/models/setup.py
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -16,9 +15,6 @@
    'zope.sqlalchemy',
    'waitress',
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='tutorial',
      version='0.0',
docs/tutorials/wiki2/src/tests/setup.py
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -18,9 +17,6 @@
    'docutils',
    'WebTest', # add this
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='tutorial',
      version='0.0',
docs/tutorials/wiki2/src/views/setup.py
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -17,9 +16,6 @@
    'waitress',
    'docutils',
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='tutorial',
      version='0.0',
docs/tutorials/wiki2/tests.rst
@@ -55,7 +55,7 @@
.. literalinclude:: src/tests/setup.py
   :linenos:
   :language: python
   :lines: 10-19
   :lines: 9-20
After we've added a dependency on WebTest in ``setup.py``, we need to rerun
``setup.py develop`` to get WebTest installed into our virtualenv.  Assuming
pyramid/scaffolds/alchemy/setup.py_tmpl
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages
@@ -16,9 +15,6 @@
    'zope.sqlalchemy',
    'waitress',
    ]
if sys.version_info[:3] < (2,5,0):
    requires.append('pysqlite')
setup(name='{{project}}',
      version='0.0',