Changes between Version 6 and Version 7 of Dev_Guidelines


Ignore:
Timestamp:
Jan 4, 2007 5:23:39 AM (6 years ago)
Author:
mtu
Comment:

cosmetics

Legend:

Unmodified
Added
Removed
Modified
  • Dev_Guidelines

    v6 v7  
    1111 ''program/'':: 
    1212   All application files are stored in this folder. [[BR]] 
    13    These files will be relaced when upgrading the installation[[BR]] 
     13   These files will be replaced when upgrading the installation.[[BR]] 
    1414 ''program/js/'':: 
    1515   Client !JavaScript files 
     
    1919   Classes and core functions 
    2020 ''program/localization/'':: 
    21    Contains subfolders with localization files 
     21   Contains subfolders with localization files. 
    2222 ''program/steps/'':: 
    2323   Include files for every task/action 
     
    2727   Contains log files. This folder has to be writable for the webserver. 
    2828 ''temp/'':: 
    29    Location of temporary saved files such as attachments and cache files.[[BR]] 
     29   Location of temporary saved files such as attachments and cache files[[BR]] 
    3030   This folder has to be writable for the webserver. 
    3131 ''skins/'':: 
    3232   Contains skin subfolders 
    3333 ''SQL/'':: 
    34    SQL files for database initialization and update. Only needed for installations or upgrades 
     34   SQL files for database initialization and update. Only needed for installations or upgrades. 
    3535 
    3636=== Important files === 
     
    5252=== Functions and variables === 
    5353 
    54 Function and variable names should only contain ''lower case'' letters and numbers and use underlines for word separation. In classes private methods usually start with an underline. 
     54Function and variable names should only contain ''lower case'' letters and numbers and use underlines for word separation. In classes, private methods usually start with an underline. 
    5555 
    5656Functions providing !RoundCube specific functionality should start with either ''rcmail_'' (webmail specific functions) or ''rcube_'' (global/framework functions).