Changes between Initial Version and Version 1 of DeveloperGuidelines/CodeConventions


Ignore:
Timestamp:
03/19/10 03:31:44 (15 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/CodeConventions

    v1 v1  
     1These conventions should be followed in all code:
     2
     3 * http://code.google.com/p/soc/wiki/PythonStyleGuide
     4  * Limit line length to 80 characters
     5 * Use " " for strings, UNLESS the string contains a ", in which case use '
     6 * All functions outside of classes should have the prefix shn_<Model Name>_
     7 * All classes which over-ride existing classed should have the suffix "S3"