The Forrest Project is an Open Source volunteer project released under a very liberal license. This means there are many ways to contribute to the project - either with direct participation (coding, documenting, answering questions, proposing ideas, reporting bugs, suggesting bug-fixes, etc..) or by resource donations (staff time, conference presentations, publicity, software) and even general hardware/money donations via the ASF.
To begin with, we suggest you to subscribe to the Forrest mailing lists (follow the link for information on how to subscribe and to access the mail list archives). Listen-in for a while, to hear how others make contributions.
You can get your local working copy of the latest and greatest code (which you find in the Forrest module in the Subversion code repository). Review the todo list and the issue tracker, choose a task. Perhaps you have noticed something that needs patching, or have a new feature to contribute. Make the changes, do the testing, generate a patch, and discuss on the dev mailing list. (Do not worry - the process is easy and explained below.)
Document writers are usually the most wanted people so if you like to help but you're not familiar with the innermost technical details, don't worry: we have work for you!
We would be glad to have extra help in any of the following areas:
forrest-dev mailing
list, install and try out Forrest and read some of the
mail archives. You should have a reasonable
fluency in XML technologies, some Java and Ant skills, and a basic understanding of the Forrest
architecture - don't just say "it should have XYZ" without reading anything
first - because chances are, somebody has already thought of that feature!).zip and .tar.gz packages, but anyone is
welcome to build their own specific packages and announce them on the
forrest-dev list)If you think that you have found a bug or you have a suggestion for improvement, then please discuss it on one of the mailing lists. However, please check our Issue Tracker first as it may be already reported.
The Apache Forrest Issue Tracker collates our known issues. Obviously not every issue is listed there. Some issues have been discussed on the mailing list but do not yet have an issue recorded.
The Roadmap is the best way to get an overview. The Unscheduled list also needs regular review, and committers will schedule some of those for the next release.
When creating a new issue, please provide a concise Summary Title and a short Description. Add further information as Comments and include links to the mail archives. The normal procedure is to discuss the issue on the mailing list and then add relevant notes to the issue tracker, otherwise it becomes cluttered.
An overview of how to use Subversion (SVN) to participate in Forrest development. Do not be afraid - you cannot accidently destroy the actual code repository, because you are working with a local copy as an anonymous user. Therefore, you do not have the system permissions to change anything. You can only update your local repository and compare your revisions with the real repository. The Building Forrest document explains.
After a developer has consistently provided contributions (code, documentation and discussion) and demonstrated committment, then the rest of the dev community may vote to grant this developer commit access to the Subversion repository. See the ASF developers resources especially the Source code repositories.
You will need secure access to the repository to be able to commit patches. Commits to the SVN repository must use the https: protocol. If you already have the codebase checked out via the http: protocol, then the following command will convert it.
Line ending issues can be a problem when committing, since developers
use both Linux and Windows. SVN can understand that files are text (as
opposed to binary like images), but this must be specified for every new
file added. Your SVN client can be
configured
to automatically do this for certain file extensions. To do it manually,
make sure all line endings are in your current OS's native format (the
dos2unix and unix2dos utilities may be useful) and then do a svn
propset svn:eol-style native myfilename.txt and svn commit
-m "fix line endings" myfilename.txt
There are two methods for discussing development and submitting patches. So that everyone can be productive, it is important to know which method is appropriate for a certain situation and how to go about it without confusion. This section explains when to use the developer mailing list and the issue tracker.
Research your topic thoroughly before beginning to discuss a new development issue. Search and browse through the email archives - your issue may have been discussed before. Prepare your post clearly and concisely.
Most issues will be discovered, resolved, and then patched quickly via the developer mailing list. Larger issues, and ones that are not yet fully understood or are hard to solve, are destined for the issue tracker.
Experienced developers use the issue tracker directly, as they are very sure when they have found a bug and when not. However, less experienced users should first discuss it on the user or developer mailing list (as appropriate). Impatient people always enter everything into the issue tracker without caring if it is a bug of Forrest or their own installation/configuration mistake - please do not do this.
As a rule-of-thumb, discuss an issue on the developers mailing list first to work out any details. After it is confirmed to be worthwhile, and you are clear about it, then submit the bug description or patch via Bug Tracking.
Perhaps you do not get any answer on your first reply, so just post it again until you get one. (But please not every hour - allow a few days for the list to deal with it.) Do not be impatient - remember that the whole world is busy, not just you. Bear in mind that other countries will have holidays at different times to your country and that they are in different time zones. You might also consider rewriting your initial posting - perhaps it was not clear enough and the readers eyes glazed over.
If you use the current development version of Forrest via Subversion,
then do 'svn update; svn status' to see what files that you
have changed. Do 'svn diff > mypatch.txt' to make a patch
which includes every change. To make a patch for a specific file, do
svn diff src/documentation/content/xdocs/faq.xml >
faq.xml.diff'. It is better to prepare the patch from the
$FORREST_HOME directory so that it contains a definite path to the
document. However, be careful that the patch does not contain other
work-in-progress.
For more information about working with SVN, see Version Control with Subversion - the opensource SVN book.
If you use a downloaded released version of Forrest (or don't use SVN),
then use the 'diff' command of your operating system: 'diff -u
faq.xml.orig faq.xml > mypatch.txt' (better to do that from
$FORREST_HOME directory). If you want to use the most recent version of
the documentation then grab its source file directly from the
SVN
server (and tell us which Revision number you used).
It is always a good idea to check the Forrest issue tracker before diving in.
Check out http://svnbook.red-bean.com/en/1.0/ch04s04.html#svn-ch-4-sect-4.2 for instructions on how to revert (roll back) changes to svn.
This is a collection of tips for contributing to the project in a manner that is productive for all parties.
In-reply-to
header). If so, then your new topic will get lost in the previous thread and go
unanswered. [Proposal],
[RT] (Random Thought which quickly blossom into research topics
:-), [STATUS] (development status of a certain facility).