Get the latest source

From OrcaWiki
Revision as of 14:34, 8 November 2006 by Cnk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

OrcaWare Technologies hosts all of its open-source and publicly available code in a public Subversion server.

Browse the OrcaWare source code repository to see the packages available for download. There are three different ways you can connect to the Subversion repository and download content. You can choose between:

   * HTML over port 80
   * XML over port 80

When checking out the source code on this server, please be extra careful to check out only the package you need, otherwise you may check out the entire repository and fill up a minimum of 300 Mbytes on your disk and take forever to check out. Here are some sample commands:

   * Check out the HEAD revision, that is the latest version, of the Orca package:
     $ svn co http://www.orcaware.com/svn/repos/orca/trunk/
   * Check out Orca tagged at version 0.27:
     $ svn co http://www.orcaware.com/svn/repos/orca/tags/0.27/
   * These are the commands to avoid, as they will check out everything underneath the specified URL. Be careful :) :
     $ svn co http://www.orcaware.com/svn/repos/
     $ svn co http://www.orcaware.com/svn/repos/orca/
     $ svn co http://www.orcaware.com/svn/repos/orca/tags/

Only the URLs for the HTML viewing also allow commits against the Subversion repository.