1999-07-26 23:59:03 +00:00
|
|
|
#!/usr/bonsaitools/bin/perl -w
|
1999-07-23 18:39:31 +00:00
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
1998-06-16 21:43:24 +00:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (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/
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is the Bonsai CVS tool.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
# Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
# Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
require 'CGI.pl';
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-26 23:59:03 +00:00
|
|
|
use diagnostics;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
sub StupidFuncToShutUpWarningsByUsingVarsAgain {
|
|
|
|
my $z;
|
|
|
|
$z = $::TreeOpen;
|
|
|
|
$z = $::CloseTimeStamp;
|
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
Lock();
|
|
|
|
LoadCheckins();
|
|
|
|
LoadMOTD();
|
|
|
|
LoadTreeConfig();
|
|
|
|
Unlock();
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-26 23:59:03 +00:00
|
|
|
my $BIP = BatchIdPart('?');
|
|
|
|
my $BIP_nohook = BatchIdPart();
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "Content-type: text/html\n\n";
|
|
|
|
PutsHeader("Bonsai Administration [`$::TreeID' Tree]",
|
|
|
|
"Bonsai Administration",
|
|
|
|
"Administrating `$::TreeID' Tree");
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print <<EOF ;
|
|
|
|
<pre>
|
|
|
|
</pre>
|
|
|
|
<center><b>
|
1998-06-16 21:43:24 +00:00
|
|
|
You realize, of course, that you have to know the magic password to do
|
|
|
|
anything from here.
|
1999-07-23 18:39:31 +00:00
|
|
|
</b></center>
|
|
|
|
<pre>
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
</pre>
|
1998-06-16 21:43:24 +00:00
|
|
|
<hr>
|
1999-07-23 18:39:31 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
|
TweakCheckins();
|
|
|
|
CloseTree();
|
|
|
|
TweakTimestamps();
|
|
|
|
ChangeMOTD();
|
|
|
|
EditEmailMessage();
|
|
|
|
RebuildHook();
|
|
|
|
RebuildTags();
|
|
|
|
RebuildHistory();
|
|
|
|
ChangePasswd();
|
|
|
|
|
|
|
|
PutsTrailer();
|
|
|
|
exit 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub TweakCheckins {
|
|
|
|
print qq(
|
|
|
|
|
|
|
|
<a href="showcheckins.cgi?tweak=1$BIP_nohook">
|
|
|
|
Go tweak bunches of checkins at once.</a><br>
|
|
|
|
<a href="editparams.cgi">
|
|
|
|
Edit Bonsai operating parameters.</a>
|
1998-06-16 21:43:24 +00:00
|
|
|
<hr>
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
sub CloseTree { # Actually opens tree also
|
|
|
|
my $timestamp = value_quote(MyFmtClock(time));
|
|
|
|
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
<FORM method=get action=\"doadmin.cgi\">
|
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
|
|
|
);
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
if ($::TreeOpen) {
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=close>
|
|
|
|
<B>Closing time stamp is:</B>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT NAME=closetimestamp VALUE=\"$timestamp\"><BR>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Close the tree\">
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=open>
|
|
|
|
<B>The new \"good\" timestamp is:</B>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT NAME=lastgood VALUE=\"$timestamp\"><BR>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=CHECKBOX NAME=doclear CHECKED>Clear the list of checkins.<BR>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Open the tree\">
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
print qq(</FORM>\n<hr>\n\n);
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
|
|
|
|
sub TweakTimestamps {
|
|
|
|
my $lg_timestamp = value_quote(MyFmtClock($::LastGoodTimeStamp));
|
|
|
|
my $c_timestamp = value_quote(MyFmtClock($::CloseTimeStamp));
|
|
|
|
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
<FORM method=get action=\"doadmin.cgi\">
|
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=tweaktimes>
|
|
|
|
<TABLE>
|
|
|
|
<TR>
|
|
|
|
<TD><B>Last good timestamp:</B></TD>
|
1999-07-23 18:39:31 +00:00
|
|
|
<TD><INPUT NAME=lastgood VALUE=\"$lg_timestamp\"></TD>
|
1998-06-16 21:43:24 +00:00
|
|
|
</TR><TR>
|
|
|
|
|
|
|
|
<TD><B>Last close timestamp:</B></TD>
|
1999-07-23 18:39:31 +00:00
|
|
|
<TD><INPUT NAME=lastclose VALUE=\"$c_timestamp\"></TD>
|
1998-06-16 21:43:24 +00:00
|
|
|
</TR>
|
|
|
|
</TABLE>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Tweak the timestamps\">
|
|
|
|
</FORM>
|
1999-07-23 18:39:31 +00:00
|
|
|
<hr>
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub ChangeMOTD {
|
|
|
|
my $motd = value_quote($::MOTD);
|
|
|
|
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
<FORM method=get action=\"doadmin.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=editmotd>
|
|
|
|
|
|
|
|
Change the message-of-the-day:<br>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=origmotd VALUE=\"$motd\">
|
|
|
|
<TEXTAREA NAME=motd ROWS=10 COLS=50>$::MOTD</TEXTAREA><BR>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Change the MOTD\">
|
|
|
|
</FORM>
|
1999-07-23 18:39:31 +00:00
|
|
|
<hr>
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
|
|
|
|
sub EditEmailMessage {
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
<FORM method=get action=\"editmessage.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
Change the e-mail message sent:
|
|
|
|
<SELECT NAME=msgname SIZE=1>
|
|
|
|
<OPTION VALUE=openmessage>when a checkin is made when the tree is open.
|
|
|
|
<OPTION VALUE=closemessage>when a checkin is made when the tree is closed.
|
|
|
|
<OPTION VALUE=treeopened>to the hook when the tree opens
|
1999-07-23 18:39:31 +00:00
|
|
|
<OPTION VALUE=treeopenedsamehook>to the hook when the tree opens and the hook isn\'t cleared
|
1998-06-16 21:43:24 +00:00
|
|
|
<OPTION VALUE=treeclosed>to the hook when the tree closes
|
1999-07-23 18:39:31 +00:00
|
|
|
</SELECT><br>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Edit a message\">
|
|
|
|
</FORM>
|
1999-07-23 18:39:31 +00:00
|
|
|
<hr>
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
sub RebuildHook {
|
|
|
|
my $lg_timestamp = value_quote(MyFmtClock($::LastGoodTimeStamp));
|
|
|
|
|
|
|
|
print qq(
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
<FORM method=get action=\"repophook.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=repophook>
|
|
|
|
Repopulate the hook from scratch.<p>
|
|
|
|
<font color=red size=+2>This can be very dangerous.</font> You should
|
|
|
|
usually only need to do this to populate a new Bonsai branch.
|
|
|
|
<p>
|
|
|
|
<b>Use any checkin since:</b>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT NAME=startfrom VALUE=\"$lg_timestamp\">
|
1998-06-16 21:43:24 +00:00
|
|
|
<br>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Rebuild the hook\">
|
|
|
|
</FORM>
|
|
|
|
<hr>
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub RebuildTags {
|
|
|
|
print qq(
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
<FORM method=get action=\"rebuildtaginfo.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=rebuildtaginfo>
|
1999-07-23 18:39:31 +00:00
|
|
|
Recreate the entire table of tags for the $::TreeInfo{$::TreeID}{repository}
|
1998-06-16 21:43:24 +00:00
|
|
|
repository from scratch.
|
|
|
|
<p>
|
|
|
|
<font color=red size=+2>This can take a very, very long time.</font> You
|
|
|
|
should
|
|
|
|
usually only need to do this when first introducing an entire CVS repository
|
|
|
|
into Bonsai. (And, in fact, nothing right now ever even uses that info, so
|
|
|
|
don't bother unless you know what you're doing.)
|
|
|
|
<br>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Rebuild tag information\">
|
|
|
|
</FORM>
|
|
|
|
<hr>
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub RebuildHistory {
|
|
|
|
my $timestamp = value_quote(MyFmtClock(0));
|
|
|
|
|
|
|
|
print qq(
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
<FORM method=get action=\"rebuildcvshistory.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<B>Password:</B> <INPUT NAME=password TYPE=password> <BR>
|
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=rebuildcvs>
|
|
|
|
Recreate the entire list of every checkin ever done to the
|
1999-07-23 18:39:31 +00:00
|
|
|
$::TreeInfo{$::TreeID}{repository} repository from scratch.
|
1998-06-16 21:43:24 +00:00
|
|
|
<p>
|
|
|
|
<font color=red size=+2>This can take an incredibly long time.</font> You
|
|
|
|
should
|
|
|
|
usually only need to do this when first introducing an entire CVS repository
|
|
|
|
into Bonsai.
|
|
|
|
<p>
|
|
|
|
<b>Ignore checkins earlier than:</b>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT NAME=startfrom VALUE=\"$timestamp\">
|
1998-06-16 21:43:24 +00:00
|
|
|
<br>
|
1999-07-23 18:39:31 +00:00
|
|
|
<b>Ignore files before (must be full path starting
|
|
|
|
with $::TreeInfo{$::TreeID}{repository}; leave blank to do everything):</b>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT NAME=firstfile VALUE=\"\" size=50>
|
|
|
|
<br>
|
1999-07-23 18:39:31 +00:00
|
|
|
<b>Only do files within the subdirectory of
|
|
|
|
$::TreeInfo{$::TreeID}{repository} named:</b>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT NAME=subdir VALUE=\".\" size=50>
|
|
|
|
<br>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Rebuild cvs history\">
|
|
|
|
</FORM>
|
|
|
|
<hr>
|
1999-07-23 18:39:31 +00:00
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub ChangePasswd {
|
|
|
|
print qq(
|
|
|
|
|
1998-06-16 21:43:24 +00:00
|
|
|
<FORM method=post action=\"doadmin.cgi\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=treeid VALUE=$::TreeID>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=command VALUE=changepassword>
|
|
|
|
Change password.<BR>
|
|
|
|
<B>Old password:</B> <INPUT NAME=password TYPE=password> <BR>
|
|
|
|
<B>New password:</B> <INPUT NAME=newpassword TYPE=password> <BR>
|
|
|
|
<B>Retype new password:</B> <INPUT NAME=newpassword2 TYPE=password> <BR>
|
|
|
|
<INPUT TYPE=RADIO NAME=doglobal VALUE=0 CHECKED>Change password for this tree<BR>
|
|
|
|
<INPUT TYPE=RADIO NAME=doglobal VALUE=1>Change master Bonsai password<BR>
|
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Change the password\">
|
|
|
|
</FORM>
|
1999-07-23 18:39:31 +00:00
|
|
|
);
|
|
|
|
}
|