...
Page Tree | ||
---|---|---|
|
Getting Started
Get Connected
- Get an account at SIPfoundry
- Subscribe to and regularly read the developer list (it's a good idea to also keep an eye on the users list).
Get an Issue
If you have a problem or feature that you'd like to work on, that's great. If there is already an issue for it in the tracker, then send a note to the dev list to let people know that you're going to get started on it.
If you don't have a particular issue in mind, check the tracker - any issue not assigned to someone is fair game. Especially see the list of Community Candidate Issues.
Get To Work
When you have a design approach in mind, send a detailed note to the developer list describing it. Pay particular attention to describing:
...
There are a number of pages under this one on how to check out the code and get a development environment working.
Test your changes
You can greatly improve the chances that your contribution will be accepted, and significantly reduce the time the process takes, by doing as much of the checking as possible before you submit it. In particular:
- Check that it follows the established conventions (see elsewhere in the Developer documentation)
- Some components have specific regression testing requirements that are not executed as part of the unit tests in the standard build.
- Regression test as much of the system as possible to make sure that anything even remotely connected to your change is still backwards compatible.
- Ensure that an rpm build on the CentOS versions that are the primary binary distributions for the project work; pay particular attention to availability of any dependencies (see TBD).
Submitting Your Change
Execute a Contributor Agreement
Before your change can be accepted, you (or an authorized person at your employer) will have to execute a Contributor Agreement .
Create A Patch
You can use an 'svn diff
' or 'git diff
' depending on how you've set up your environment.
...