Changes between Version 6 and Version 7 of DeveloperGuidelines/Tutorial
- Timestamp:
- 01/18/13 15:09:11 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Tutorial
v6 v7 17 17 The Models are loaded 1st within Web2Py processing, before the controllers.[[BR]] 18 18 So you can import any global modules/set any global variables here.[[BR]] 19 The Models are imported in alphabetical order, so we load the files which other modules depend on 1st, hence naming them appropriately:[[BR]]{{{000_config.py}}}, {{{01_crud.py}}}, {{{02_pr.py}}}, {{{03_gis.py}}}, etc 19 The Models are imported in alphabetical order, so we load the files which other modules depend on 1st, hence naming them appropriately: 20 21 {{{000_1st_run.py}}}, {{{000_config.py}}}, {{{zz_last.py}}}, etc 20 22 21 23 == View ==