Changes between Version 34 and Version 35 of ConfigurationGuidelines


Ignore:
Timestamp:
05/06/10 00:20:36 (15 years ago)
Author:
Fran Boon
Comment:

Disabling Modules

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v34 v35  
    3838In time these will be configured by [wiki:BluePrintWebSetup Web Setup].
    3939
    40 Some Auth options are currently only configurable via editing {{models/00_db.py}}:
     40Some Auth options are currently only configurable via editing {{models/00_settings.py}}:
    4141{{{
    4242mail.settings.server
     
    5050}}}
    5151In time we could expose to a Web-based admin page, although it's low priority as these are mostly installation-time decisions.
     52
     53Disable unnecessary modules, which is currently done in 2 areas:
     54 1. Hide the menus (to reduce UI clutter):
     55  * WebUI: /sahana/appadmin/index
     56  * Table: {{{db.s3_module}}}
     57 2. Disable the Models (to speed up performance):
     58  * edit file {{{models/01_modules.py}}}
     59  * section: {{{shn_module_enable}}}
    5260
    5361If you wish to hide some fields which you don't want to confuse your system, then you can do something like this {{{models/zzz_local.py}}} instead of amending the main model (this means that future merges from trunk won't clobber your changes):