Changes between Version 62 and Version 63 of DeveloperGuidelines
- Timestamp:
- 05/26/09 22:02:59 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines
v62 v63 32 32 The Models are loaded 1st within Web2Py processing, before the controllers.[[BR]] 33 33 So you can import any global modules/set any global variables here.[[BR]] 34 The Models are imported in alphabetical order, so we load the files which other modules depend on 1st, hence naming them with an underscore:[[BR]]{{{_db.py}}}, {{{_gis.py}}}34 The Models are imported in alphabetical order, so we load the files which other modules depend on 1st, hence naming them appropriately:[[BR]]{{{00_db.py}}}, {{{01_RESTlike_controller.py}}}, {{{02_pr.py}}}, {{{03_gis.py}}} 35 35 36 36 === Controller ===