From 2cbd49941ebbbdb8bdfc7609e3135bf1f7f48646 Mon Sep 17 00:00:00 2001 From: "kestes%walrus.com" Date: Wed, 24 Dec 2003 12:20:32 +0000 Subject: [PATCH] sample config files for this hacked version of bonsai. git-svn-id: svn://10.0.0.236/trunk@150708 18797224-902f-48f8-a5cc-f745e15eee43 --- .../tinderbox2/src/bonsai_pvcs/data/params | 39 +++++++++++++++++++ .../src/bonsai_pvcs/data/treeconfig.pl | 22 +++++++++++ 2 files changed, 61 insertions(+) create mode 100644 mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/params create mode 100644 mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/treeconfig.pl diff --git a/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/params b/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/params new file mode 100644 index 00000000000..833591994de --- /dev/null +++ b/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/params @@ -0,0 +1,39 @@ +$::param{'bannerhtml'} = ' +
+
Bonsai version %version% +
'; +$::param{'blurbhtml'} = 'This is Bonsai_pvcs: a query interface to the PVCS source repository'; +$::param{'bonsai-daemon'} = 'bonsai-daemon'; +$::param{'bonsai-hookinterest'} = 'bonsai-hookinterest'; +$::param{'bonsai-messageinterest'} = 'bonsai-messageinterest'; +$::param{'bonsai-treeinterest'} = 'bonsai-treeinterest'; +$::param{'bugsmatch'} = '9'; +$::param{'bugsystemexpr'} = '%bug_id%'; +$::param{'bugs_base'} = 'http://bugzilla.com/'; +$::param{'cocommand'} = '/usr/bin/co'; +$::param{'cvsadmin'} = '%maintainer%'; +$::param{'cvscommand'} = '/usr/bin/cvs'; +$::param{'cvsgraph'} = '/usr/local/bin/cvsgraph'; +$::param{'dbiparam'} = 'DBI:mysql:database=bonsai;'; +$::param{'headerhtml'} = ''; +$::param{'ldapport'} = '389'; +$::param{'ldapserver'} = ''; +$::param{'lxr_base'} = 'http://lxr.mozilla.org/'; +$::param{'lxr_mungeregexp'} = ''; +$::param{'mailrelay'} = 'localhost'; +$::param{'maintainer'} = 'administrator@yourhost.com'; +$::param{'mysqlpassword'} = ''; +$::param{'mysqluser'} = 'root'; +$::param{'other_ref_urls'} = 'Mozilla\'s Introduction to +Bonsai.
'; +$::param{'phonebookurl'} = '%user_name%'; +$::param{'rcsdiffcommand'} = '/usr/bin/rcsdiff'; +$::param{'readonly'} = '0'; +$::param{'registryurl'} = '../registry/'; +$::param{'rlogcommand'} = '/usr/bin/rlog'; +$::param{'software'} = 'software'; +$::param{'tinderboxbase'} = 'http://tinderbox.com/tinderbox2'; +$::param{'toplevel'} = 'hooklist'; +$::param{'urlbase'} = 'http://bonsai.com/cgi-bin/bonsai/'; +$::param{'userdomain'} = 'mailerhost.com'; +1; diff --git a/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/treeconfig.pl b/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/treeconfig.pl new file mode 100644 index 00000000000..49779211342 --- /dev/null +++ b/mozilla/webtools/tinderbox2/src/bonsai_pvcs/data/treeconfig.pl @@ -0,0 +1,22 @@ +# 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 => 'All', + module => 'all', + repository => '/usr/local/cluster1', + shortdesc => 'All Files in the Repository', + }, + ); + +1;