diff --git a/webtools/tinderbox/admintree.cgi b/webtools/tinderbox/admintree.cgi index 2b175fcf5a4..dac8c181b65 100755 --- a/webtools/tinderbox/admintree.cgi +++ b/webtools/tinderbox/admintree.cgi @@ -146,20 +146,32 @@ print "
-Create a new tinderbox page. +Create a new tinderbox page, examples for SeaMonkey shown in parens. - + + + - + + + - + + + + + + + + +
tinderbox tree name:
(SeaMonkey)
cvs repository:
(/cvsroot)
cvs module name:
(MozillaTinderboxAll)
cvs branch: (HEAD)
bonsai tree:(SeaMonkey)
Password: diff --git a/webtools/tinderbox/doadmin.cgi b/webtools/tinderbox/doadmin.cgi index 40c40a033ed..510a29e26ba 100755 --- a/webtools/tinderbox/doadmin.cgi +++ b/webtools/tinderbox/doadmin.cgi @@ -119,6 +119,7 @@ sub create_tree { my $repository = $form{'repository'}; $modulename = $form{'modulename'}; $branchname = $form{'branchname'}; + $bonsaitreename = $form{'bonsaitreename'}; if( -r $treename ){ chmod 0777, $treename; @@ -129,6 +130,7 @@ sub create_tree { open( F, ">$treename/treedata.pl" ); print F "\$cvs_module='$modulename';\n"; print F "\$cvs_branch='$branchname';\n"; + print F "\$bonsai_tree='$bonsaitreename';\n"; if ($repository ne "") { print F "\$cvs_root='$repository';\n"; }