From 2a3c2708fd1f55bd06d0b48a132d487a1745c075 Mon Sep 17 00:00:00 2001 From: "jkeiser%netscape.com" <> Date: Thu, 31 Jul 2003 03:04:48 +0000 Subject: Patch Viewer, a pretty way of viewing and manipulating patches (bug 174942). Requires PatchIterator to be installed, classes uploaded to that bug and will be soon in CPAN. --- defparams.pl | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) (limited to 'defparams.pl') diff --git a/defparams.pl b/defparams.pl index e2dcf7533..20700d02d 100644 --- a/defparams.pl +++ b/defparams.pl @@ -1057,6 +1057,73 @@ Reason: %reason% default => 1, }, +# Added for Patch Viewer stuff (attachment.cgi?action=diff) + { + name => 'cvsroot', + desc => 'The CVS root that most ' . + 'users of your system will be using for "cvs diff". Used in ' . + 'Patch Viewer ("Diff" option on patches) to figure out where ' . + 'patches are rooted even if users did the "cvs diff" from ' . + 'different places in the directory structure. (NOTE: if your ' . + 'CVS repository is remote and requires a password, you must ' . + 'either ensure the Bugzilla user has done a "cvs login" or ' . + 'specify the password ' . + 'as ' . + 'part of the CVS root.) Leave this blank if you have no ' . + 'CVS repository.', + type => 't', + default => '', + }, + + { + name => 'cvsroot_get', + desc => 'The CVS root Bugzilla will be using to get patches from. ' . + 'Some installations may want to mirror their CVS repository on ' . + 'the Bugzilla server or even have it on that same server, and ' . + 'thus the repository can be the local file system (and much ' . + 'faster). Make this the same as cvsroot if you don\'t ' . + 'understand what this is (if cvsroot is blank, make this blank ' . + 'too).', + type => 't', + default => '', + }, + + { + name => 'bonsai_url', + desc => 'The URL to a ' . + 'Bonsai ' . + 'server containing information about your CVS repository. ' . + 'Patch Viewer will use this information to create links to ' . + 'bonsai\'s blame for each section of a patch (it will append ' . + '"/cvsblame.cgi?..." to this url). Leave this blank if you ' . + 'don\'t understand what this is.', + type => 't', + default => '' + }, + + { + name => 'lxr_url', + desc => 'The URL to an ' . + 'LXR server ' . + 'that indexes your CVS repository. Patch Viewer will use this ' . + 'information to create links to LXR for each file in a patch. ' . + 'Leave this blank if you don\'t understand what this is.', + type => 't', + default => '' + }, + + { + name => 'lxr_root', + desc => 'Some LXR installations do not index the CVS repository from ' . + 'the root--' . + 'Mozilla\'s, for ' . + 'example, starts indexing under mozilla/. This ' . + 'means URLs are relative to that extra path under the root. ' . + 'Enter this if you have a similar situation. Leave it blank ' . + 'if you don\'t know what this is.', + type => 't', + default => '', + }, ); 1; -- cgit v1.2.3-24-g4f1b