How to get the lastest development version
We are using Subversion for version management.
To get the latest development version, you can use this command:
svn export http://www.awf-cms.org/svn/awf2_public/trunk [destination_directory]
You have to move inc/config.ini-dist to inc/config.ini before you start the installation.
For the developers
If you got a developer account and want to checkout a working copy:
svn checkout http://www.awf-cms.org/svn/awf2/trunk [destination_directory]
Important: Please copy inc/config.ini-dist to inc/config.ini before you start the installation.
Commit your changes with
svn commit --message "Your comment"
Notes:
- Tell the other developers what you're working on.
- Please pay attention to the Coding Standards.
- Never commit broken code.
- Always comment your changes (in the source code and when committing with subversion).
- If you're working on a Windows box: Please always test your code on Linux too, so that the development version doesn't get broken for the default LAMP platform.
- Use the latest stable PHP 5 release for development.
- Please never checkout or commit to directories other than trunk. Released versions ("tags") are read only and should only be exported.
Thanks! :-)
The trunk directory holds the main line of development, the branches directory contains branch copies and a tags directory contains tag copies.
There is a comprehensive Subversion documentation.
What if you don't have Subversion installed?
- Of course you can also use your web browser to browse through the repository.
- Or you download a GUI frontend like RapidSVN (available for Windows und Unix/Linux)





