diff options
Diffstat (limited to '')
| -rw-r--r-- | lisp/ChangeLog | 179 | 
1 files changed, 179 insertions, 0 deletions
| diff --git a/lisp/ChangeLog b/lisp/ChangeLog new file mode 100644 index 0000000..59e89f8 --- /dev/null +++ b/lisp/ChangeLog @@ -0,0 +1,179 @@ +2000-10-20  Hideyuki SHIRAI  <shirai@meadowy.org> + +	* w3m.el (w3m-process-type): Change default valule to 'start-process. +	(w3m-process-user-counter): New buffer local variable. +	(w3m-exec-get-user): New funciton, get user and passwd from +	w3m-arrived-user-list. +	(w3m-exec-filter): Use w3m-exec-get-user(). + +2000-10-18  Hideyuki SHIRAI  <shirai@meadowy.org> + +	* w3m.el (w3m-view-previous-point): New function. +	(w3m-expand-url): If BASE is nil, it set "". +	(w3m-download-this-url): w3m-refontify-anchor() exec when finished +	download. + +2000-10-16  Hideyuki SHIRAI  <shirai@meadowy.org> + +	* w3m.el (w3m-arrived-ct-file, w3m-arrived-file-cs, +	w3m-always-html-url-regex): New variables. +	(w3m-process-type): Change name from w3m-exec-process-type. +	(w3m-refontify-anchor): New funcition. +	(w3m-exec): Pre-check content-type. +	(w3m-exec-w3m-ctcheck): New funcition, check context-type for URL. +	(w3m-exec-w3m): New funcion, execute w3m. +	(w3m-exec-ftp): New function, execute dired-other-window() or +	copy-file(), if URL is 'ftp://'. +	(w3m-convert-ftp-to-emacsen): Change 'ftp://' to '/user@host:/' from +	elisp ML. +	(w3m-download-this-url, w3m-save-image, w3-view-image): Use w3 +	features. +	 +2000-10-12  Hideyuki SHIRAI  <shirai@meadowy.org> + +	* w3m.el (top-level): Add authors. +	(w3m-expand-url): Check relative URL first. +	(w3m-fontify): Add original text properties when replace 'escaped +	character'. + +2000-10-11  Hideyuki SHIRAI  <shirai@meadowy.org> + +	* w3m.el (w3m-mailto-url-function, w3m-use-cygdrive, +	w3m-default-save-dir, w3m-arrived-list-file, w3m-arrived-list-keep, +	w3m-arrived-anchor-face, w3m-exec-process-type, +	w3m-process-connection-type, w3m-arrived-anchor-list): +	New user custumize variables. +	(w3m-mode): Change doc-string for key binding. +	(w3m-arrived-list-add, w3m-arrived-list-load, w3m-arrived-list-save): +	New functions for handling arrived anchor. +	(w3m-fontify): Add arrived anchor face. +	(w3m-exec-process, w3m-exec-filter, w3m-exec-sentinel): New functions +	for asynchronous w3m execution. +	(w3m-find-file, w3m-read-file-name, w3m-read-passwd): +	New miscellaneous functions. +	(w3m-expand-file-name): Support old cygwin. +	(w3m-view-current-url-with-external-browser): If w3m-browser-command +	is function, funcall it. +	(w3m-mailto-url): If w3m-mailto-url-function is function, funcall it. +	(w3m-mode-map): If running xemacs, use (button2) instead of (mouse-2). + +2000-09-21  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m): Cancel last change, use switch-to-buffer again. + +2000-09-20  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m): Do not switch buffer if w3m window already exists. + +2000-09-20  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: Add declaration of dependency on APEL. +	(w3m-quit): When other w3m buffers exist, don't destruct cache. +	(w3m-browse-url): New function. + +2000-09-20  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m-command-arguments): Remove option -m, that's not good +	for bookmark / local file handling. + +2000-09-19  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m-command-arguments): Add -m option explicitly. +	(w3m-exec): Ad-hoc change to view .txt object. It's temporary +	fix. Should we consider type? w3m option -dump_head may help us. +	(w3m-exec): Get title and remove both format <title_alt> and +	<title>. +	(w3m-view-this-url): Force reloading by prefix. +	(w3m-view-current-url-with-external-browser): Works correctly. +	(w3m-print-current-url): Push url to kill king to paste later. +	(w3m-print-this-url): ditto. +	(w3m-mailto-url): Use rfc2368.el instead of mailto.el. +	(w3m-goto-url): Add 2nd argument RELOAD to withdraw data cached on +	emacs. +	(w3m-reload-this-page): Simplified by using new w3m-goto-url. +	(w3m): Set mode-line-buffer-identification after changing major +	mode because it overwrite that variable. + +2000-09-19  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el (w3m-fontify): Add code to handle irregular ordered +	elements of anchor tags. +	(w3m-mailto-url): Adopt for Emacs-19. +	(w3m-input-url): Call `w3m-backlog-setup' to initialize +	`w3m-backlog-hashtb'. + +2000-09-19  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m): Sorry, over paren. + +2000-09-18  Shun-ichi GOTO  <gotoh@taiyo.co.jp> +	 +	* w3m.el (w3m-exec): Get title correctly within -halfdump format +	of w3m. +	(w3m-mouse-view-this-url): New function to view page by clicking +	mouse middle button. +	(w3m-mode-map): Assign mouse middle button to view page. +	(w3m): Change mode-line spec to show title of current page. + +2000-09-18  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: Add authors. + +2000-09-18  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m-input-url): Enter url with completion. Candidates +	are visited url kept in w3m-backlog-hashtb. +	(w3m-backlog-setup): Change hash size as prime number and +	initialized with value 0 for obarray. +	(w3m-backlog-remove): Remove unused 2nd arg NUMBER and remove when +	block to check NUMBER. +	(w3m-exec): Show message "Loading..." while loading. +	(w3m-save-position): New function to keep display position in +	Emacs window into hash symbol, but I think this is not best way. +	(w3m-restore-position): New function to restore display position. +	(w3m-view-previous-page): Restore display position. +	(w3m-expand-url): Canonicalize url, ex. "http://www.host.org" to +	"http://www.host.org/".  Change regexp to allow "mailto:" +	protocol.  Remove drive letter as side-effect using +	expand-file-name to expand url for Win32 emacen. +	(w3m-expand-file-name): New function to alternates +	expand-file-name function with convert drive letter prefixed path +	to cygwin path.  i.e. c:/users/home to /cygdrive/c/users/home +	(w3m-view-bookmark): Expand bookmark filename as cygwin path +	format to pass to w3m. +	(w3m-mode-map): Add new key binding 'B' to back to previous page. +	Add new key binding 'R' to force reloading current page. +	(w3m-mailto-url): New function to support mailto: protocol.  It +	use rfc2368.el if available. +	(w3m-goto-url): Ad-hoc support mailto: protocol. We should +	consider more... +	(w3m-reload-this-page): New function to reload current page. + +2000-09-18  Shun-ichi GOTO  <gotoh@taiyo.co.jp> + +	* w3m.el (w3m): Add 2nd arguemnt to use with browse url.  This is +	patch from Satoru Takabayashi <satoru-t@is.aist-nara.ac.jp> in +	ELF-ML, Seq# 875. +	(w3m-fontify): Change regexp for <a ...> tag to allow newline in +	between attributes.  This is patch from Satoru Takabayashi +	<satoru-t@is.aist-nara.ac.jp> in ELF-ML, Seq# 876. +	(w3m-fontify): Allow un-ended tag for name attribute, is it w3m +	bug?).  This is Patch from Satoru Takabayashi +	<satoru-t@is.aist-nara.ac.jp> in ELF-ML, Seq# 876. + +2000-07-13  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: Added handling of name anchors. Add comments. + +2000-07-12  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: Improved to handle multi buffer. Fix broken cache and +	order of fontify. + +2000-07-01  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: Handle &-sequence. Add history and cache. + +2000-06-25  TSUCHIYA Masatoshi  <tsuchiya@pine.kuee.kyoto-u.ac.jp> + +	* w3m.el: New file. | 
