Using Bazaar to Contribute Code: Difference between revisions

From IHRIS Wiki
No edit summary
Line 1: Line 1:
We maintain all of our code in [http://www.launchpad.net | Launchpad ] using the [http://bazaar-vcs.org/ | Bazaar] version control system.
We maintain all of our code in [http://www.launchpad.net Launchpad ] using the [http://bazaar-vcs.org/ Bazaar] version control system.


==Starting Up With Bazaar==
==Starting Up With Bazaar==
You can install bazaar under ubuntu via
You can install bazaar under ubuntu via
  sudo apt-get install bzr bzrtools
  sudo apt-get install bzr bzrtools
You should try the [http://doc.bazaar-vcs.org/latest/en/mini-tutorial/index.html | five minute tutorial].
You should try the [http://doc.bazaar-vcs.org/latest/en/mini-tutorial/index.html five minute tutorial].
==Bazaar Branches==
==Bazaar Branches==
There are a few software components that we maintain, and for each there is a release and development trunk.
There are a few software components that we maintain, and for each there is a release and development trunk.
Line 18: Line 18:
==Coding Policy==
==Coding Policy==
===Indentation and Formatting===
===Indentation and Formatting===
No tabs please.  All tabs should be converted to 4 spaces.  The indentation style for (PHP) code should be [http://en.wikipedia.org/wiki/Indent_style#BSD_KNF_style| bsd].
No tabs please.  All tabs should be converted to 4 spaces.  The indentation style for (PHP) code should be [http://en.wikipedia.org/wiki/Indent_style#BSD_KNF_style bsd].


===Documentation===
===Documentation===
We document our php code with [http://www.phpdoc.org/  phpdoc].
We document our php code with [http://www.phpdoc.org/  phpdoc].

Revision as of 13:02, 19 May 2009

We maintain all of our code in Launchpad using the Bazaar version control system.

Starting Up With Bazaar

You can install bazaar under ubuntu via

sudo apt-get install bzr bzrtools

You should try the five minute tutorial.

Bazaar Branches

There are a few software components that we maintain, and for each there is a release and development trunk.

  • Release
    • i2ce
    • ihris-common
    • ihris-manage
    • ihris-plan
    • ihris-qualify
    • textlayout
  • Development

Coding Policy

Indentation and Formatting

No tabs please. All tabs should be converted to 4 spaces. The indentation style for (PHP) code should be bsd.

Documentation

We document our php code with phpdoc.