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

Re: w3m-expand-url



From:  Yuuichi Teranishi <teranisi@gohome.org> さん曰く
Subject: [emacs-w3m:01471] w3m-expand-url
Message-ID: <m3ofojjous.wl@gohome.org>
Date: Mon, 10 Sep 2001 19:56:43 +0900

寺> http://a.northeye.net/ でリンクがたどれるよう、
寺> w3m-expand-url を以下のように修正してみました。

別にエラーというわけでないのですが、、

寺> -	(setq path (expand-file-name url (file-name-directory base)))
寺> +	(setq path (concat (file-name-directory base) url))

(w3m-expand-url "./hoge.html" "http://foo.com/bar/")
 => "http://foo.com/bar/./hoge.html"

というふうに "./" が残っちゃうのが、イマイチかな、と思います。

P.S. なぜか手元にこんなコードが ^^;

(defadvice w3m-goto-url (before northeye activate)
  (when (and url referer
	     (string= "http://a.northeye.net/" referer)
 	     (string-match "^go\\.cgi\\?url=\\([^&]+\\)&" url))
    (setq url (match-string 1 url))))

以前、修正に挑戦して失敗したのでした ^^;;;

-- 
白井秀行 (mailto:shirai@rdmg.mgcs.mei.co.jp)