Use the Source
Coding style
It's important to maintain a consistent coding style. Before you start poking around in the belly of the beast, you should read the info on the coding style used.
Checking out the source
Download the Subversion console client. Then issue the following command in your project folder:
svn checkout http://svn.noccy.com/lepton-php/trunk lepton-trunk
Lepton will now be checked out into the folder lepton-trunk.
Updating the local version
To update the local version, issue the following command in the folder where you checked out lepton, in this example lepton-trunk:
svn up
Creating patches
To create patches from your local working copy, issue the following command:
svn diff > description-of-changes.diff
Submit your diff to the developer's list at Google Groups.
Committing changes
To commit your changes if you have SVN access, issue the following command:
svn commit
Provide a good description of your changes.
