Changes between Version 62 and Version 63 of DeveloperGuidelines


Ignore:
Timestamp:
05/26/09 22:02:59 (16 years ago)
Author:
Fran Boon
Comment:

New naming for early-loading models

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines

    v62 v63  
    3232The Models are loaded 1st within Web2Py processing, before the controllers.[[BR]]
    3333So 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}}}
     34The 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}}}
    3535
    3636=== Controller ===