Changes between Initial Version and Version 1 of Obolete/Development/Code


Ignore:
Timestamp:
Mar 20, 2010, 10:24:50 PM (16 years ago)
Author:
loomis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Obolete/Development/Code

    v1 v1  
     1[[TracNav]]
     2
     3The source code for quattor core modules is hosted in a SourceForge Subversion repository (details [https://sourceforge.net/svn/?group_id=221766 here]).
     4* You can [http://quattor.svn.sourceforge.net/viewvc/quattor/ browse] the repository at the link "SVN Browse" on the "Code" tab on the quattor project page (link above).
     5* You can check out the trunk (or head) version of the quattor software using the following command:
     6
     7 $ svn co https://quattor.svn.sourceforge.net/svnroot/quattor/trunk quattor/trunk
     8
     9You will normally want to work with the trunk revision. However it is possible to check out a particular version of a module within the "tags" area of the repository; f.i., if you need the release <tt>1.2.3</tt> of <tt>ccm</tt>, use the command:
     10
     11 $ svn co https://quattor.svn.sourceforge.net/svnroot/quattor/tags/ccm/1.2.3 quattor/tags/ccm/1.2.3
     12
     13To avoid problems with the [[#quattor build tools|build tools]], we recommend you to check out repository directories with their '''original''' names, as in the examples above.
     14
     15== Getting check-in access ==
     16In order to check in code, you first need to become a member of the quattor project. To do this, send an email to the mailing list [mailto:quattor-discuss@lists.sourceforge.net quattor-discuss@lists.sourceforge.net] with the following information:
     17
     18* sourceforge user name (if you don't have an account you can create one [http://sourceforge.net here])
     19* reason for wanting to contribute code to quattor (e.g. module you are planning to contribute to)
     20
     21Once your account has been enabled for access, you can check in code using the quattor build tools (see below). You will be asked for your sourceforge user ID and password to authorise the check-in.
     22
     23== quattor build tools ==
     24Most of the standard tasks performed by developers are included in the quattor build tools which are documented [[Quattor_Build_Framework|here]].
     25