Changes between Initial Version and Version 1 of DeveloperGuidelines/Templates/CustomPages


Ignore:
Timestamp:
06/23/12 15:31:21 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Templates/CustomPages

    v1 v1  
     1= Custom Pages =
     2[[TOC]]
     3
     4Sahana Eden supports custom Pages as part of it's overall [DeveloperGuidelines/Templates Templates] system.
     5
     6This allows customisation of:
     7* Home page
     8* Totally new pages
     9
     10Custom pages are defined within the templates folder to reduce issues with merging.
     11
     12NOTE: This is still a work-in-progress: not everything here is ready yet & the details may change!
     13
     14== Home Page ==
     15
     16The web server is normally configured to redirect requests to:
     17{{{
     18http://host.domain
     19}}}
     20to:
     21{{{
     22http://host.domain/application/default/index
     23}}}
     24
     25Which maps to {{{controllers/default.py}}} & the {{{index()}}} function therein.
     26
     27The default application & controller can be easily edited in {{{web2py/routes.py}}} or within the web server configuration, however editing the default function might cause problems for other Sahana modules.
     28
     29Sahana Eden is designed to check for the presence of a custom template and, if one is configured, then it attempts to load:
     30{{{
     31/private/templates/<template>/controllers.py
     32}}}
     33& then run the {{{index()}}} function inside there instead.
     34
     35Note: you must have an {{{__init__.py}}} in your template folder for this to work (it can be empty).
     36
     37== Custom Page ==
     38
     39If a URL is specified like:
     40{{{
     41http://host.domain/application/default/index/<custompage>
     42}}}
     43
     44The this alternate page will attempt to be loaded using the {{{custompage()}}} function in:
     45{{{
     46/private/templates/<template>/controllers.py
     47}}}
     48
     49== See Also ==
     50* [DeveloperGuidelines/Templates Templates]
     51* [DeveloperGuidelines/Menus Menus]
     52* [DeveloperGuidelines/Themes Themes]