Changeset 3762 for framework

Show
Ignore:
Timestamp:
04/01/11 17:17:09 (14 months ago)
Author:
elemoine
Message:

branch 2.1 - update docs files with correct version numbers

Location:
framework/server/branches/2.1/docs
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • framework/server/branches/2.1/docs/conf.py

    r3569 r3762  
    4646# 
    4747# The short X.Y version. 
    48 version = '2.0' 
     48version = '2.1' 
    4949# The full version, including alpha/beta/rc tags. 
    50 release = '2.0dev' 
     50release = '2.1' 
    5151 
    5252# The language for content autogenerated by Sphinx. Refer to documentation 
  • framework/server/branches/2.1/docs/framework/upgrading.txt

    r3610 r3762  
    33 
    44This section provides information for upgrading a MapFish application from 
    5 MapFish 1.2 to MapFish 2.0 
     5MapFish 1.2 to MapFish 2.x. 
    66 
    77Pylons 1.0 
    88~~~~~~~~~~ 
    99 
    10 MapFish 1.2 is based on Pylons 0.9.7, and MapFish 2.0 is based on Pylons 1.0. 
    11 So to upgrade an application from MapFish 1.2 to MapFish 2.0 it is first needed 
     10MapFish 1.2 is based on Pylons 0.9.7, and MapFish 2.x is based on Pylons 1.0. 
     11So to upgrade an application from MapFish 1.2 to MapFish 2.x it is first needed 
    1212to upgrade that application from Pylons 0.9.7 to Pylons 1.0. For this refer to 
    1313the `Pylons 1.0 Upgrading page <http://pylonshq.com/docs/en/1.0/upgrading/>`_, 
     
    1515 
    1616.. note: 
    17     MapFish 2.0 depending on Pylons 1.0, you will run into dependency issues if 
     17    MapFish 2.x depending on Pylons 1.0, you will run into dependency issues if 
    1818    you attempt to upgrade to Pylons 0.10. So it is recommended not to attempt 
    1919    it. 
     
    5555MapFish-specific adjusments. 
    5656 
    57 MapFish 2.0 
     57MapFish 2.x 
    5858~~~~~~~~~~~ 
    5959 
     
    6161^^^^^^^^^^ 
    6262 
    63 MapFish 2.0 is based on `GeoAlchemy <http://geoalchemy.org>`_. GeoAlchemy 
    64 provides extensions to SQLAlchemy for use with spatial databases. MapFish 2.0 
     63MapFish 2.x is based on `GeoAlchemy <http://geoalchemy.org>`_. GeoAlchemy 
     64provides extensions to SQLAlchemy for use with spatial databases. MapFish 2.x 
    6565no longer defines the ``Geometry`` type, the one defined by GeoAlchemy is to be 
    6666used instead. 
     
    9090    mapper(User, users_table) 
    9191 
    92 With MapFish 2.0 the same ``user`` model looks like this:: 
     92With MapFish 2.x the same ``user`` model looks like this:: 
    9393 
    9494    from sqlalchemy import Column, types 
     
    111111^^^^^^^ 
    112112 
    113 The ``Filter`` abstraction is no longer. With MapFish 2.0 only SQLAlchemy 
     113The ``Filter`` abstraction is no longer. With MapFish 2.x only SQLAlchemy 
    114114filters (``ClauseElement``) are manipulated. 
    115115 
     
    142142^^^^^^^^^^ 
    143143 
    144 MapFish 2.0 introduces the ``geojsonify`` decorator for generating GeoJSON. 
     144MapFish 2.x introduces the ``geojsonify`` decorator for generating GeoJSON. 
    145145 
    146146With MapFish 1.2 the ``paster mf-layer`` command generated controller files 
     
    183183            return self.protocol.delete(request, response, id) 
    184184 
    185 With MapFish 2.0 the same ``user`` controller looks like this:: 
     185With MapFish 2.x the same ``user`` controller looks like this:: 
    186186 
    187187    from pylons import request, response, session, tmpl_context as c 
  • framework/server/branches/2.1/docs/installation.txt

    r3569 r3762  
    2525------------------ 
    2626 
    27 To install MapFish, `download <http://www.mapfish.org/downloads/go-mapfish-framework-2.0.py>`_ the installation script, and execute it from a terminal. 
     27To install MapFish, `download <http://www.mapfish.org/downloads/go-mapfish-framework-2.1.py>`_ the installation script, and execute it from a terminal. 
    2828 
    2929On a Unix system:: 
    3030 
    31     $ python go-mapfish-framework-2.0.py --no-site-packages env 
     31    $ python go-mapfish-framework-2.1.py --no-site-packages env 
    3232 
    3333On a Windows system:: 
    3434 
    35     C:\> C:\Python25\python.exe go-mapfish-framework-2.0.py --no-site-packages env 
     35    C:\> C:\Python25\python.exe go-mapfish-framework-2.1.py --no-site-packages env 
    3636 
    3737This command creates a virtual Python environment named ``env`` and installs