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 |
From: Araki K. <j00...@ip...> - 2002-02-21 14:14:13
|
荒木です:-) Subject: [Mlterm-dev-ja] w3mmlconfig updated From: Hironori Sakamoto <hs...@mt...> Message-ID: <200...@ud...> Date: Thu, 21 Feb 2002 18:15:00 +0900 (JST) > w3mmlconfig を mlconfig に合わせて更新しました。 > # section/copy_paste を削除 > # section/font, key/sb_bg_color, key/sb_fg_color を追加 ありがとうございます。 merge させていただきました。 ところで、わたしの手元では、Scrollbar の設定項目が空っぽになってしまう のですが、以下のような section/scrollbar が必要な気がします。 # わたしが、何か patch を当て忘れてるのかも.... --- section/scrollbar sb_fg_color select:lower black 0 FG color sb_bg_color select:lower white 0 BG color scrollbar_mode radio:lower left 0 Position --- > ただ、use_multi_column_char が常に false になってしまいます。 > use_multi_column_char と use_multi_col_char が混在している様です。 すみません。修正いたしました。 > scrollbar の sample の上下の▲がちょっと前から■にしかなっていない > のですが、私の環境だけなんでしょうか。(押すと▲になります) こちらも修正いたしました。 修正されたファイルを cvs commit しても、修正差分が repository に反映 されない、という変な現象が起こっておりました。 # なんなんだろ.... では -- kiken j00...@ip... |
From: <hs...@mt...> - 2002-02-21 15:15:19
|
坂本です。 > 荒木です:-) > ところで、わたしの手元では、Scrollbar の設定項目が空っぽになってしまう > のですが、以下のような section/scrollbar が必要な気がします。 すみません。抜かってました。 --- section/scrollbar.orig Fri Feb 22 00:04:28 2002 +++ section/scrollbar Fri Feb 22 00:15:08 2002 @@ -0,0 +1,4 @@ +scrollbar_mode radio:lower left 0 Position +scrollbar_view_name text simple 0 View +sb_fg_color select:lower black 0 FG color +sb_bg_color select:lower white 0 BG color ----------------------------------- 坂本 浩則 <hs...@mt...> http://www2u.biglobe.ne.jp/~hsaka/ |
From: Araki K. <j00...@ip...> - 2002-02-21 15:32:17
|
荒木です:-) commit log です。 * transparent by _XROOTPMAP_ID is also supported without Imlib. * w3mmlconfig/section/scrollbar is lost. fixed. (Thanks to Sakamoto Hironori san) Subject: Re: [Mlterm-dev-ja] w3mmlconfig updated From: hs...@mt... (Hironori Sakamoto) Message-ID: <200...@mt...> Date: Fri, 22 Feb 2002 00:15:07 +0900 (JST) >> ところで、わたしの手元では、Scrollbar の設定項目が空っぽになってしまう >> のですが、以下のような section/scrollbar が必要な気がします。 > すみません。抜かってました。 ありがとうございます。 merge させていただきました。 それから、Imlib がなくても、_XROOTPMAP_ID による背景透過ができるようにしま した。 念のため、確認していただけると幸いです。 では -- kiken j00...@ip... |