GAE/Coding Conventions
These conventions only apply to new code. Don't spend lots of time modifying existing, working code.
Setters/Mutators
should be in the form of:
void setMyAttribute(type v) {myAttribute = v;}
as opposed to
void setMyAttribute(type myAttribute) {this->myAttribute = myAttribute;}
SVN Repository
- The organisational style is described as 'feature branches' at http://svnbook.red-bean.com/en/1.5/svn.branchmerge.commonpatterns.html
- Files in mk/linux have the property 'svn:eol-style LF' set. Any new files in the linux dir need to be set with this property and value ( see EOL-STYLE )
- To gain write access for the first time you will need to show an admin the code you want to commit.