Skip to content
Steve Baskauf edited this page May 28, 2015 · 1 revision

Collaboration

Ontology files

It is expected that most people will use an ontology editor (like Protege to edit the ontologies, so these files:

  • Should be saved as RDF/XML
  • Should not include hand-written comments in the raw code, but reasons and decisions may be contained in the annotations.

Conversation

Building the ontology

Each Class and Property should get a Wiki page of its own, where basic issues are reviewed and documented.

Discussion and criticism

We can either add comments to the Wiki pages or add Issues for major discussion items. The latter would allow the Wiki pages to look tidier, and would allow a particular thread to be followed more easily and 'closed' when resolved. However, localizing comments on their associated Wiki page will probably be more efficient.

Note that Issues and Comments are not entered as data into the SVN system, so will be harder to backup and extract. Any major contributions should be added as Wiki text.

SVN access

All source files and wiki files can be accessed and edited via an SVN client. For first checkout:

$ svn checkout https://darwin-sw.googlecode.com/svn/ darwin-sw --username foo.bar

This will make a directory called darwin-sw under SVN control. It will include the contents of the wiki. The standard work cycle is:

$ cd .../darwin-sw
$ svn update
... edit files
$ svn add foo  # for any new files
$ svn ci -m "An informative comment"

You will be asked for a username (foo.bar if you are [email protected]) and password (obtained via your googlecode settings page; not your main gmail password).

Clone this wiki locally