Changes between Version 1 and Version 2 of BuildingBase


Ignore:
Timestamp:
Jun 15, 2011, 10:57:59 AM (13 years ago)
Author:
Nicklas Nordborg
Comment:

Added section about getting the source code

Legend:

Unmodified
Added
Removed
Modified
  • BuildingBase

    v1 v2  
    33Information will be added to this page. The old documentation is available at:
    44http://base.thep.lu.se/chrome/site/doc/historical/development/build.html
     5
     6
     7== Getting the source code ==
     8
     9=== Download ===
     10The source code for most BASE releases can be downloaded from the DownloadPage. The code is packaged in a compressed TAR archive. Unpack this to a directory of your choice.
     11
     12=== Subversion ===
     13The BASE source code lives in a [http://subversion.apache.org// Subversion server]. It is a versioning system that enables us to keep track of all changes made to the code. You will need a client for subversion to be able to get the source code. If you are using [http://www.eclipse.org/ Eclipse] there is an excellent [http://subclipse.tigris.org/ subversion plugin].
     14
     15Check out the source code with the command:
     16
     17{{{ svn checkout http://base.thep.lu.se/svn/trunk/ base-src }}}
     18
     19This will create a sub-directory `base-src` with all source files. Anonymous checkouts are allowed, but write permission is only granted to developers. The trunk version is the head of the development and should be used for testing purposes only. The sub-urls to `http://base.thep.lu.se/svn/branches/*` and `http://base.thep.lu.se/svn/tags/*` can be used to get other version, including specific releases and bugfix branches. For more information see the DownloadPage or check the [/browser subversion source repository] directly.
     20