From: Hironori S. <hs...@mt...> - 2002-02-21 09:17:54
|
$B:dK\$G$9!#(B w3mmlconfig $B$r(B mlconfig $B$K9g$o$;$F99?7$7$^$7$?!#(B # section/copy_paste $B$r:o=|(B # section/font, key/sb_bg_color, key/sb_fg_color $B$rDI2C(B $B$?$@!"(Buse_multi_column_char $B$,>o$K(B false $B$K$J$C$F$7$^$$$^$9!#(B use_multi_column_char $B$H(B use_multi_col_char $B$,:.:_$7$F$$$kMM$G$9!#(B $B$H$3$m$G!"(B scrollbar $B$N(B sample $B$N>e2<$N"%$,$A$g$C$HA0$+$i"#$K$7$+$J$C$F$$$J$$(B $B$N$G$9$,!";d$N4D6-$@$1$J$s$G$7$g$&$+!#(B($B2!$9$H"%$K$J$j$^$9(B) ----------------------------------- $B:dK\(B $B9@B'(B <hs...@mt...> http://www2u.biglobe.ne.jp/~hsaka/ --- mk_mlconfig-data.pl.orig Wed Feb 6 15:04:48 2002 +++ mk_mlconfig-data.pl Thu Feb 21 17:41:53 2002 @@ -2,7 +2,7 @@ while(<>) { /^#/ && next; chop; - ($s, $c, $r, $t) = split(" ", $_, 4); + (($s, $c, $r, $t) = split(" ", $_, 4)) >= 4 || next; push(@section, $s); $section_attr->{$s} = { col => $c, --- mlconfig-data.orig Wed Feb 6 15:03:08 2002 +++ mlconfig-data Thu Feb 21 17:35:03 2002 @@ -1,7 +1,5 @@ # id col row title encoding 0 1 Encoding -appearance 1 2 Appearance -copy_paste 0 2 Copy&paste -others 0 2 Others -font 0 1 Font -wall_picture -1 -1 +appearance 1 1 Appearance +scrollbar 0 1 Scrollbar +others 1 1 Others --- mlconfig.cgi.in.orig Thu Feb 7 10:21:09 2002 +++ mlconfig.cgi.in Thu Feb 21 17:50:46 2002 @@ -38,9 +38,9 @@ } elsif ($value->{fontsize_smaller}) { &set_config({ fontsize => 'smaller' }); &get_config([ 'fontsize' ]); - } elsif ($value->{wall_picture_off}) { - &set_config({ wall_picture => '' }); - &get_config([ 'wall_picture' ]); +# } elsif ($value->{wall_picture_off}) { +# &set_config({ wall_picture => '' }); +# &get_config([ 'wall_picture' ]); } } } else { @@ -77,9 +77,9 @@ <body> <form action="$CGI" method=POST> <input type=hidden name="QUIT" value="$value->{QUIT}"> -<h1 align=center>mlterm configuration</h1> <center> <table border=1> +<caption><b>mlterm configuration</b></caption> EOF for $s (@section) { &make_section($s); @@ -97,15 +97,17 @@ <tr><td>Font size<br> <input type=submit name="fontsize_larger" value="Larger"> <input type=submit name="fontsize_smaller" value="Smaller"> -<td>Wall picture<br> EOF - $k = 'wall_picture'; - print "<input type=text name=\"$k\" value=\"", - &html_quote($value->{$k}), "\">\n"; - print "<input type=hidden name=\"default-$k\" value=\"", - &html_quote($value->{$k}), "\">\n"; +#<td>Wall picture<br> +#EOF +# $k = 'wall_picture'; +# print "<input type=text name=\"$k\" value=\"", +# &html_quote($value->{$k}), "\">\n"; +# print "<input type=hidden name=\"default-$k\" value=\"", +# &html_quote($value->{$k}), "\">\n"; +# print <<EOF; +#<input type=submit name="wall_picture_off" value="Off"> print <<EOF; -<input type=submit name="wall_picture_off" value="Off"> <td>Full Reset<br> <input type=submit name="full_reset" value="Full Reset"> </table> @@ -130,7 +132,7 @@ print <<EOF; <td align=left valign=top rowspan=$attr->{row}> <b>$attr->{title}</b> -<table width="256"> +<table> EOF for $k (@{$attr->{key}}) { &make_key($k); --- section/appearance.orig Wed Feb 6 15:04:49 2002 +++ section/appearance Thu Feb 21 17:38:11 2002 @@ -1,6 +1,9 @@ +fontsize text:digit 16 0 Font size fg_color select:lower black 0 FG color bg_color select:lower white 0 BG color -line_space text:digit 0 0 Line space brightness text:digit 100 0 Brightness fade_ratio text:digit 100 0 Fade ratio +wall_picture text none 0 Wall picture +use_variable_column_width checkbox false 0 Variable column width +use_anti_alias checkbox false 0 Anti Alias use_transbg checkbox false 0 Transparent --- section/copy_paste.orig Thu Jan 24 14:29:08 2002 +++ section/copy_paste Thu Feb 21 17:26:46 2002 @@ -1,2 +0,0 @@ -_copy_paste none - 0 For unicode-subset encodings -copy_paste_via_ucs checkbox false 0 Process received strings via Unicode --- section/encoding.orig Thu Jan 24 14:29:08 2002 +++ section/encoding Thu Feb 21 17:53:21 2002 @@ -3,5 +3,8 @@ iscii_lang select:lower malayalam 0 ISCII lang xim text - 0 X Input Method locale text - 0 XIM locale +vertical_mode radio:lower none 0 Vertical mode use_bidi checkbox true 0 Bidi (UTF8 only) use_combining checkbox true 1 Combining +use_multi_column_char checkbox true 0 Process multiple column character +copy_paste_via_ucs checkbox false 0 Process received strings via Unicode --- section/others.orig Thu Feb 7 10:21:10 2002 +++ section/others Thu Feb 21 17:36:56 2002 @@ -1,7 +1,7 @@ screen_width_ratio text:digit 100 0 Width ratio screen_height_ratio text:digit 100 0 Height ratio +line_space text:digit 0 0 Line space tabsize text:digit 8 0 Tab size logsize text:digit 128 0 Log size mod_meta_mode radio:lower none 0 Mod Meta mode bel_mode radio:lower sound 0 Bel mode -scrollbar_mode radio:lower left 0 Scrollbar --- key/sb_bg_color.orig Thu Feb 21 17:33:55 2002 +++ key/sb_bg_color Thu Feb 21 17:33:48 2002 @@ -0,0 +1,14 @@ +black BLACK +red RED +green GREEN +yellow YELLOW +blue BLUE +magenta MAGENTA +cyan CYAN +white WHITE +gray GRAY +lightgray LIGHTGRAY +pink PINK +brown BROWN +priv_fg PRIVATE_FG +priv_bg PRIVATE_BG --- key/sb_fg_color.orig Thu Feb 21 17:33:55 2002 +++ key/sb_fg_color Thu Feb 21 17:33:46 2002 @@ -0,0 +1,14 @@ +black BLACK +red RED +green GREEN +yellow YELLOW +blue BLUE +magenta MAGENTA +cyan CYAN +white WHITE +gray GRAY +lightgray LIGHTGRAY +pink PINK +brown BROWN +priv_fg PRIVATE_FG +priv_bg PRIVATE_BG |