зеркало из https://github.com/mozilla/pjs.git
24 строки
564 B
Perl
24 строки
564 B
Perl
|
# Example configuration file for Bonsai
|
||
|
|
||
|
# The Bonsai modules and their relation to cvs
|
||
|
|
||
|
# @::TreeList is a list of all configured Bonsai modules
|
||
|
# to add a module, add its name to @::TreeList
|
||
|
# then duplicate the "default" entry in @::TreeInfo and
|
||
|
# change the values appropriately
|
||
|
|
||
|
@::TreeList = ('default');
|
||
|
|
||
|
%::TreeInfo = (
|
||
|
default => {
|
||
|
branch => '',
|
||
|
description => 'My CVS repository',
|
||
|
module => 'All',
|
||
|
repository => '/cvsroot',
|
||
|
shortdesc => 'Mine',
|
||
|
},
|
||
|
,
|
||
|
);
|
||
|
|
||
|
1;
|