Changes between Version 102 and Version 103 of DeveloperGuidelines


Ignore:
Timestamp:
06/29/10 20:04:38 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines

    v102 v103  
    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 appropriately:[[BR]]{{{00_db.py}}}, {{{01_RESTlike_controller.py}}}, {{{02_pr.py}}}, {{{03_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]]{{{000_config.py}}}, {{{01_crud.py}}}, {{{02_pr.py}}}, {{{03_gis.py}}}, etc
    3535
    3636==== Controller ====