2006-01-13 16:57:25 +00:00
|
|
|
#!/usr/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
|
|
|
#
|
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
|
|
|
|
1999-10-18 22:55:01 +00:00
|
|
|
use strict;
|
|
|
|
|
|
|
|
# Shut up misguided -w warnings about "used only once". "use vars" just
|
|
|
|
# doesn't work for me.
|
|
|
|
|
|
|
|
sub sillyness {
|
|
|
|
my $zz;
|
|
|
|
$zz = $::TreeInfo;
|
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
require 'CGI.pl';
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "Content-type: text/html\n\n";
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
my $Filename = FormData('msgname');
|
|
|
|
my $RealFilename = DataDir() . "/$Filename";
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
my $Text = '';
|
2004-09-15 22:44:55 +00:00
|
|
|
if (-f $RealFilename) {
|
2004-09-22 06:34:34 +00:00
|
|
|
open(FILE, $RealFilename);
|
2004-09-15 22:44:55 +00:00
|
|
|
while (<FILE>) {
|
|
|
|
$Text .= $_;
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
LoadTreeConfig();
|
|
|
|
PutsHeader("Message Editor", "Message Editor",
|
|
|
|
"$Filename - $::TreeInfo{$::TreeID}{shortdesc}");
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "
|
|
|
|
Below is the template for the <b>$Filename</b> message. Type the
|
1998-06-16 21:43:24 +00:00
|
|
|
magic word and edit at will, but be careful to not break anything,
|
|
|
|
especially around the headers.
|
|
|
|
|
|
|
|
The following magic symbols exist:
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
<table>
|
|
|
|
";
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
sub PutDoc {
|
|
|
|
my ($name, $desc) = @_;
|
1998-06-16 21:43:24 +00:00
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "\n<tr>\n<td align=right><tt><b>%$name%</b></tt></td>
|
|
|
|
<td>Replaced by the $desc</td>\n</tr>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($Filename eq 'openmessage') || ($Filename eq 'closemessage')) {
|
|
|
|
PutDoc('name', "username of the person getting mail");
|
|
|
|
PutDoc('dir', "directory for this checkin");
|
|
|
|
PutDoc('files', "list of files for this checkin");
|
|
|
|
PutDoc('log', "log message for this checkin");
|
|
|
|
PutDoc('profile', "profile for this user");
|
|
|
|
} elsif (($Filename eq 'treeopened') || ($Filename eq 'treeopenedsamehook') ||
|
|
|
|
($Filename eq 'treeclosed')) {
|
|
|
|
PutDoc('hooklist', "comma-separated list of e-mail address of people on the hook");
|
|
|
|
} else {
|
|
|
|
print "</table><P><font color=red>
|
|
|
|
Uh, hey, this isn't a legal file for you to be editing here!</font>\n";
|
|
|
|
PutsTrailer();
|
|
|
|
exit 0;
|
1998-06-16 21:43:24 +00:00
|
|
|
}
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
print "
|
1998-06-16 21:43:24 +00:00
|
|
|
</TABLE>
|
|
|
|
<FORM method=get action=\"doeditmessage.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>
|
1999-07-23 18:39:31 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=msgname VALUE=$Filename>
|
2004-12-01 00:40:18 +00:00
|
|
|
<INPUT TYPE=HIDDEN NAME=origtext VALUE=\"" . &url_quote($Text) . "\">
|
1999-07-23 18:39:31 +00:00
|
|
|
<TEXTAREA NAME=text ROWS=40 COLS=80>$Text</TEXTAREA><BR>
|
1998-06-16 21:43:24 +00:00
|
|
|
<INPUT TYPE=SUBMIT VALUE=\"Change this message\">
|
|
|
|
</FORM>
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
";
|
1998-06-16 21:43:24 +00:00
|
|
|
|
|
|
|
|
1999-07-23 18:39:31 +00:00
|
|
|
PutsTrailer();
|
|
|
|
exit 0;
|
1998-06-16 21:43:24 +00:00
|
|
|
|