Changeset 502

Show
Ignore:
Timestamp:
10/15/09 10:57:00 (4 years ago)
Author:
ged
Message:

fix ReST markup so that API docs look good

Location:
elixir/trunk/elixir
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/ext/perform_ddl.py

    r443 r502  
    88The 'when' argument can be either 'before-create' or 'after-create'. 
    99The 'statement' argument can be one of: 
     10 
    1011- a single string statement 
    1112- a list of string statements, in which case, each of them will be executed 
  • elixir/trunk/elixir/options.py

    r490 r502  
    2121 
    2222        using_options(shortnames=True, order_by='name') 
     23 
    2324The list of supported arguments are as follows: 
    2425 
  • elixir/trunk/elixir/relationships.py

    r497 r502  
    185185+--------------------+--------------------------------------------------------+ 
    186186| ``filter``         | Specify a filter criterion (as a clause element) for   | 
    187 |                    | this relationship. This criterion will be and_'ed with | 
    188 |                    | the normal join criterion (primaryjoin) generated by  | 
    189 |                    | Elixir for the relationship. For example:              | 
    190 |                    | boston_addresses = \                                   | 
    191 |                    |  OneToMany('Address', filter=Address.city == 'Boston') | 
     187|                    | this relationship. This criterion will be ``and_`` ed | 
     188|                    | with the normal join criterion (primaryjoin) generated | 
     189|                    | by Elixir for the relationship. For example:           | 
     190|                    | boston_addresses =                                     | 
     191|                    | OneToMany('Address', filter=Address.city == 'Boston') | 
    192192+--------------------+--------------------------------------------------------+ 
    193193