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

Change to display progress status when dump_extra option is specified



土屋です.

w3m -dump_extra URI を実行すると,w3m は全てのデータを取得してから一気
に出力を行います.そのため,w3m を呼び出した側から,データの取得状況を
知ることができません.

これは,emacs-w3m のようなプログラムにとっては不便な仕様なので,以下の
ような変更を検討していただけないでしょうか.よろしくお願いします.

    * file.c (loadHTMLstream): Show progress status when dump_extra
    option is specified.

-- 
土屋 雅稔 ( TSUCHIYA Masatoshi )

--- file.c	26 Sep 2003 17:59:51 -0000	1.229
+++ file.c	2 Oct 2003 01:09:08 -0000
@@ -6582,6 +6582,8 @@
 	if (src)
 	    Strfputs(lineBuf2, src);
 	linelen += lineBuf2->length;
+	if (w3m_dump & DUMP_EXTRA)
+	    printf("W3m-in-progress: %s\n", convert_size2(linelen, current_content_length, TRUE));
 	if (w3m_dump & DUMP_SOURCE)
 	    continue;
 	showProgress(&linelen, &trbyte);