[w3m-dev 04440] Update documents (README.cookie)

Hiroyuki Ito <[email protected]> Tue, 28 Dec 2010 21:02:35 +0900 (JST)
Newsgroups gmane.comp.web.w3m.devel
Message-ID <[email protected]>
伊東です。

doc-jp/README.cookie に記述を追加しました。
また doc/README.cookie を追加しました。


Index: doc/README.cookie
===================================================================
RCS file: doc/README.cookie
diff -N doc/README.cookie
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ doc/README.cookie	28 Dec 2010 11:59:10 -0000
@@ -0,0 +1,44 @@
+cookie support of w3m
+
+
+                                                         (2000/11/07)  K. Okada
+                                                        [email protected]
+
+ * Support of version 0 (http://www.netscape.com/newsref/std/cookie_spec.html)
+   and version 1 (http://www.ics.uci.edu/pub/ietf/http/rfc2109.txt,
+   http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-state-man-mec-12.txt)
+   cookie.
+   
+ * If you wont to disable cookie support, run configure script with
+    --disable-cookie option.
+   
+ * You can choose to use cookie or not on the Option Setting Panel or
+   -cookie and -no-cookie option.
+   
+ * You can disable cookie on the Option Setting Panel. In this case
+    all cookies are rejected, however, cookies which accepted before
+    disable cookie are used.
+   
+ * You can see list of accepted cookies with C-k. In this panel, you
+    can choose to use each cookie or not.
+   
+ * You can specify domains accept or not accept cookies on the Option
+    Setting Panel. Domains are specified with following format.
+   
+      domain-list = domains
+                  | ""
+      domains     = domain
+                  | domain + "," + domains
+      domain      = "." + domain-name      ; match with domain name
+                  | host-domain-name       ; match with HDN
+                  | ".local"               ; match with all HDN except which include  "."
+                  | "."                    ; match with all
+
+                              (HDN: host domain name)
+
+
+ ・ If the number of "." in domain name is lesser than 2, it is
+    assumed as invalid cookie, however, you can use
+    cookie_avoid_wrong_number_of_dots to avoid this restriction. You
+    can set this in "Domains to avoid [wrong number of dots]" on the
+    Option Setting Panel.
Index: doc-jp/README.cookie
===================================================================
RCS file: /cvsroot/w3m/w3m/doc-jp/README.cookie,v
retrieving revision 1.2
diff -u -r1.2 README.cookie
--- doc-jp/README.cookie	13 May 2003 17:17:54 -0000	1.2
+++ doc-jp/README.cookie	28 Dec 2010 11:59:10 -0000
@@ -54,4 +54,8 @@
     └────────────────────────────────────┘
    
     のように設定します.
-   
+
+ ・ ドメインに含まれる "." の数が 2 よりも小さいときは不正なクッキーと
+    見なされますが cookie_avoid_wrong_number_of_dots で指定されたドメイ
+    ンはこの制限を受けなくなります。Option Setting Panel の "[wrong
+    number of dots] を無視するドメイン" で設定できます。