PloneOntology Coding Style
==========================

Module names
------------
completely lowercase

examples:
ontology
graphviztool

Class names
-----------

capitalized, single noun preferred.
compound words go camel case

examples:
KeywordStorage
ClassificationTool
Ontology

Method names
------------

camelCase, method names begin with a lowercase verb all the time.

examples:
getWeight(...)
addRelation(...)

Doc Strings
-----------
ex. 

    def foo():
        """Short summary in one line.

        longer description
        """

no line break after begin of doc string!

this is the 'official' Zope style (according to Jim)
