[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: w3m-uri-replace-alist
In the ML [emacs-w3m 03515]
ari@mbf.sphere.ne.jp (ARISAWA Akihiro) wrote:
> w3m-uri-replace-alist というユーザオプションを作ってみました。
> 特定の URI に行こうとした時に、別の URI へ飛ばすことができます。
...
> 手元では以下のような設定をしてみています。
> (setq w3m-uri-replace-alist
> '(("^\\(http://\\)ime.nu/" . "\\1")
> ("^http://groups.google.com/groups.*output=gplain.*" .
> "\\&&oe=iso2022jp")
> ("^urn:ietf:rfc:\\([0-9]+\\)" . "http://www.ietf.org/rfc/rfc\\1.txt")
> ("^urn:isbn:" .
> (lambda (uri)
> (concat "http://www.amazon.co.jp/exec/obidos/ASIN/"
> (apply 'concat (split-string (substring uri 9) "-"))
> "/")))))
RFC の場合は、
(("^urn:ietf:rfc:\\([0-9]+\\)" .
"http://www.zvon.org/tmRFC/RFC\\1/Output/longContents.html"))
という設定も便利かも。
--
岡崎 哲朗