1999-10-18 22:55:01 +00:00
|
|
|
#!/usr/bonsaitools/bin/perl -w
|
1998-06-16 21:43:24 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
1999-11-01 23:33:56 +00:00
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
1998-06-16 21:43:24 +00:00
|
|
|
#
|
1999-11-01 23:33:56 +00:00
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
1998-06-16 21:43:24 +00:00
|
|
|
#
|
|
|
|
# The Original Code is the Bonsai CVS tool.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
1999-11-01 23:33:56 +00:00
|
|
|
# Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Query the CVS database.
|
|
|
|
#
|
1999-10-18 22:55:01 +00:00
|
|
|
|
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
# Shut up misguided -w warnings about "used only once". "use vars" just
|
|
|
|
# doesn't work for me.
|
|
|
|
|
|
|
|
sub sillyness {
|
|
|
|
my $zz;
|
|
|
|
$zz = $::Setup_String;
|
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
require 'CGI.pl';
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
$|=1;
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $CVS_ROOT = $::FORM{"cvsroot"};
|
1999-07-23 18:39:31 +00:00
|
|
|
$CVS_ROOT = pickDefaultRepository() unless $CVS_ROOT;
|
|
|
|
|
|
|
|
LoadTreeConfig();
|
|
|
|
$::TreeID = $::FORM{'module'}
|
|
|
|
if (!exists($::FORM{'treeid'}) &&
|
|
|
|
exists($::FORM{'module'}) &&
|
|
|
|
exists($::TreeInfo{$::FORM{'module'}}{'repository'}));
|
|
|
|
$::TreeID = 'default'
|
|
|
|
if (!exists($::TreeInfo{$::TreeID}{'repository'}) ||
|
|
|
|
exists($::TreeInfo{$::TreeID}{'nobonsai'}));
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
# get dir, remove leading and trailing slashes
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $dir = $::FORM{"dir"};
|
1999-10-19 16:41:40 +00:00
|
|
|
$dir = "" unless defined $dir;
|
1998-06-16 21:43:24 +00:00
|
|
|
$dir =~ s/^\/([^:]*)/$1/;
|
|
|
|
$dir =~ s/([^:]*)\/$/$1/;
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $rev = $::FORM{"rev"};
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-09-17 15:47:03 +00:00
|
|
|
if(!defined($rev)) {
|
|
|
|
$rev='';
|
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "Content-type: text/html\n\n";
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
2000-01-30 19:46:41 +00:00
|
|
|
my $registryurl = Param('registryurl');
|
|
|
|
$registryurl =~ s@/$@@;
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $script_str;
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
&setup_script;
|
1999-10-18 22:55:01 +00:00
|
|
|
$::Setup_String = $script_str;
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
if( $CVS_ROOT eq "" ){
|
|
|
|
$CVS_ROOT = pickDefaultRepository();
|
|
|
|
}
|
|
|
|
|
|
|
|
validateRepository($CVS_ROOT);
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $s = "";
|
|
|
|
|
1999-10-19 16:41:40 +00:00
|
|
|
if ($rev) {
|
1998-06-16 21:43:24 +00:00
|
|
|
$s = "for branch <i>$rev</i>";
|
|
|
|
}
|
|
|
|
|
1998-06-18 16:47:00 +00:00
|
|
|
CheckHidden("$CVS_ROOT/$dir");
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $revstr = '';
|
1999-07-23 18:39:31 +00:00
|
|
|
$revstr = "&rev=$rev" unless $rev eq '';
|
1999-10-18 22:55:01 +00:00
|
|
|
my $rootstr = '';
|
1999-07-23 18:39:31 +00:00
|
|
|
$rootstr .= "&cvsroot=$::FORM{'cvsroot'}" if defined $::FORM{'cvsroot'};
|
|
|
|
$rootstr .= "&module=$::TreeID";
|
1999-10-18 22:55:01 +00:00
|
|
|
my $module = $::TreeInfo{$::TreeID}{'module'};
|
1999-07-23 18:39:31 +00:00
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $toplevel = Param('toplevel');
|
1999-07-23 18:39:31 +00:00
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $output = "<DIV ALIGN=LEFT>";
|
1999-07-23 18:39:31 +00:00
|
|
|
$output .= "<A HREF='toplevel.cgi" . BatchIdPart('?') . "'>$toplevel</a>/ ";
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my ($dir_head, $dir_tail) = $dir =~ m@(.*/)?(.+)@;
|
|
|
|
$dir_head = "" unless defined $dir_head;
|
1999-10-20 00:27:16 +00:00
|
|
|
$dir_tail = "" unless defined $dir_tail;
|
1999-10-18 22:55:01 +00:00
|
|
|
my $link_path = "";
|
|
|
|
foreach my $path (split('/',$dir_head)) {
|
1998-06-16 21:43:24 +00:00
|
|
|
$link_path .= $path;
|
1999-07-23 18:39:31 +00:00
|
|
|
$output .= "<A HREF='rview.cgi?dir=$link_path$rootstr$revstr'>$path</A>/ ";
|
1998-06-16 21:43:24 +00:00
|
|
|
$link_path .= '/';
|
|
|
|
}
|
|
|
|
chop ($output);
|
1999-09-21 20:30:38 +00:00
|
|
|
$output .= " $dir_tail/ $s ";
|
1998-06-16 21:43:24 +00:00
|
|
|
$output .= "</DIV>";
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
PutsHeader("Repository Directory $toplevel/$dir $s", $output);
|
|
|
|
|
|
|
|
cvsmenu("align=right width=30%");
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $other_dir;
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
($other_dir = $dir) =~ s!^$module/?!!;
|
1999-10-18 22:55:01 +00:00
|
|
|
my $other_dir_used = 1;
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
LoadDirList();
|
|
|
|
if (-d "$CVS_ROOT/$dir") {
|
|
|
|
chdir "$CVS_ROOT/$dir";
|
|
|
|
$other_dir_used = 0;
|
|
|
|
} elsif (-d "$CVS_ROOT/$other_dir") {
|
|
|
|
chdir "$CVS_ROOT/$other_dir";
|
|
|
|
} else {
|
|
|
|
chdir "$CVS_ROOT";
|
|
|
|
}
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
print "
|
|
|
|
<TABLE CELLPADDING=0 CELLSPACING=0>
|
|
|
|
<FORM action=rview.cgi method=get><TR><TD>
|
|
|
|
Goto Directory:
|
|
|
|
</TD><TD><INPUT name=dir value='$dir' size=30>
|
|
|
|
<INPUT name=rev value='$rev' type=hidden>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT name=module value='$::TreeID' type=hidden>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT name=cvsroot value='$CVS_ROOT' type=hidden>
|
|
|
|
<INPUT type=submit value='chdir'>
|
|
|
|
</TD></TR></FORM>
|
|
|
|
<FORM action=rview.cgi method=get><TR><TD>
|
|
|
|
Branch:
|
|
|
|
</TD><TD><INPUT name=rev value='$rev' size=30>
|
|
|
|
<INPUT name=dir value='$dir' type=hidden>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT name=module value='$::TreeID' type=hidden>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT name=cvsroot value='$CVS_ROOT' type=hidden>
|
|
|
|
<INPUT type=submit value='Set Branch'>
|
1999-07-23 18:39:31 +00:00
|
|
|
</TR></FORM>
|
1998-06-16 21:43:24 +00:00
|
|
|
</TABLE>
|
|
|
|
|
|
|
|
";
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my @dirs = ();
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
|
|
|
|
DIR:
|
1998-06-16 21:43:24 +00:00
|
|
|
while( <*> ){
|
|
|
|
if( -d $_ ){
|
1999-07-26 23:46:04 +00:00
|
|
|
push @dirs, $_;
|
1998-06-16 21:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
my $j;
|
|
|
|
my $split;
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
if( @dirs != 0 ){
|
|
|
|
$j = 1;
|
|
|
|
$split = int(@dirs/4)+1;
|
|
|
|
print "<P><FONT SIZE=+1><B>Directories:</B></FONT><table><TR VALIGN=TOP><td>";
|
|
|
|
|
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
for my $i (@dirs){
|
1999-07-23 18:39:31 +00:00
|
|
|
$::FORM{"dir"} = ($dir ne "" ? "$dir/$i" : $i);
|
1999-10-18 22:55:01 +00:00
|
|
|
my $anchor = &make_cgi_args;
|
1998-06-16 21:43:24 +00:00
|
|
|
print "<dt><a href=rview.cgi${anchor}>$i</a>\n";
|
|
|
|
if( $j % $split == 0 ){
|
|
|
|
print "\n<td>\n";
|
|
|
|
}
|
|
|
|
$j++;
|
|
|
|
}
|
1999-07-23 18:39:31 +00:00
|
|
|
$::FORM{"dir"} = $dir;
|
1998-06-16 21:43:24 +00:00
|
|
|
print "\n</tr></table>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "<P><FONT SIZE=+1><B>Files:</B></FONT>";
|
|
|
|
print "<table><TR VALIGN=TOP><td>";
|
1999-10-18 22:55:01 +00:00
|
|
|
my @files = <*,v>;
|
1998-06-16 21:43:24 +00:00
|
|
|
$j = 1;
|
|
|
|
$split = int(@files/4)+1;
|
|
|
|
|
|
|
|
for $_ (@files){
|
|
|
|
$_ =~ s/\,v//;
|
2000-01-30 19:46:41 +00:00
|
|
|
print qq{<a href="$registryurl/file.cgi?cvsroot=$CVS_ROOT&file=$_&dir=$dir"}
|
1998-06-16 21:43:24 +00:00
|
|
|
. " onclick=\"return js_file_menu('$dir','$_','$rev','$CVS_ROOT',event)\">\n";
|
|
|
|
print "<dt>$_</a>\n";
|
|
|
|
if( $j % $split == 0 ){
|
|
|
|
print "\n<td>\n";
|
|
|
|
}
|
|
|
|
$j++;
|
|
|
|
}
|
|
|
|
print "\n</tr></table>\n";
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
PutsTrailer();
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
sub setup_script {
|
|
|
|
|
2001-10-11 18:44:14 +00:00
|
|
|
$script_str = qq%
|
|
|
|
<script type="application/x-javascript"><!--
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
var event = new Object;
|
|
|
|
|
|
|
|
function js_who_menu(n,extra,d) {
|
1999-09-17 15:47:03 +00:00
|
|
|
if( parseInt(navigator.appVersion) < 4 ||
|
|
|
|
navigator.userAgent.toLowerCase().indexOf("msie") != -1 ){
|
1998-06-16 21:43:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
l = document.layers['popup'];
|
2000-01-30 19:46:41 +00:00
|
|
|
l.src="$registryurl/who.cgi?email="+n+extra;
|
1998-06-26 18:12:08 +00:00
|
|
|
|
|
|
|
if(d.target.y > window.innerHeight + window.pageYOffset - l.clip.height) {
|
|
|
|
l.top = (window.innerHeight + window.pageYOffset - l.clip.height);
|
|
|
|
} else {
|
|
|
|
l.top = d.target.y - 6;
|
|
|
|
}
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
l.left = d.target.x - 6;
|
1998-06-26 18:12:08 +00:00
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
if( l.left + l.clipWidth > window.width ){
|
|
|
|
l.left = window.width - l.clipWidth;
|
|
|
|
}
|
|
|
|
l.visibility="show";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function js_file_menu(dir,file,rev,root,d) {
|
1999-09-17 15:47:03 +00:00
|
|
|
if( parseInt(navigator.appVersion) < 4 ||
|
|
|
|
navigator.userAgent.toLowerCase().indexOf("msie") != -1 ){
|
1998-06-16 21:43:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
l = document.layers['popup'];
|
2000-01-30 19:46:41 +00:00
|
|
|
l.src="$registryurl/file.cgi?file="+file+"&dir="+dir+"&rev="+rev+"&cvsroot="+root+"&linked_text="+d.target.text;
|
1998-06-26 18:12:08 +00:00
|
|
|
|
|
|
|
if(d.target.y > window.innerHeight + window.pageYOffset - l.clip.height) {
|
|
|
|
l.top = (window.innerHeight + window.pageYOffset - l.clip.height);
|
|
|
|
} else {
|
|
|
|
l.top = d.target.y - 6;
|
|
|
|
}
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
l.left = d.target.x - 6;
|
1998-06-26 18:12:08 +00:00
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
if( l.left + l.clipWidth > window.width ){
|
|
|
|
l.left = window.width - l.clipWidth;
|
|
|
|
}
|
1998-06-26 18:12:08 +00:00
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
l.visibility="show";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<layer name="popup" onMouseOut="this.visibility='hide';" left=0 top=0 bgcolor="#ffffff" visibility="hide">
|
|
|
|
</layer>
|
|
|
|
|
2001-10-11 18:44:14 +00:00
|
|
|
%;
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|