Source of Nothingness - <input

* Menu

[[About:self:AboutPage.txt]] | [[Profile:http://iddy.jp/profile/southly/]] | [[まとめ:self:1163859357.txt]] | [[オリジナル:http://ninjinix.x0.com/rn/]] | [[xyzzy:http://raido.sakura.ne.jp/southly/xyzzy/site-lisp/]] | [[あんてな:http://i-know.jp/southly/listall]] | [[■:http://raido.sakura.ne.jp/southly/lisp/ni/view.lisp]] | [[buzz:http://www.google.com/profiles/southly#buzz]]

* Firefox searchplugin

# Mozilla/Fireox The Lisp Dictionary http://lispdoc.com/
# 2006-03-01
#
<search 
   name="lispdoc"
   description="The Lisp Dictionary"
   method="GET"
   action="http://lispdoc.com/"
   queryEncoding="Shift_JIS"
   queryCharset="Shift_JIS"
  sourceTextEncoding = "1"
>
<input name="q" user>
<input name="search" value="Basic search">

<INTERPRET
	browserResultType = "result"
	charset = "Shift_JIS" 
>
</search>

文字コードとかてきとー

* clispcgi

必須のurl-encode&url-decodeの方法を探す。
clispの場合、このあたりが使えそう。

(format nil "~{~A~}"
        (map 'list
             #'(lambda (x)
                 (format nil "%~2,'0x" x))
             (ext:convert-string-to-bytes "あかさたな" charset:utf-8)))
=>"%E3%81%82%E3%81%8B%E3%81%95%E3%81%9F%E3%81%AA"

よしよしっと。
デコードは大変だな。
違う文字コードでエンコードされてやってきたらどうしたらいいんだろ。

[[(ReadMore...) index.rb?1141052899.txt]]