commit 5b21742087ff57cec0e870210fa34c161b867dea
parent 3dd1edb1e40ada187d10eca4c840c9ca2d10a19d
Author: ukai <ukai>
Date: Mon, 28 Jan 2002 14:44:56 +0000
[w3m-dev 02919] no need of width
* scripts/w3mmail.cgi.in: no need width=80 for header field name
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat:
2 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,10 @@
2002-01-28 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
+ * [w3m-dev 02919] no need of width
+ * scripts/w3mmail.cgi.in: no need width=80 for header field name
+
+2002-01-28 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
+
* [w3m-dev 02919] wrong table width calculation
* table.c (set_table_matrix0): refine width calculation
diff --git a/scripts/w3mmail.cgi.in b/scripts/w3mmail.cgi.in
@@ -40,19 +40,19 @@ if ($query =~ s/^\w+://) {
print "<table>\n";
if ($opt{'from'}) {
$v = &lang_html_quote($opt{'from'});
- print "<tr><td width=80>From:<td>$v\n";
+ print "<tr><td>From:<td>$v\n";
print "<input type='hidden' name='from' value=\"$v\">\n";
delete $opt{'from'};
}
foreach $h ('to', 'cc', 'bcc', 'subject') {
$v = &lang_html_quote($opt{$h});
- print "<tr><td width=80>\u$h:<td><input type='text' name=\"$h\" value=\"$v\">\n";
+ print "<tr><td>\u$h:<td><input type='text' name=\"$h\" value=\"$v\">\n";
delete $opt{$h};
}
foreach $h (keys %opt) {
$qh = &html_quote($h);
$v = &lang_html_quote($opt{$h});
- print "<tr><td width=80>\u$h:<td>$v\n";
+ print "<tr><td>\u$h:<td>$v\n";
print "<input type='hidden' name=\"$qh\" value=\"$v\">\n";
}
print "<tr><td colspan=2>\n";
@@ -114,17 +114,17 @@ if ($query =~ s/^\w+://) {
print "<hr>\n";
print "<table>\n";
if ($opt{'from'}) {
- print "<tr><td width=80>From:<td>$v{'from'}\n";
+ print "<tr><td>From:<td>$v{'from'}\n";
print "<input type='hidden' name='from' value=\"$v\">\n";
delete $opt{'from'};
}
foreach $h ('to', 'cc', 'bcc', 'subject') {
- print "<tr><td width=80>\u$h:<td><input type='text' name=\"$h\" value=\"$v{$h}\">\n";
+ print "<tr><td>\u$h:<td><input type='text' name=\"$h\" value=\"$v{$h}\">\n";
delete $opt{$h};
}
foreach $h (keys %opt) {
$qh = &html_quote($h);
- print "<tr><td width=80>\u$qh:<td>$v{$h}\n";
+ print "<tr><td>\u$qh:<td>$v{$h}\n";
print "<input type='hidden' name=\"$qh\" value=\"$v\">\n";
}
print "<tr><td colspan=2>\n";