1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<?php
/*
* $Horde: chora/config/sourceroots.php.dist,v 1.2 2003/08/27 14:08:21 chuck Exp $
*
* This file contains all the configuration information for the
* various CVS repositories that you wish to display. You should have
* a minimum of one entry here! The following fields are allowed in
* the description, and those with a [M] are Mandatory, and should not
* be left out.
*
* 'name' [M] : Short name for the repository.
*
* 'location' [M] : Location on the filesystem of the repository.
*
* 'title' [M] : Long title for the repository.
*
* 'type' [M] : Indicates software used, either 'cvs' or 'svn'.
*
* 'default' : To make that repository the default one to show.
*
* 'intro' : File which contains some introductory text to show
* on the front page of this repository. This file is
* located in the config/ directory.
*
* 'cvsusers' : A list of all committers with real names and email
* addresses, that normally sits in the CVSROOT/cvsusers
* file. If it is found, then more useful information
* will be shown.
*
* 'restrictions' : Array of perl-style regular expressions for those files
* whose contents should be protected and not displayed.
*/
$sourceroots['php4'] = array(
'name' => 'PHP4',
'location' => '/home/cvs/php4',
'title' => 'PHP4 CVS Repository',
'intro' => 'php-intro.txt',
'default' => true,
'type' => 'cvs',
);
$sourceroots['horde'] = array(
'name' => 'Horde',
'location' => '/home/cvs/horde',
'title' => 'Horde CVS Repository',
'cvsusers' => 'CVSROOT/cvsusers',
'intro' => 'horde-intro.txt',
'restrictions' => array('^/?hordeweb/config/defaults.php'),
'type' => 'cvs',
);
$sourceroots['subversion'] = array(
'name' => 'Subversion',
'location' => 'http://svn.collab.net/repos/svn',
'title' => 'A Compelling Replacement for CVS',
'type' => 'svn'
);
$sourceroots['localsvn'] = array(
'name' => 'MySVNProj',
'location' => 'file:///svndata/subvn',
'title' => 'Main Subversion Repos',
'type' => 'svn',
);
$sourceroots['openbsd'] = array(
'name' => 'OpenBSD',
'location' => '/home/cvs/openbsd',
'title' => 'OpenBSD CVS Repository',
'type' => 'cvs',
);
|