Changeset 347 for elixir/trunk/README

Show
Ignore:
Timestamp:
06/19/08 15:35:21 (4 years ago)
Author:
ged
Message:

removed trailing spaces

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/README

    r254 r347  
    44 
    55Elixir is a declarative layer on top of the `SQLAlchemy library 
    6 <http://www.sqlalchemy.org/>`_. It is a fairly thin wrapper, which provides  
    7 the ability to create simple Python classes that map directly to relational  
     6<http://www.sqlalchemy.org/>`_. It is a fairly thin wrapper, which provides 
     7the ability to create simple Python classes that map directly to relational 
    88database tables (this pattern is often referred to as the Active Record design 
    9 pattern), providing many of the benefits of traditional databases  
    10 without losing the convenience of Python objects.  
     9pattern), providing many of the benefits of traditional databases 
     10without losing the convenience of Python objects. 
    1111 
    12 Elixir is intended to replace the ActiveMapper SQLAlchemy extension, and the  
     12Elixir is intended to replace the ActiveMapper SQLAlchemy extension, and the 
    1313TurboEntity project but does not intend to replace SQLAlchemy's core features, 
    14 and instead focuses on providing a simpler syntax for defining model objects  
    15 when you do not need the full expressiveness of SQLAlchemy's manual mapper  
     14and instead focuses on providing a simpler syntax for defining model objects 
     15when you do not need the full expressiveness of SQLAlchemy's manual mapper 
    1616definitions. 
    1717