Tshepang Lekhonkhobe
2013-09-16 b0b28ede912c817a62a84b97c332e39eda02d166
s/env/venv just for sake of consistency
24 files modified
186 ■■■■ changed files
docs/quick_tour.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authentication.rst 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authorization.rst 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/databases.rst 10 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/debugtoolbar.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/forms.rst 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/functional_testing.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/hello_world.rst 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/ini.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/jinja2.rst 10 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/json.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/logging.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/more_view_classes.rst 6 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/package.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/python_setup.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/request_response.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/routing.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/scaffolds.rst 10 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/sessions.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/static_assets.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/templating.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/unit_testing.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/view_classes.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/views.rst 8 ●●●● patch | view | raw | blame | history
docs/quick_tour.rst
@@ -25,9 +25,9 @@
.. code-block:: bash
  $ pyvenv-3.3 env33
  $ source env33/bin/activate
  $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
  $ pyvenv-3.3 venv
  $ source venv/bin/activate
  (venv)$ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
If ``wget`` complains with a certificate error, run it with:
@@ -37,7 +37,7 @@
In these steps above we first made a :term:`virtualenv` and then
"activated"  it, which adjusted our path to look first in
``env33/bin`` for commands (such as ``python``). We next downloaded
``venv/bin`` for commands (such as ``python``). We next downloaded
Python's packaging support and installed it, giving us the
``easy_install`` command-line script for adding new packages. Python
2.7 users will need to use ``virtualenv`` instead of ``pyvenv`` to make
docs/quick_tutorial/authentication.rst
@@ -32,8 +32,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes authentication; cd authentication
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes authentication; cd authentication
    (venv)$ python setup.py develop
#. Put the security hash in the ``authentication/development.ini``
   configuration file as ``tutorial.secret`` instead of putting it in
@@ -77,7 +77,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in a browser.
docs/quick_tutorial/authorization.rst
@@ -37,8 +37,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r authentication authorization; cd authorization
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r authentication authorization; cd authorization
    (venv)$ python setup.py develop
#. Start by changing ``authorization/tutorial/__init__.py`` to
   specify a root factory to the :term:`configurator`:
@@ -62,7 +62,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in a browser.
docs/quick_tutorial/databases.rst
@@ -41,7 +41,7 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r forms databases; cd databases
    (venv)$ cd ..; cp -r forms databases; cd databases
#. We need to add some dependencies in ``databases/setup.py`` as well
   as an "entry point" for the command-line script:
@@ -75,7 +75,7 @@
   .. code-block:: bash
    (env)$ python setup.py develop
    (venv)$ python setup.py develop
#. The script references some models in ``databases/tutorial/models.py``:
@@ -86,7 +86,7 @@
   .. code-block:: bash
    (env)$ initialize_tutorial_db development.ini
    (venv)$ initialize_tutorial_db development.ini
    2013-09-06 15:54:08,050 INFO  [sqlalchemy.engine.base.Engine][MainThread] PRAGMA table_info("wikipages")
    2013-09-06 15:54:08,050 INFO  [sqlalchemy.engine.base.Engine][MainThread] ()
    2013-09-06 15:54:08,051 INFO  [sqlalchemy.engine.base.Engine][MainThread]
@@ -113,7 +113,7 @@
    .. code-block:: bash
        (env)$ nosetests .
        (venv)$ nosetests .
        ..
        -----------------------------------------------------------------
        Ran 2 tests in 1.141s
@@ -124,7 +124,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in a browser.
docs/quick_tutorial/debugtoolbar.rst
@@ -33,9 +33,9 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r ini debugtoolbar; cd debugtoolbar
    (env)$ python setup.py develop
    (env)$ easy_install pyramid_debugtoolbar
    (venv)$ cd ..; cp -r ini debugtoolbar; cd debugtoolbar
    (venv)$ python setup.py develop
    (venv)$ easy_install pyramid_debugtoolbar
#. Our ``debugtoolbar/development.ini`` gets a configuration entry for
@@ -49,7 +49,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in your browser. See the handy
   toolbar on the right.
docs/quick_tutorial/forms.rst
@@ -36,7 +36,7 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes forms; cd forms
    (venv)$ cd ..; cp -r view_classes forms; cd forms
#. Let's edit ``forms/setup.py`` to declare a dependency on Deform
   (which then pulls in Colander as a dependency:
@@ -48,7 +48,7 @@
   .. code-block:: bash
      (env)$ python setup.py develop
      (venv)$ python setup.py develop
#. Register a static view in ``forms/tutorial/__init__.py`` for
   Deform's CSS/JS etc. as well as our demo wikipage scenario's
@@ -88,7 +88,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in a browser.
docs/quick_tutorial/functional_testing.rst
@@ -31,9 +31,9 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r unit_testing functional_testing; cd functional_testing
    (env)$ python setup.py develop
    (env)$ easy_install webtest
    (venv)$ cd ..; cp -r unit_testing functional_testing; cd functional_testing
    (venv)$ python setup.py develop
    (venv)$ easy_install webtest
#. Let's extend ``unit_testing/tutorial/tests.py`` to include a
   functional test:
@@ -46,7 +46,7 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
    .
    ----------------------------------------------------------------------
    Ran 2 tests in 0.141s
docs/quick_tutorial/hello_world.rst
@@ -46,7 +46,7 @@
   .. code-block:: bash
    (env)$ mkdir hello_world; cd hello_world
    (venv)$ mkdir hello_world; cd hello_world
#. Copy the following into ``hello_world/app.py``:
@@ -57,7 +57,7 @@
   .. code-block:: bash
    (env)$ python app.py
    (venv)$ python app.py
#. Open ``http://localhost:6543/`` in your browser.
docs/quick_tutorial/ini.rst
@@ -35,7 +35,7 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r package ini; cd ini
    (venv)$ cd ..; cp -r package ini; cd ini
#. Our ``ini/setup.py`` needs a setuptools "entry point" in the
   ``setup()`` function:
@@ -48,7 +48,7 @@
   .. code-block:: bash
    (env)$ python setup.py develop
    (venv)$ python setup.py develop
#. Let's make a file ``ini/development.ini`` for our configuration:
@@ -66,13 +66,13 @@
   .. code-block:: bash
    (env)$ rm tutorial/app.py
    (venv)$ rm tutorial/app.py
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/``.
docs/quick_tutorial/jinja2.rst
@@ -23,9 +23,9 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes jinja2; cd jinja2
    (env)$ python setup.py develop
    (env)$ easy_install pyramid_jinja2
    (venv)$ cd ..; cp -r view_classes jinja2; cd jinja2
    (venv)$ python setup.py develop
    (venv)$ easy_install pyramid_jinja2
#. We need to add an item to ``pyramid.includes`` in
   ``jinja2/development.ini``:
@@ -54,13 +54,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in your browser.
docs/quick_tutorial/json.rst
@@ -28,8 +28,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes json; cd json
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes json; cd json
    (venv)$ python setup.py develop
#. We add a new route for ``hello_json`` in
   ``json/tutorial/__init__.py``:
@@ -53,13 +53,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/howdy.json`` in your browser and you
   will see the resulting JSON response.
docs/quick_tutorial/logging.rst
@@ -32,8 +32,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes logging; cd logging
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes logging; cd logging
    (venv)$ python setup.py develop
#. Extend ``logging/tutorial/views.py`` to log a message:
@@ -44,13 +44,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` and ``http://localhost:6543/howdy``
   in your browser. Note, both in the console and in the debug
docs/quick_tutorial/more_view_classes.rst
@@ -55,8 +55,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r templating more_view_classes; cd more_view_classes
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r templating more_view_classes; cd more_view_classes
    (venv)$ python setup.py develop
#. Our route in ``more_view_classes/tutorial/__init__.py`` needs some
   replacement patterns:
@@ -98,7 +98,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/howdy/jane/doe`` in your browser. Click
   the ``Save`` and ``Delete`` buttons and watch the output in the
docs/quick_tutorial/package.rst
@@ -56,7 +56,7 @@
   .. code-block:: bash
    (env)$ cd ..; mkdir package; cd package
    (venv)$ cd ..; mkdir package; cd package
#. In ``package/setup.py``, enter the following:
@@ -67,8 +67,8 @@
   .. code-block:: bash
    (env)$ python setup.py develop
    (env)$ mkdir tutorial
    (venv)$ python setup.py develop
    (venv)$ mkdir tutorial
#. Enter the following into ``package/tutorial/__init__.py``:
@@ -82,7 +82,7 @@
   .. code-block:: bash
    (env)$ python tutorial/app.py
    (venv)$ python tutorial/app.py
#. Open ``http://localhost:6543/`` in your browser.
docs/quick_tutorial/python_setup.rst
@@ -14,9 +14,9 @@
.. code-block:: bash
  $ pyvenv-3.3 env33
  $ source env33/bin/activate
  $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
  $ pyvenv-3.3 venv
  $ source env/bin/activate
  (venv)$ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | python
If ``wget`` complains with a certificate error, run it with:
@@ -26,7 +26,7 @@
In these steps above we first made a :term:`virtualenv` and then
"activated"  it, which adjusted our path to look first in
``env33/bin`` for commands (such as ``python``). We next downloaded
``venv/bin`` for commands (such as ``python``). We next downloaded
Python's packaging support and installed it, giving us the
``easy_install`` command-line script for adding new packages. Python
2.7 users will need to use ``virtualenv`` instead of ``pyvenv`` to make
docs/quick_tutorial/request_response.rst
@@ -38,8 +38,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes request_response; cd request_response
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes request_response; cd request_response
    (venv)$ python setup.py develop
#. Simplify the routes in ``request_response/tutorial/__init__.py``:
@@ -57,13 +57,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in your browser. You will be
   redirected to ``http://localhost:6543/plain``
docs/quick_tutorial/routing.rst
@@ -45,8 +45,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes routing; cd routing
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes routing; cd routing
    (venv)$ python setup.py develop
#. Our ``routing/tutorial/__init__.py`` needs a route with a replacement
   pattern:
@@ -74,13 +74,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/howdy/amy/smith`` in your browser.
docs/quick_tutorial/scaffolds.rst
@@ -33,7 +33,7 @@
    .. code-block:: bash
        (env)$ pcreate --list
        (venv)$ pcreate --list
        Available scaffolds:
          alchemy:                 Pyramid SQLAlchemy project using url dispatch
          starter:                 Pyramid starter project
@@ -43,21 +43,21 @@
    .. code-block:: bash
        (env)$ pcreate --scaffold starter scaffolds
        (venv)$ pcreate --scaffold starter scaffolds
#. Use normal Python development to setup our project for development:
    .. code-block:: bash
        (env)$ cd scaffolds
        (env)$ python setup.py develop
        (venv)$ cd scaffolds
        (venv)$ python setup.py develop
#. Startup the application by pointing Pyramid's ``pserve`` command at
   the project's (generated) configuration file:
    .. code-block:: bash
        (env)$ pserve development.ini --reload
        (venv)$ pserve development.ini --reload
   On startup, ``pserve`` logs some output:
docs/quick_tutorial/sessions.rst
@@ -31,8 +31,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes sessions; cd sessions
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes sessions; cd sessions
    (venv)$ python setup.py develop
#. Our ``sessions/tutorial/__init__.py`` needs a choice of session
   factory to get registered with the :term:`configurator`:
@@ -56,13 +56,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` and ``http://localhost:6543/howdy``
   in your browser. As you reload and switch between those URLs, note
docs/quick_tutorial/static_assets.rst
@@ -20,8 +20,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r view_classes static_assets; cd static_assets
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r view_classes static_assets; cd static_assets
    (venv)$ python setup.py develop
#. We add a call ``config.add_static_view in
   ``static_assets/tutorial/__init__.py``:
@@ -45,13 +45,13 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
#. Run your Pyramid application with:
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` in your browser.
docs/quick_tutorial/templating.rst
@@ -36,8 +36,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r views templating; cd templating
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r views templating; cd templating
    (venv)$ python setup.py develop
#. Our ``templating/tutorial/views.py`` no longer has HTML in it:
@@ -66,7 +66,7 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
    .
    ----------------------------------------------------------------------
    Ran 4 tests in 0.141s
@@ -77,7 +77,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` and ``http://localhost:6543/howdy``
   in your browser.
docs/quick_tutorial/unit_testing.rst
@@ -45,9 +45,9 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r debugtoolbar unit_testing; cd unit_testing
    (env)$ python setup.py develop
    (env)$ easy_install nose
    (venv)$ cd ..; cp -r debugtoolbar unit_testing; cd unit_testing
    (venv)$ python setup.py develop
    (venv)$ easy_install nose
#. Now we write a simple unit test in ``unit_testing/tutorial/tests.py``:
@@ -59,7 +59,7 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
    .
    ----------------------------------------------------------------------
    Ran 1 test in 0.141s
docs/quick_tutorial/view_classes.rst
@@ -39,8 +39,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r templating view_classes; cd view_classes
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r templating view_classes; cd view_classes
    (venv)$ python setup.py develop
#. Our ``view_classes/tutorial/views.py`` now has a view class with
   our two views:
@@ -60,7 +60,7 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
    .
    ----------------------------------------------------------------------
    Ran 4 tests in 0.141s
@@ -71,7 +71,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` and ``http://localhost:6543/howdy``
   in your browser.
docs/quick_tutorial/views.rst
@@ -40,8 +40,8 @@
   .. code-block:: bash
    (env)$ cd ..; cp -r function_testing views; cd views
    (env)$ python setup.py develop
    (venv)$ cd ..; cp -r function_testing views; cd views
    (venv)$ python setup.py develop
#. Our ``views/tutorial/__init__.py`` gets a lot shorter:
@@ -64,7 +64,7 @@
   .. code-block:: bash
    (env)$ nosetests tutorial
    (venv)$ nosetests tutorial
    .
    ----------------------------------------------------------------------
    Ran 4 tests in 0.141s
@@ -75,7 +75,7 @@
   .. code-block:: bash
    (env)$ pserve development.ini --reload
    (venv)$ pserve development.ini --reload
#. Open ``http://localhost:6543/`` and ``http://localhost:6543/howdy``
   in your browser.