56 | | * should have the suffix "S3" |
57 | | * Names for Eden-specific subclasses of web2py classes and all classes which over-ride existing classes start with "S3", |
58 | | * All other classes defined in Eden end with "S3" (e.g. AuthS3 vs. S3Resource). |
59 | | * CamelCase is for class names only |
60 | | * Constant names are all-uppercase and with underscores as word separator |
61 | | * everything else (including table names and field names) should be all-lowercase with underscores as word separator |
| 56 | * Names for Eden-specific subclasses of web2py classes and all classes which over-ride existing classes should have the suffix "S3". |
| 57 | * All other classes defined in Eden start with "S3", e.g. S3Resource (a genuine Eden class) vs. AuthS3 (a subclass of a web2py class). |
| 58 | * Class names start with an uppercase letter. |
| 59 | * CamelCase is for class names only. |
| 60 | * Constant names are all-uppercase and with underscores as word separator. |
| 61 | * everything else (including table names and field names) should be all-lowercase with underscores as word separator. |