[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: w3m 0.2.3 / w3mmee p20.4 (0.2.3-based) released



Citation (with leading "> " of each line) from article:
  <87pu58305q.wl@lichee.ukai.org>
    by Fumitoshi UKAI <ukai@debian.or.jp> :
> > 設定の仕方は統一されてますが、内部では特別扱いなので大丈夫です:-)。
>
> ん? w3mmee -o 'request_header Accept-Language: ja; q=1.0, en; q=0.5' と
> して日本語を使うようにしても h で w3mhelp.cgi をみると英語になってるのは
> 悲しいんですが…

「:」の後のスペースをスキップしていないというバグでした。失礼しました。

うちでは何もしないと「ja; q=1.0, en; q=0.5」で、「-o '…: en; q=0.5'」
で英語のhelpが出るので安心していたんですが、単にlangが空白+「en」になっ
ていて正しく認識されず、デフォルトのページが出ているだけなのでした。

-- 
須藤 清一 <suto@ks-and-ks.ne.jp>
http://pub.ks-and-ks.ne.jp/pgp-public-key.html
--- rc.c~	Mon Dec  3 12:41:38 2001
+++ rc.c	Sat Dec 22 11:17:36 2001
@@ -2057,8 +2057,11 @@
     for (ti = HTTPRequestHeaderList.first ; ti ;) {
       if ((e = strchr(ti->ptr, ':'))) {
 	if (btri_fast_ci_search_mem(ti->ptr, e - ti->ptr, HTTPAutoHeader, &value) != bt_failure) {
-	  if (value)
-	    *(char **)value = allocStr(e + 1, -1);
+	  if (value) {
+	    ++e;
+	    SKIP_BLANKS(e);
+	    *(char **)value = allocStr(e, -1);
+	  }
 	}
 	else {
 	  if (btri_fast_ci_search_mem(ti->ptr, e - ti->ptr, tab, &value) != bt_failure) {