Skip to content

Commit

Permalink
Merge pull request #926 from stevepiercy/master
Browse files Browse the repository at this point in the history
Add "Before You Begin"; fix whitespace in CHANGES.txt so it builds
  • Loading branch information
mcdonc committed Mar 20, 2013
2 parents 5075c8c + 07c189d commit c31a81c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Expand Up @@ -36,26 +36,32 @@ Bug Fixes
.. code-block:: python

class IResource(Interface):

...

@view_config(context=IResource)
def get(context, request):

...

@view_config(context=IResource, request_method='POST')
def post(context, request):

...

@view_config(context=IResource, request_method='DELETE')
def delete(context, request):

...

@implementor(IResource)
class MyResource:

...

@view_config(context=MyResource, request_method='POST')
def override_post(context, request):

...

Previously the override_post view registration would hide the get
Expand Down
21 changes: 15 additions & 6 deletions docs/tutorials/wiki2/installation.rst
Expand Up @@ -2,13 +2,23 @@
Installation
============

Preparation
===========
Before You Begin
================

Installation Requirements
-------------------------

Follow the steps in :ref:`installing_chapter`, but name the virtualenv
directory ``pyramidtut``.
directory ``pyramidtut``. Following these steps will ensure you have met the
following requirements:

Preparation, UNIX
* Python interpreter is installed on your operating system
* :term:`setuptools` or :term:`distribute` is installed
* :term:`virtualenv` is installed
* a virtual Python environment named ``pyramidtut`` has been created
* Pyramid is installed

UNIX Requirements
-----------------

#. Install SQLite3 and its development packages if you don't already
Expand All @@ -25,8 +35,7 @@ Preparation, UNIX
$ cd pyramidtut
Preparation, Windows
Windows Requirements
--------------------

#. Switch to the ``pyramidtut`` directory:
Expand Down

0 comments on commit c31a81c

Please sign in to comment.