CaudiumForge CVS Instructions
 
    Available Branches
There are currently two branches in our CVS tree :
  • stable_1_0. This branch contains the stable 1.0 version. No major changes are done in this tree, i.e it's mainly a bug fix branch. This one is kept for people who has strict compatibility needs in mind.
  • stable_1_2. This branch contains the stable 1.2 version. No major changes are done in this tree, i.e it's mainly a bug fix branch. This one is the most advanced stable Caudium.
  • stable_1_4. This branch contains the stable 1.4 version. Currently the latest Caudium tree in FREEZE state.
To access a branch via CVS, just specify the -r stable_1_0 flag, -r stable_1_2 flag or -r stable_1_4 flag depending what version you need to CVS checkout. If you leave out this flag, the default development version will be used.

Anonymous Checkout
First get this file from CaudiumForge or read this documentation if you need more help.

Development Version
 $ SSH_AUTH_SOCK= CVS_RSH=~/bin/sshanoncvs \
   cvs -z3 -d anoncvs@cvs.caudiumforge.net:/cvs/caudium co -P caudium
 cvs server: Updating caudium
 [cvs messages]
 ...
    
Branch Versions
Replace BRANCH below with the actual branch you want to check out. As of today, only stable_1_0 or stable_1_2 are available.
 $ SSH_AUTH_SOCK= CVS_RSH=~/bin/sshanoncvs \
   cvs -z3 -d anoncvs@cvs.caudiumforge.net:/cvs/caudium co -r BRANCH -P caudium
 cvs server: Updating caudium
 [cvs messages]
 ...
    

Developer Checkout
If you are a Caudium developer and want CVS write access, you need to check out the source using ssh. Replace LOGIN with your SourceForge login in the example below.

Development Version
 $ export CVS_RSH=ssh
    
Note: If you are using a C shell (csh, tcsh...) you may use this command instead:
 $ setenv CVS_RSH ssh
    
Then, checkout the caudium cvs module:
 $ cvs -z3 -d LOGIN@cvs.caudiumforge.net:/cvs/caudium co -P caudium
 cvs server: Updating caudium
 [cvs messages]
 ...
    
Branch Versions
Replace BRANCH below with the actual branch you want to check out. As of today, only stable_1_0 or stable_1_2 are available.
 $ export CVS_RSH=ssh
    
Note: If you are using a C shell (csh, tcsh...) you may use this command instead:
 $ setenv CVS_RSH ssh
    
Then, checkout the caudium cvs module for the wanted BRANCH:
 $ cvs -z3 -d LOGIN@cvs.caudiumforge.net:/cvs/caudium co -r BRANCH -P caudium
 cvs server: Updating caudium
 [cvs messages]
 ...
    

Updating the Source
Later, if you need to want to refresh your source tree from CVS, you change the directory to caudium and type:
 $ cvs -z3 update -Pd
 [cvs messages]
 ...
  
 
HTML OK CSS