7 Aug 2006 08:12
7 Aug 2006 08:52
[emacs-w3m:08797] Re: documentation
Hideyuki SHIRAI <shirai <at> meadowy.org>
2006-08-07 06:52:52 GMT
2006-08-07 06:52:52 GMT
こんにちは、白井です。 From: "djh" <henman <at> it.to-be.co.jp> さん曰く Subject: [emacs-w3m:08796] documentation Message-ID: <20060807151213.3852 <at> henman-np.b-eng.it.to-be.co.jp> Date: Mon, 07 Aug 2006 15:12:13 +0900 > emacs-w3m の usage に関しては1つの纏められた文書「何の書式でも良いです」は有りますか。 > 英語であれば尚いいですが日本語でもいいです。 emacs-w3m に同梱されている info を読まれるのがよいと思います。 > 印刷して読みたいんですがよろしくおねがいします。 % pwd emacs-w3m のソースディレクトリ % configure .....snip..... % cd doc 以下、好みに応じて % make dvi (英語版と日本語版の dvi ファイルができる) % make dvi-en (英語版の dvi ファイルができる) % make dvi-ja (日本語版の dvi ファイルができる) とすると、emacs-w3m.dvi や emacs-w3m-ja.dvi が出来ますので、お使 いの環境にあわせてプリントしてみてください。 -- --(Continue reading)
9 Aug 2006 04:00
[emacs-w3m:08799] Re: documentation
Tsuyoshi CHO <tsuyoshi_cho <at> ybb.ne.jp>
2006-08-09 02:00:03 GMT
2006-08-09 02:00:03 GMT
長です。 メールの転送+補足です。 pdf作成機能は現在CVSで取得できるソースセットにしかありませんでした。 すみません。
Hello, djh. This mail is fowarded to ml and supply. Currently, "Makefile pdf creation function" is only supported in CVS sourceset. Sorry. Regerds CHO
このメールは---------------------------------------------- djh <henman <at> it.to-be.co.jp> さん( djh と引用)の MsgID : <20060808133032.2756 <at> henman-np.b-eng.it.to-be.co.jp> Subject : Re: documentation Date : [Tue, 08 Aug 2006 13:30:32 +0900] -------------------------------------------への返信です-〆 《件名・引用文は改行・削除・変更してあるかもしれません》 djh> > Subject: Re: documentation djh> > djhさん(Continue reading)
10 Aug 2006 10:50
[emacs-w3m:08800] Can't browse any url in emacs 23
Leon <sdl.web <at> gmail.com>
2006-08-10 08:50:16 GMT
2006-08-10 08:50:16 GMT
Dear all,
I keep getting an error for any url. Any ideas? Thanks.
,----
| Debugger entered--Lisp error: (void-variable coding-category-binary)
| w3m-detect-coding-region(1 87 nil)
|
w3m-url-decode-string("http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=www.google.com" nil)
| w3m-url-readable-string("http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=www.google.com")
|
w3m-w3m-dump-extra("http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=www.google.com"
((lambda (&rest --cl-rest--) (apply #[... "J
10 Aug 2006 15:25
[emacs-w3m:08801] Re: Can't browse any url in emacs 23
Leon <sdl.web <at> gmail.com>
2006-08-10 13:25:08 GMT
2006-08-10 13:25:08 GMT
It seems it's working again. Not sure what was going wrong. Sorry for the noise. -- -- Leon
11 Aug 2006 01:36
[emacs-w3m:08802] New previous/next link estimation functions
David Hansen <david.hansen <at> gmx.net>
2006-08-10 23:36:44 GMT
2006-08-10 23:36:44 GMT
Hello,
In case you don't know: the emacswiki uses the oddmuse wiki
engine. The new function will be useful for other emacs-w3m
users too.
2006-08-11 David Hansen <david.hansen <at> pysik.fu-berlin.de>
* w3m.el: (w3m-relationship-oddmuse-estimate): New function.
(w3m-relationship-freshmeat-estimate): New function.
(w3m-relationship-estimate-rules): Fixed regexp for google groups.
Added above new functions.
11 Aug 2006 03:31
[emacs-w3m:08803] Re: New previous/next link estimation functions
David Hansen <david.hansen <at> gmx.net>
2006-08-11 01:31:50 GMT
2006-08-11 01:31:50 GMT
Sorry about the noise...
On Fri, 11 Aug 2006 01:36:44 +0200 David Hansen wrote:
> - ,(concat "<a href=" w3m-html-string-regexp
> - "><img src=\\(?:/intl/[^/]+/\\)?nav_next\\.gif")
> - ,(concat "<a href=" w3m-html-string-regexp
> - "><img src=\\(?:/intl/[^/]+/\\)?nav_previous\\.gif")
> + ,(concat "<a[^>]+?href=" w3m-html-string-regexp
> + "><img src=\"?\\(?:/\\(?:intl\\|groups\\)/[^/]+/\\)?nav_next\\.gif")
> + ,(concat "<a[^>]+?href=" w3m-html-string-regexp
> + "><img src=\"\\(?:/\\(?:intl\\|groups\\)/[^/]+/\\)?nav_previous\\.gif")
Add a '?' here: ^
Or maybe even relax the regexp. I guess "nav_\(previous\|next\)"
aren't that common names for images not used for linking to
the next or previous page:
,(concat "<a[^>]+?href=" w3m-html-string-regexp
"><img src=[^>]*nav_next\\.gif")
,(concat "<a[^>]+?href=" w3m-html-string-regexp
"><img src=[^>]*nav_previous\\.gif")
This works at least on \(www\|groups\)\.google\.com.
David
16 Aug 2006 04:13
[emacs-w3m:08804] Re: New previous/next link estimation functions
Katsumi Yamaoka <yamaoka <at> jpl.org>
2006-08-16 02:13:43 GMT
2006-08-16 02:13:43 GMT
I'm sorry to have responded your message so late. I've installed your patch now. Thanks. >>>>> In [emacs-w3m : No.08802] >>>>> David Hansen <david.hansen <at> gmx.net> wrote: > In case you don't know: the emacswiki uses the oddmuse wiki > engine. The new function will be useful for other emacs-w3m > users too. Yes, it is quite useful. > 2006-08-11 David Hansen <david.hansen <at> pysik.fu-berlin.de> > * w3m.el: (w3m-relationship-oddmuse-estimate): New function. > (w3m-relationship-freshmeat-estimate): New function. > (w3m-relationship-estimate-rules): Fixed regexp for google groups. > Added above new functions. [...] >>>>> In [emacs-w3m : No.08803] David Hansen wrote: [...] > Or maybe even relax the regexp. I guess "nav_\(previous\|next\)" > aren't that common names for images not used for linking to > the next or previous page: > ,(concat "<a[^>]+?href=" w3m-html-string-regexp(Continue reading)
23 Aug 2006 23:13
[emacs-w3m:08805] [PATCH] Add `w3m-send-page-by-mail' (was Re: Re: Does w3m has the functions to send a page by email?)
Luca Capello <luca <at> pca.it>
2006-08-23 21:13:41 GMT
2006-08-23 21:13:41 GMT
Hello! I'm sorry to answer to a very old thread [1], but as I had some free time, I implemented the requested function, even if I'll probably never use it. On Thu, 25 May 2006 11:55:39 +0200, Katsumi Yamaoka wrote: >>>>>> In [emacs-w3m : No.08723] 清秀 wrote: > >> When I use Microsoft IE 6.0, I can send a page by choosing >> File->send->page by email. I wonder when I use w3m in emacs, is >> there a similar function? Thanks a lot! > > You can do it using Gnus and emacs-w3m, though it is not very handy. The patch attached adds a series of variables and the function `w3m-send-page-by-mail', which does exactly what Katsumi-san (if I'm correct about the Japanese suffix) suggested. Moreover, you can control the behavior via the self-explained variables. I tested it on No Gnus 0.5, but it should work with all the Emacs MUA (at least from what I understood from the documentation of `compose-mail'). The only caveat it that I'd like to have the e-mail completion when asking for the address, but I don't know how to do it (check the source code for the comments about it). As I don't know where to put it, it's a new file, but I could agree that the filename isn't the best one. If needed, I can prepare a(Continue reading)
24 Aug 2006 04:03
[emacs-w3m:08806] Re: [PATCH] Add `w3m-send-page-by-mail'
Katsumi Yamaoka <yamaoka <at> jpl.org>
2006-08-24 02:03:46 GMT
2006-08-24 02:03:46 GMT
>>>>> In [emacs-w3m : No.08805] Luca Capello <luca <at> pca.it> wrote: > Hello! > I'm sorry to answer to a very old thread [1], but as I had some free > time, I implemented the requested function, Thank you for the contribution. I tried it under the condition that `mail-user-agent' is `gnus-user-agent'. It works very well. > even if I'll probably never use it. Me too.(Continue reading)> On Thu, 25 May 2006 11:55:39 +0200, Katsumi Yamaoka wrote: >>>>>>> In [emacs-w3m : No.08723] 清秀 wrote: >> >>> When I use Microsoft IE 6.0, I can send a page by choosing >>> File->send->page by email. I wonder when I use w3m in emacs, is >>> there a similar function? Thanks a lot! >> >> You can do it using Gnus and emacs-w3m, though it is not very handy. > The patch attached adds a series of variables and the function > `w3m-send-page-by-mail', which does exactly what Katsumi-san (if I'm > correct about the Japanese suffix) suggested. You're right (most of foreigners use the first name Katsumi but Japanese folks usually use the family name Yamaoka-san though).





> On Thu, 25 May 2006 11:55:39 +0200, Katsumi Yamaoka wrote:
>>>>>>> In [emacs-w3m : No.08723] 清秀 wrote:
>>
>>> When I use Microsoft IE 6.0, I can send a page by choosing
>>> File->send->page by email. I wonder when I use w3m in emacs, is
>>> there a similar function? Thanks a lot!
>>
>> You can do it using Gnus and emacs-w3m, though it is not very handy.
> The patch attached adds a series of variables and the function
> `w3m-send-page-by-mail', which does exactly what Katsumi-san (if I'm
> correct about the Japanese suffix) suggested.
You're right (most of foreigners use the first name Katsumi but
Japanese folks usually use the family name Yamaoka-san though).
RSS Feed