Subversion Access
You can obtain the latest development version of PRADO from our subversion (SVN) repository. The easiest way to browse through the repository is using the source code browser. We recommend, however, you install an SVN client on your machine for better access. TortoiseSVN is a highly recommended client on Windows.
WARNING: Unreleased source code in SVN may contain known bugs and are subject to changes without prior notice.
The source code repository can be accessed anonymously using the following command,
svn <export|checkout> [-r<rev>] http://svn.pradosoft.com/repos/prado/<folder>
where export command fetches the code without revision information while checkout command gets a snapshot of the code that be developed against or created patches with; rev refers to a specific revision number that you want to fetch; folder must be a valid PRADO repository folder name.
We have three top-level folders in our repository. The trunk folder is our main development line of PRADO; the branches folder contains release branches (e.g. 3.0 branch) and feature branches; and the tags folder stores all released code.
The following commands can all be used to fetch PRADO code from the repository:
# check out a snapshot from trunk
svn checkout http://svn.pradosoft.com/repos/prado/trunk
# download from trunk without revision information
svn export http://svn.pradosoft.com/repos/prado/trunk
# check out a snapshot of revision 913 from the 3.0 branch
svn checkout -r913 http://svn.pradosoft.com/repos/prado/branches/3.0