Changes between Version 16 and Version 17 of S3/S3ReusableField
- Timestamp:
- 08/07/11 17:26:55 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3ReusableField
v16 v17 37 37 ..., 38 38 person_id(), # inserts a Field("person_id") with the pre-defined parameters 39 ..., 40 migrate=migrate) 39 ...) 41 40 }}} 42 41 … … 53 52 person_id("reporter", # inserts a Field("reporter") with the attributes from person_id, 54 53 label=T("Reporter")), # replaces the label attribute by T("Reporter") 55 ..., 56 migrate=migrate) 54 ...) 57 55 }}} 58 56 … … 67 65 ..., 68 66 person_id(empty=False), # inserts the person_id Field, but removes IS_NULL_OR from .requires 69 ..., 70 migrate=migrate) 67 ...) 71 68 }}} 72 69