Changes between Version 9 and Version 10 of DeveloperGuidelines
- Timestamp:
- 12/20/08 06:07:59 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines
v9 v10 15 15 16 16 === Model === 17 Defines databases in: {{{/models/module.py}}} (equivalent of inst/mysql-dbcreate.sql)17 Defines databases in: {{{/models/module.py}}} (equivalent of {{{inst/mysql-dbcreate.sql}}}) 18 18 19 19 The Models are loaded 1st within Web2Py processing, before the controllers. … … 42 42 43 43 == T2 == 44 This plugin is used for AAA & simplified CRUD (inc Conflict Detection) 44 This plugin is used for [wiki:DeveloperGuidelinesAuthenticationAccess AAA] & simplified [wiki: 45 DeveloperGuidelinesCreateReadUpdateDelete CRUD] (inc Conflict Detection) 45 46 * http://mdp.cti.depaul.edu/examples/static/t2.pdf 46 47 We extend the T2 class in {{{modules/sahana.py}}} 47 48 DeveloperGuidelinesCreateReadUpdateDelete49 48 50 49 Populate the side navigation Menus by adding this to each controller: … … 96 95 Sahana3 uses a separate table for each lookup list 97 96 98 DeveloperGuidelinesAuthenticationAccess99 100 97 DeveloperGuidelinesAdvanced