Changeset 3837

Show
Ignore:
Timestamp:
12/18/07 14:40:10 (1 year ago)
Author:
carndt
Message:

Formatting/Grammar fixes for INSTALL.txt and hint how to get mercurial

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/INSTALL.txt

    r3675 r3837  
    22=============================== 
    33 
    4 .. Note:: At current stage TurboGears2 is available testing by developers 
     4.. note:: At current stage TurboGears2 is available for testing by developers 
    55    who are willing to use Subversion to track the latest changes. 
     6 
    67 
    78Requirements 
    89------------ 
     10 
    911While in Development there are several dependencies: 
    1012 
    11     * Python, version >= 2.4. 
    12         + Please keep in mind, that for RPM-based systems you will also need 
    13         python-devel and python-xml packages. 
    14         + You may need python-dev and python-setuptools in ubuntu 
    15     * Pylons Trunk checkout. 
    16         We require the development version is preferable since there are important 
    17         controller features which we need, as well as a template rendering bugfix 
    18         which is nessisary for TurboJSON to work properly. 
     13* Python, version >= 2.4. 
    1914 
    20 Installing TurboGears2 
     15    + Please keep in mind, that for RPM-based systems you will also need 
     16      ``python-devel`` and ``python-xml`` packages. 
     17 
     18    + You may need ``python-dev`` and ``python-setuptools`` in ubuntu. 
     19 
     20* Pylons trunk checkout. 
     21 
     22  We require the development version, since there are important controller 
     23  features which we need, as well as a template rendering bugfix 
     24  which is necesssary for TurboJSON to work properly. 
     25 
     26 
     27Installing TurboGears 2 
    2128----------------------- 
    22 The command: 
     29 
     30The command:: 
    2331 
    2432    $ python ./setup.py install 
    2533 
    26 will byte-compile the python source code and install it in the 
    27 site-packages directory of your python installation. 
     34will byte-compile the Python source code and install it in the 
     35``site-packages`` directory of your Python installation. 
    2836 
    29 If you don't already have the pylons and turbogears source, you can 
     37If you don't already have the Pylons and TurboGears source, you can 
    3038get them from their repository:: 
    3139 
    32     $ easy_install -U mercurial 
     40Install mercurial via easy_install [1]_:: 
     41 
     42    $ easy_install -U Mercurial 
     43 
     44.. [1] Or go to http://www.selenic.com/mercurial/wiki/index.cgi/Download and  
     45download & install a binary package for your system. 
     46 
     47Check out the Pylons and TurboGears 2 source:: 
     48 
    3349    $ hg clone http://pylonshq.com/hg/pylons-dev pylons 
    3450    $ svn co http://svn.turbogears.org/trunk tg2 
     
    3854    $ python ./pylons/setup.py develop 
    3955    $ python ./tg2/setup.py develop 
     56 
    4057 
    4158Update the source 
     
    4865    $ python setup.py develop 
    4966 
     67 
    5068Creating a Quickstart Project 
    5169------------------------------ 
    5270 
    53 TurboGears2 is built on Pylons and share pylons' "paster" commands. 
     71TurboGears 2 is built on Pylons and shares pylons' "paster" commands. 
    5472Enter command:: 
    5573