Changes between Version 5 and Version 6 of DeveloperGuidelines/Tutorial


Ignore:
Timestamp:
01/18/13 15:08:22 (12 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Tutorial

    v5 v6  
    2121== View ==
    2222HTML/Javascript templates in {{{/views/*}}}
    23  * these are normal HTML/JS files with the ability to add in Python code (e.g. variables) surrounded by brackets: {{ interpreted python here }}
    24  * there should be an .html file available for each function in the module (name normally being the same as the function)
    25  * these normally inherit from {{{views/layout.html}}} which also includes the !JavaScript from {{{views/*_ajax.html}}}
    26  * if there is no view defined then a default view will be displayed, which will show the values of all the data it can see, but not be formatted nicely
     23* these are normal HTML/JS files with the ability to add in Python code (e.g. variables) surrounded by brackets: {{ interpreted python here }}
     24* there should be an .html file available for each function in the module (name normally being the same as the function)
     25* these normally inherit from {{{views/layout.html}}} which also includes the !JavaScript from {{{views/*_ajax.html}}}
     26* if there is no view defined then a default view will be displayed, which will show the values of all the data it can see, but not be formatted nicely
    2727
    2828== Controller ==
    29 Python functions in {{{/controllers/*}}} [[BR]]
     29Python functions in {{{/controllers/modulename.py}}} [[BR]]
    3030e.g.
    3131{{{