Show
Ignore:
Timestamp:
02/03/07 23:20:01 (6 years ago)
Author:
joshua
Message:

- added a simple tutorial
- fixed a few issues with the template
- added some missing selectors to the documentation stylesheet
- added a note to entity.py's docstring about automatic primary-key generation
- added tests-module to the API-docs

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/relationships.py

    r24 r26  
    1212a `Pet` object may belong to its owner, who is a `Person.`  This could be 
    1313expressed like so: 
    14              
     14 
     15:: 
     16 
    1517    class Pet(Entity): 
    1618        belongs_to('owner', of_kind='Person', inverse='pets')