Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

I think I've seen this ORM somewhere before...

Changeset 190

Show
Ignore:
Timestamp:
03/09/06 16:14:52
Author:
fumanchu
Message:

Doc tweak.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/doc/intro.html

    r189 r190  
    1313<h2>Introduction</h2> 
    1414 
    15 <p>Dejavu is an Object-Relational Mapper for Python applications. It is 
    16 designed to provide the "Model" third of an MVC application. When you build 
    17 an application using Dejavu, you must supply the Controller(s) and View(s) 
    18 yourself. Dejavu does not provide these, and does its best to not limi
    19 your choices regarding them.</p> 
     15<p>Dejavu is a thread-safe Object-Relational Mapper for Python applications. 
     16It is designed to provide the "Model" third of an MVC application. When you 
     17build an application using Dejavu, you must supply the Controller(s) and 
     18View(s) yourself. Dejavu does not provide these, and does its best to no
     19limit your choices regarding them.</p> 
    2020 
    2121<p>If you're familiar with Martin Fowler's work <a href='#fowler'>[1]</a>, 
    2222you can think of Dejavu as providing a Data Source layer, plus the tools 
    2323to write your own Domain layer. For the Presentation layer, you're on your 
    24 own. ;)</p> 
     24own. ;) It primarily uses a generic Data Mapper architecture (as opposed 
     25to the more tightly-coupled Active Record architecture).</p> 
    2526 
    2627<h3>Basic Structure</h3>