diff --git a/mozilla/webtools/tinderbox2/src/default_conf/TreeData.pm b/mozilla/webtools/tinderbox2/src/default_conf/TreeData.pm index 6ac0b499ffb..b32e1445373 100644 --- a/mozilla/webtools/tinderbox2/src/default_conf/TreeData.pm +++ b/mozilla/webtools/tinderbox2/src/default_conf/TreeData.pm @@ -29,8 +29,8 @@ # issue to work out. -# $Revision: 1.17 $ -# $Date: 2002-05-10 21:21:07 $ +# $Revision: 1.18 $ +# $Date: 2002-12-10 19:49:27 $ # $Author: kestes%walrus.com $ # $Source: /home/befator/cvs/jail/cvsroot/mozilla/webtools/tinderbox2/src/default_conf/TreeData.pm,v $ # $Name: not supported by cvs2svn $ @@ -206,6 +206,42 @@ $VERSION = '#tinder_version#'; ); +sub TreeName2Root { + my ($treename) = @_; + + my $root = $VC_TREE{$treename}{'root'}; + + return $root; +} + +sub TreeName2Module { + my ($treename) = @_; + + my $module = $VC_TREE{$treename}{'module'}; + + return $module; +} + +sub TreeName2Branch { + my ($treename) = @_; + + my $branch = $VC_TREE{$treename}{'branch'}; + + return $branch; +} + +sub TreeName2DirPattern { + my ($treename) = @_; + + my $dir_pattern = $VC_TREE{$treename}{'dir_pattern'}; + + return $dir_pattern; +} + +sub TreeName2is_bonsai_default { +} + + # We group trees into sets so that individual managers can get a page # of all the projects they manage. This is a mapping from managers # email address to the set of projects they are interested in. This