;;; w3m.el --- an Emacs interface to w3m -*- coding: iso-2022-7bit; -*- ;; Copyright (C) 2000-2018 TSUCHIYA Masatoshi ;; Authors: TSUCHIYA Masatoshi , ;; Shun-ichi GOTO , ;; Satoru Takabayashi , ;; Hideyuki SHIRAI , ;; Keisuke Nishida , ;; Yuuichi Teranishi , ;; Akihiro Arisawa , ;; Katsumi Yamaoka , ;; Tsuyoshi CHO ;; Keywords: w3m, WWW, hypermedia ;; This file is the main part of emacs-w3m. ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program; see the file COPYING. If not, write to ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Commentary: ;; Emacs-w3m is an Emacs interface to the w3m program. For more ;; detail about w3m, see: ;; ;; http://w3m.sourceforge.net/ ;;; How to install: ;; See the README file in any case. We also recommend you check ;; whether a newer version of w3m is released. ;; ;; The outline of installation is: run the `configure' script and type ;; `make install' in the top directory of the emacs-w3m distribution. ;;; Code: ;; Developers, you must not use the cl functions (e.g., `coerce', ;; `equalp', `merge', etc.) in any emacs-w3m or shimbun modules. To ;; exclude run-time cl is the policy of emacs-w3m. However, XEmacs ;; employs the cl package for all time, or those functions are ;; possibly provided in the other modules like APEL, so you may use ;; them only in w3m-xmas.el. Note that `caaaar', for example, is not ;; a cl function if it is byte compiled; see cl-macs.el. (eval-when-compile (require 'cl)) (eval-when-compile (unless (dolist (var nil t)) ;; Override the `dolist' macro which may be faultily provided by ;; old egg.el. (load "cl-macs" nil t))) ;; The following variables will be referred to by the external modules ;; which bind such variables only when compiling themselves. And also ;; some modules have the `defadvice' forms including them and run ;; `byte-compile' at run-time. (eval-and-compile (defvar w3m-current-title nil "Title of a page visiting in the current buffer.") (defvar w3m-current-url nil "A url of a page visiting in the current buffer.")) (require 'w3m-util) (require 'w3m-proc) ;; Silence the Emacs's byte-compiler that says ``might not be defined''. (eval-when-compile (defalias 'w3m-setup-menu 'ignore)) (eval-and-compile (cond ((featurep 'xemacs) (require 'w3m-xmas)) ((>= emacs-major-version 21) (require 'w3m-ems)) (t (error "Emacs-w3m of this version no longer supports Emacs %s" (mapconcat 'identity (nbutlast (split-string emacs-version "\\.")) "."))))) (unless (or (featurep 'xemacs) (< emacs-major-version 23)) (require 'bookmark-w3m)) (require 'w3m-fb) (require 'w3m-hist) (require 'timezone) (require 'image-mode nil t) ;; Add-on programs: (eval-and-compile (autoload 'w3m-bookmark-view "w3m-bookmark" "Display the bookmark" t) (autoload 'w3m-bookmark-view-new-session "w3m-bookmark" "Display the bookmark on a new session" t) (autoload 'w3m-bookmark-add-this-url "w3m-bookmark" "Add a link under point to the bookmark." t) (autoload 'w3m-bookmark-add-current-url "w3m-bookmark" "Add a url of the current page to the bookmark." t) (autoload 'w3m-bookmark-add-all-urls "w3m-bookmark" "Add urls of all pages being visited to the bookmark." t) (autoload 'w3m-bookmark-add "w3m-bookmark" "Add URL to bookmark.") (autoload 'w3m-search "w3m-search" "Search a word using search engines." t) (autoload 'w3m-search-new-session "w3m-search" "Search a word using search engines in a new session." t) (autoload 'w3m-search-uri-replace "w3m-search") (autoload 'w3m-weather "w3m-weather" "Display a weather report." t) (autoload 'w3m-about-weather "w3m-weather") (autoload 'w3m-antenna "w3m-antenna" "Report changes of web sites." t) (autoload 'w3m-antenna-add-current-url "w3m-antenna" "Add a link address of the current page to the antenna database." t) (autoload 'w3m-about-antenna "w3m-antenna") (autoload 'w3m-dtree "w3m-dtree" "Display a directory tree." t) (autoload 'w3m-about-dtree "w3m-dtree") (autoload 'w3m-namazu "w3m-namazu" "Search files with Namazu." t) (autoload 'w3m-about-namazu "w3m-namazu") (autoload 'w3m-perldoc "w3m-perldoc" "View Perl documents" t) (autoload 'w3m-about-perldoc "w3m-perldoc") (autoload 'w3m-fontify-forms "w3m-form") (autoload 'w3m-fontify-textareas "w3m-form") (autoload 'w3m-form-textarea-file-cleanup "w3m-form") (autoload 'w3m-form-textarea-files-remove "w3m-form") (autoload 'w3m-form-kill-buffer "w3m-form") (autoload 'w3m-form-set-number "w3m-form") (autoload 'w3m-form-expand-form "w3m-form") (autoload 'w3m-form-unexpand-form "w3m-form") (autoload 'w3m-form-make-form-data "w3m-form") (autoload 'w3m-filter "w3m-filter") (autoload 'w3m-toggle-filtering "w3m-filter" "Toggle whether web pages will have their html modified by w3m's \ filters before being rendered." t) (autoload 'w3m-setup-tab-menu "w3m-tabmenu") (autoload 'w3m-setup-bookmark-menu "w3m-bookmark") (autoload 'w3m-switch-buffer "w3m-tabmenu") (autoload 'w3m-cookie-set "w3m-cookie") (autoload 'w3m-cookie-get "w3m-cookie") (autoload 'w3m-cookie "w3m-cookie") (autoload 'w3m-about-cookie "w3m-cookie") (autoload 'w3m-cookie-shutdown "w3m-cookie" nil t) (autoload 'report-emacs-w3m-bug "w3m-bug" nil t) (autoload 'w3m-replace-symbol "w3m-symbol" nil t) (autoload 'w3m-mail "w3m-mail" nil t) (autoload 'w3m-lnum-mode "w3m-lnum" nil t) (autoload 'w3m-lnum-follow "w3m-lnum" nil t) (autoload 'w3m-lnum-goto "w3m-lnum" nil t) (autoload 'w3m-lnum-universal "w3m-lnum" nil t) (autoload 'w3m-lnum-toggle-inline-image "w3m-lnum" nil t) (autoload 'w3m-lnum-view-image "w3m-lnum" nil t) (autoload 'w3m-lnum-external-view-this-url "w3m-lnum" nil t) (autoload 'w3m-lnum-edit-this-url "w3m-lnum" nil t) (autoload 'w3m-lnum-print-this-url "w3m-lnum" nil t) (autoload 'w3m-lnum-download-this-url "w3m-lnum" nil t) (autoload 'w3m-lnum-bookmark-add-this-url "w3m-lnum" nil t) (autoload 'w3m-lnum-zoom-in-image "w3m-lnum" nil t) (autoload 'w3m-lnum-zoom-out-image "w3m-lnum" nil t) (autoload 'w3m-session-select "w3m-session" "Select session from session list." t) (autoload 'w3m-session-save "w3m-session" "Save list of displayed session." t) (autoload 'w3m-setup-session-menu "w3m-session") (autoload 'w3m-session-automatic-save "w3m-session") (autoload 'w3m-session-deleted-save "w3m-session") (autoload 'w3m-session-last-autosave-session "w3m-session") (autoload 'w3m-session-goto-session "w3m-session") (autoload 'w3m-session-crash-recovery-save "w3m-session") (autoload 'w3m-session-last-crashed-session "w3m-session") (autoload 'w3m-save-buffer "w3m-save" "Save the current page and its image data locally.")) ;; Avoid byte-compile warnings. (eval-when-compile (autoload 'doc-view-mode "doc-view" nil t) (autoload 'doc-view-mode-p "doc-view") (autoload 'image-backward-hscroll "image-mode" nil t) (autoload 'image-bol "image-mode" nil t) (autoload 'image-eol "image-mode" nil t) (autoload 'image-forward-hscroll "image-mode" nil t) (autoload 'image-mode-setup-winprops "image-mode") (autoload 'image-scroll-down "image-mode" nil t) (autoload 'image-scroll-up "image-mode" nil t) (autoload 'quit-window "window" nil t) (autoload 'rfc2368-parse-mailto-url "rfc2368") (autoload 'widget-convert-button "wid-edit") (autoload 'widget-forward "wid-edit" nil t) (autoload 'widget-get "wid-edit") (autoload 'zone-call "zone") (unless (fboundp 'char-to-int) (defalias 'char-to-int 'identity)) (defvar bidi-paragraph-direction) (defvar doc-view-mode-map) (defvar w3m-bookmark-mode) (defvar w3m-bookmark-menu-items) (defvar w3m-bookmark-menu-items-pre) (defvar w3m-tab-menubar-make-items-preitems) (defvar w3m-session-menu-items-pre) (defvar w3m-session-menu-items)) (defconst emacs-w3m-version (eval-when-compile (let ((rev "$Revision: 1.1708 $")) (and (string-match "\\.\\([0-9]+\\) \\$\\'" rev) (setq rev (- (string-to-number (match-string 1 rev)) 1136)) (format "1.4.%d" (+ rev 50))))) "Version number of this package.") (defgroup w3m nil "Emacs-w3m - the web browser of choice." :group 'hypermedia) (defgroup w3m-face nil "Faces used for emacs-w3m." :group 'w3m :prefix "w3m-") (defcustom w3m-command nil "*Name of the executable file of the w3m command. You normally don't have to specify the value, since emacs-w3m looks for the existing commands in order of w3m, w3mmee and w3m-m17n in the `exec-path' directories in order if it is nil in the beginning. If you want to use the other w3m command, specify the value of this variable explicitly in the .emacs file or customize the value and save it. In this case, you need to restart Emacs and emacs-w3m. That is, there is currently no way to apply the changing of the w3m command to all the emacs-w3m programs safely after loading the w3m.elc module." :group 'w3m :type '(radio (const :format "Not specified " nil) (string :format "Command: %v\n"))) (defcustom w3m-display-ins-del 'auto "*Value of `display_ins_del' option." :group 'w3m :type '(radio (const :format "Delect automatically" auto) (const :format "Use fontify" fontify) (const :format "Use tag" tag) (const :format "No have option" nil))) (defvar w3m-type nil "Type of the w3m command. The valid values include `w3m', `w3mmee', and `w3m-m17n'.") (defvar w3m-compile-options nil "Compile options that the w3m command was built with.") (defvar w3m-version nil "Version string of the w3m command.") ;; Set w3m-command, w3m-type, w3m-version and w3m-compile-options (if noninteractive ;; Don't call the external command when compiling. (unless w3m-command (setq w3m-command "w3m")) (when (or (null w3m-command) (null w3m-type) (null w3m-version) (null w3m-compile-options)) (let ((command (or w3m-command (w3m-which-command "w3m") (w3m-which-command "w3mmee") (w3m-which-command "w3m-m17n")))) (when command (setq w3m-command command) (with-temp-buffer (call-process command nil t nil "-version") (goto-char (point-min)) (when (re-search-forward "version \\(w3m/0\\.[3-9]\ \\(?:\\.[0-9\\]\\)*\\(?:rc[0-9]+\\)?\ \\(?:-stable\\|\\(?:\\+cvs\\(?:-[0-9]+\\.[0-9]+\\)?\\)\\)?\ \\(?:-inu\\|\\(-m17n\\|\\(\\+mee\\)\\)\\)?[^,]*\\)" nil t) (setq w3m-version (match-string 1)) (setq w3m-type (cond ((match-beginning 3) 'w3mmee) ((match-beginning 2) 'w3m-m17n) ((match-beginning 1) 'w3m) (t 'other)))) (when (re-search-forward "options +" nil t) (setq w3m-compile-options (or (split-string (buffer-substring (match-end 0) (point-at-eol)) ",") (list nil))) (when (member "m17n" w3m-compile-options) (setq w3m-type 'w3m-m17n)))))))) (when (not (stringp w3m-command)) (error "\ Install w3m command in `exec-path' or set `w3m-command' variable correctly")) (defcustom w3m-user-agent (concat "Emacs-w3m/" emacs-w3m-version " " w3m-version) "String used for the User-Agent field. See also `w3m-add-user-agent'." :group 'w3m :type 'string) (defcustom w3m-add-user-agent t "Non-nil means add the User-Agent field to the request header. The value of `w3m-user-agent' is used for the field body." :group 'w3m :type 'boolean) (defvar w3m-user-agent-default-alist '((cons "Emacs-w3m (user default)" w3m-user-agent) (cons "Emacs-w3m (package default)" (concat "Emacs-w3m/" emacs-w3m-version " " w3m-version)) '("Don't send user agent" . "")) "An default alist of user agent strings. This is used when offering the user the opportunity to change user agent strings. This should normally not be modified; instead modify `w3m-user-agent-alist'.") (defcustom w3m-user-agent-alist '(("Android Webkit" . "\ Mozilla/5.0 (Linux; U; Android 4.0.3; ko-kr; LG-L160L Build/IML74K)\ AppleWebkit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30") ("Firefox 57" . "\ Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0") ("IE Mobile" . "\ Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0;\ IEMobile/9.0)") ("Opera Mini 9.80" . "\ Opera/9.80 (J2ME/MIDP; Opera Mini/9.80 (S60; SymbOS; Opera Mobi/23.348; U; en)\ Presto/2.5.25 Version/10.54") ("Opera Mobile 12" . "\ Opera/12.02 (Android 4.1; Linux; Opera Mobi/ADR-1111101157; U; en-US)\ Presto/2.9.201 Version/12.02") ("Chrome 51" . "\ Mozilla/5.0 (Linux; Android 5.1.1; VS810PP Build/LMY47V) AppleWebKit/537.36\ (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36")) "An alist of user agent strings. Each entry should be a cons of a short descriptive string and the user agent string." :group 'w3m :type '(repeat (cons (string :tag "Short Description") (string :tag "User Agent string")))) (defcustom w3m-user-agent-site-specific-alist nil "An alist of user-agent strings to be used for specific URLs. Each entry should be a cons of a regexp for the URLs to be covered by the rule, and a user-agent string to be used." :group 'w3m :type '(repeat (cons (string :tag "URL regexp") (string :tag "User Agent string")))) (defcustom w3m-language (if (and (boundp 'current-language-environment) ;; In XEmacs 21.5 it may be the one like "Japanese (UTF-8)". (string-match "\\`Japanese" (symbol-value 'current-language-environment))) "Japanese") "*Your preferred language used in emacs-w3m sessions." :group 'w3m :type '(radio (const :format "%v " "Japanese") (const :tag "Other" nil)) :get (lambda (symbol) (let ((value (format "%s" (default-value symbol))) (case-fold-search t)) (prog1 (setq value (if (string-match "\\`japan" value) "Japanese")) (custom-set-default symbol value)))) :set (lambda (symbol value) (custom-set-default symbol (if (equal value "Japanese") "Japanese")))) (defcustom w3m-command-arguments (if (eq w3m-type 'w3mmee) '("-o" "concurrent=0" "-F") nil) "*List of the default arguments passed to the w3m command. See also `w3m-command-arguments-alist'." :group 'w3m :type '(repeat (string :format "Argument: %v\n"))) (defcustom w3m-command-arguments-alist nil "*Alist of regexps matching urls and additional arguments passed to w3m. A typical usage of this variable is to specify whether to use the proxy server for the particular hosts. The first match made will be used. Here is an example of how to set this variable: \(setq w3m-command-arguments-alist '(;; Don't use the proxy server to visit local web pages. (\"^http://\\\\(?:[^/]*\\\\.\\\\)*your-company\\\\.com\\\\(?:/\\\\|$\\\\)\" \"-no-proxy\") ;; Use the proxy server to visit any foreign urls. (\"\" \"-o\" \"http_proxy=http://proxy.your-company.com:8080/\"))) Where the first element matches the url that the scheme is \"http\" and the hostname is either \"your-company.com\" or a name ended with \".your-company.com\", and the proxy server is not used for those hosts. If you are a novice on the regexps, you can use the `w3m-no-proxy-domains' variable instead." :group 'w3m :type '(repeat (cons :format "%v" :indent 4 (regexp :format "%t: %v\n") (repeat :tag "Arguments passed to w3m command" (string :format "Arg: %v\n"))))) (defcustom w3m-no-proxy-domains nil "*List of domain names with which emacs-w3m will not use a proxy server. Each element should be exactly a domain name which means the latter common part of the host names, not a regexp." :group 'w3m :type '(repeat (string :format "Domain name: %v\n"))) (defcustom w3m-command-environment (delq nil (list (if (eq w3m-type 'w3mmee) (cons "W3MLANG" "ja_JP.kterm")) (if (eq system-type 'windows-nt) (cons "CYGWIN" "binmode")) (cons "LC_ALL" "C"))) "*Alist of environment variables for subprocesses to inherit." :group 'w3m :type '(repeat (cons :format "%v" :indent 4 (string :format "Name: %v\n") (string :format " Value: %v\n")))) (defcustom w3m-fill-column -1 "*Integer used as the value for `fill-column' in emacs-w3m buffers. If it is positive, pages will be displayed within the columns of that number. If it is zero or negative, the number of columns which subtracted that number from the window width is applied to the maximum width of pages. Note that XEmacs does not always obey this setting." :group 'w3m :type 'integer) (defcustom w3m-mailto-url-function nil "*Function used to handle the `mailto' urls. Function is called with one argument, just a url. If it is nil, a function specified by the `mail-user-agent' variable will be used for composing mail messages." :group 'w3m :type '(radio (const :tag "Not specified" nil) (function :format "%t: %v\n"))) (defcustom w3m-mailto-url-popup-function-alist '((cmail-mail-mode . pop-to-buffer) (mail-mode . pop-to-buffer) (message-mode . pop-to-buffer) (mew-draft-mode . pop-to-buffer) (mh-letter-mode . pop-to-buffer) (wl-draft-mode . pop-to-buffer)) "*Alist of (MAJOR-MODE . FUNCTION) pairs used to pop to a mail buffer up. If a user clicks on a `mailto' url and a mail buffer is composed by `mail-user-agent' with the MAJOR-MODE, FUNCTION will be called with a mail buffer as an argument. Note that the variables `display-buffer-alist' (or `special-display-buffer-names' and `special-display-regexps' for old Emacsen), `same-window-buffer-names' and `same-window-regexps' will be bound to nil while popping to a buffer up." :group 'w3m :type '(repeat (cons :format "%v" :indent 11 (symbol :format "Major-mode: %v\n") (function :format "%t: %v\n")))) (defcustom w3m-use-mule-ucs (and (eq w3m-type 'w3m) (featurep 'un-define)) "*Non-nil means use the multi-script support with Mule-UCS." :group 'w3m :type 'boolean :require 'w3m-ucs) (when w3m-use-mule-ucs (condition-case nil (require 'w3m-ucs) (error (setq w3m-use-mule-ucs nil)))) (defcustom w3m-use-ange-ftp nil "*Non-nil means that `ange-ftp' or `efs' is used to access FTP servers." :group 'w3m :type 'boolean) (defcustom w3m-doc-view-content-types (condition-case nil (delq nil (mapcar (lambda (type) (if (doc-view-mode-p type) (format "application/%s" type))) '(dvi postscript pdf))) (error nil)) "List of content types for which to use `doc-view-mode' to view contents. This overrides `w3m-content-type-alist'." :group 'w3m :type '(repeat (string :tag "Type" :value "application/"))) (defcustom w3m-imitate-widget-button '(eq major-mode 'gnus-article-mode) "*If non-nil, imitate the widget buttons on link (anchor) buttons. It is useful for moving about in a Gnus article buffer using TAB key. It can also be any Lisp form that should return a boolean value." :group 'w3m :type 'sexp) (defcustom w3m-treat-image-size t "*Non-nil means let w3m mind the ratio of the size of images and text. If it is non-nil, the w3m command will make a halfdump which reserves rectangle spaces in which images will be put, and also `alt' texts will be truncated or padded with spaces so that their display width will be the same as the width of images. See also `w3m-pixels-per-character' and `w3m-pixels-per-line'. Those values will be passed to the w3m command in order to compute columns and lines which images occupy." :group 'w3m :type 'boolean) (defcustom w3m-pixels-per-line 64 "*Integer used for the `-ppl' argument of the w3m command. If nil, the height of the default face is used. It is valid only when `w3m-treat-image-size' is non-nil. Note that a small value may not induce a good result. If you want to use emacs-w3m in a character terminal and make `w3m-treat-image-size' effective, you need to set this variable properly." :group 'w3m :type '(choice (const :tag "Auto Detect" nil) (integer :tag "Specify Pixels"))) (defcustom w3m-pixels-per-character nil "*Integer used for the `-ppc' argument of the w3m command. If nil, the width of the default face is used. It is valid only when `w3m-treat-image-size' is non-nil. If you want to use emacs-w3m in a character terminal and make `w3m-treat-image-size' effective, you need to set this variable properly." :group 'w3m :type '(radio (const :tag "Auto Detect" nil) (integer :format "Specify Pixels: %v\n"))) (defcustom w3m-image-default-background nil "Color name used as transparent color of image. Nil means to use the background color of the Emacs frame. Note that this value is effective only to xbm and monochrome pbm images in Emacs 22 and greater." :group 'w3m :type '(radio (string :format "Color: %v\n" :match (lambda (widget value) (and (stringp value) (> (length value) 0)))) (const :tag "Use the background color of the Emacs frame" nil) (const :tag "Null string" ""))) (defvar w3m-accept-japanese-characters (and (not noninteractive) (featurep 'mule) (or (memq w3m-type '(w3mmee w3m-m17n)) ;; Examine whether the w3m command specified by `w3m-command' ;; uses `euc-japan' for the internal character set. (let ((str (eval-when-compile (format (concat "" "" "%s\n") (string 27 36 66 52 65 59 122 27 40 66))))) (with-temp-buffer (set-buffer-multibyte nil) (insert str) (let ((coding-system-for-write 'binary) (coding-system-for-read 'binary) (default-process-coding-system (cons 'binary 'binary))) (call-process-region (point-min) (point-max) w3m-command t t nil "-T" "text/html" "-halfdump") (goto-char (point-min)) (and (re-search-forward (string ?\264 ?\301 ?\273 ?\372) nil t) t)))))) "Non-nil means that the w3m command accepts Japanese characters.") (defcustom w3m-coding-system (if (featurep 'mule) (if (eq w3m-type 'w3mmee) 'iso-2022-7bit-ss2 'iso-2022-7bit) 'iso-8859-1) "*Default coding system used to communicate with the w3m command." :group 'w3m :type 'coding-system) (defcustom w3m-terminal-coding-system (if w3m-accept-japanese-characters 'euc-japan 'iso-8859-1) "*Default coding system used when writing to w3m processes. It is just a default value to set process' coding system initially. \(This variable name is analogically derived from the behavior of the w3m command which accepts data from Emacs just like reads from the terminal.)" :group 'w3m :type 'coding-system) (defcustom w3m-output-coding-system (cond ((not (featurep 'mule)) 'iso-8859-1) ((eq w3m-type 'w3mmee) 'ctext) ((eq w3m-type 'w3m-m17n) (if (and (w3m-find-coding-system 'utf-8) (not (and (equal "Japanese" w3m-language) (featurep 'w3m-ems) (= emacs-major-version 21)))) 'utf-8 'iso-2022-7bit-ss2)) (w3m-accept-japanese-characters 'w3m-euc-japan) (t 'w3m-iso-latin-1)) "*Coding system used when reading from w3m processes." :group 'w3m :type 'coding-system) (defcustom w3m-input-coding-system (if (memq w3m-type '(w3mmee w3m-m17n)) w3m-output-coding-system (if w3m-accept-japanese-characters (if w3m-use-mule-ucs 'w3m-euc-japan-mule-ucs (if (featurep 'w3m-ems) 'w3m-euc-japan 'euc-japan)) (if w3m-use-mule-ucs 'w3m-iso-latin-1-mule-ucs (if (featurep 'w3m-ems) 'w3m-iso-latin-1 'iso-8859-1)))) "*Coding system used when writing to w3m processes. It overrides `coding-system-for-write' if it is not `binary'. Otherwise, the value of the `w3m-current-coding-system' variable is used instead." :group 'w3m :type 'coding-system) (defcustom w3m-file-coding-system (if (featurep 'mule) 'iso-2022-7bit 'iso-8859-1) "*Coding system used when writing configuration files. This value will be referred to by the `w3m-save-list' function." :group 'w3m :type 'coding-system) (defvar w3m-file-coding-system-for-read nil "*Coding system used when reading configuration files. It is strongly recommended that you do not set this variable if there is no particular reason. The value will be referred to by the `w3m-load-list' function.") (defcustom w3m-file-name-coding-system (if (memq system-type '(windows-nt OS/2 emx)) 'shift_jis 'euc-japan) "*Coding system used to convert pathnames when emacs-w3m accesses files." :group 'w3m :type 'coding-system) (defcustom w3m-default-coding-system (if (equal "Japanese" w3m-language) 'shift_jis 'iso-8859-1) "*Default coding system used to encode url strings and post-data." :group 'w3m :type 'coding-system) (defcustom w3m-coding-system-priority-list (if (equal "Japanese" w3m-language) '(shift_jis)) "*Coding systems in order of priority used for emacs-w3m sessions." :group 'w3m :type '(repeat (coding-system :format "%t: %v\n"))) (defcustom w3m-url-coding-system-alist '(("\\`https?://\\(?:[^./?#]+\\.\\)+google\\(?:\\.[^./?#]+\\)+/" . (lambda (url) (if (string-match "&ie=\\([^&]+\\)" url) (w3m-charset-to-coding-system (match-string 1 url))))) (nil . utf-8)) "Alist of url regexps and coding systems used to encode url to retrieve. The form looks like: ((\"REGEXP\" . CODING) (\"REGEXP\" . CODING)...(nil . CODING)) Where REGEXP is a regular expression that matches a url. REGEXP nil means any url; element of which the car is nil, that is the default, has to be the last item of this alist. CODING is a coding system used to encode a url that REGEXP matches. CODING nil means using the coding system corresponding to a charset used to encode the current page. CODING may also be a function that takes one argument URL and returns a coding system. If the example.com site requires a browser to use `shift_jis' to encode url for example, you can add it to this variable as follows: \(add-to-list 'w3m-url-coding-system-alist '(\"\\\\`https?://\\\\(?:[^./?#]+\\\\.\\\\)*example\\\\.com/\" . shift_jis))" :group 'w3m :type '(repeat (cons :format "%v" :indent 2 (radio :format "%v" (const :format "Any " nil) regexp) (radio :format "%v" (const :format "Page's coding system " nil) coding-system)))) (defcustom w3m-key-binding nil "*Type of key binding set used in emacs-w3m sessions. The valid values include `info' which provides Info-like keys, and nil which provides Lynx-like keys." :group 'w3m :type '(choice (const :tag "Use Info-like key mapping." info) (const :tag "Use Lynx-like key mapping." nil)) ;; Since the following form won't be byte-compiled, you developers ;; should never use CL macros like `caaaar', `when', `unless' ... :set (lambda (symbol value) (prog1 (custom-set-default symbol value) (if (or noninteractive ;; Loading w3m.elc is just in progress... (not (featurep 'w3m))) nil (if (and;; Gnus binds `w3m-mode-map' for compiling. (boundp 'w3m-mode-map) (boundp 'w3m-info-like-map) (boundp 'w3m-lynx-like-map)) ;; It won't be bound at the first time. (eval '(setq w3m-mode-map (if (eq value 'info) w3m-info-like-map w3m-lynx-like-map) w3m-minor-mode-map (w3m-make-minor-mode-keymap)))) (let ((buffers (buffer-list))) (save-current-buffer (while buffers (set-buffer (car buffers)) (if (eq major-mode 'w3m-mode) (condition-case nil (progn (use-local-map (symbol-value 'w3m-mode-map)) (w3m-setup-toolbar) (w3m-setup-menu)) (error))) (setq buffers (cdr buffers))))))))) (defcustom w3m-use-cygdrive (eq system-type 'windows-nt) "*If non-nil, use the /cygdrive/ rule when performing `expand-file-name'." :group 'w3m :type 'boolean) (eval-and-compile (defconst w3m-treat-drive-letter (memq system-type '(windows-nt OS/2 emx)) "Say whether the system uses drive letters.")) (defcustom w3m-profile-directory (concat "~/." (file-name-sans-extension (file-name-nondirectory w3m-command))) "*Directory where emacs-w3m config files are loaded from or saved to." :group 'w3m :type 'directory) (defcustom w3m-init-file "~/.emacs-w3m" "*Your emacs-w3m startup file name. If a file with the `.el' or `.elc' suffixes exists, it will be read instead. Nil means no init file will be loaded. Note: This file is used as the startup configuration *NOT* for the w3m command but for emacs-w3m. In order to modify configurations for the w3m command, edit the file named \"~/.w3m/config\" normally." :group 'w3m :type '(radio file (const :format "None " nil))) (defcustom w3m-default-save-directory (concat "~/." (file-name-sans-extension (file-name-nondirectory w3m-command))) "*Default directory where downloaded files will be saved to." :group 'w3m :type 'directory) (defcustom w3m-external-view-temp-directory w3m-profile-directory "Directory where files are saved for the external file viewer." :group 'w3m :type 'directory) (defcustom w3m-default-directory nil "*Directory used as the current directory in emacs-w3m buffers. The valid values include a string specifying an existing directory, a symbol of which the value specifies an existing directory, a function which takes a url as an argument and returns a directory, and nil. If the specified directory does not exist or it is nil, the value of `w3m-profile-directory' is used. Note that there is an exception: if a page visits a local file or visits a remote file using ftp, the directory in which the file exists is used as the current directory instead." :group 'w3m :type '(radio (directory :format "%{%t%}: %v\n" :value "~/") (symbol :format "%{%t%}: %v\n" :match (lambda (widget value) value) :value default-directory) (function :format "%{%t%}: %v\n") (const nil))) (defcustom w3m-accept-languages (let ((file (expand-file-name "config" w3m-profile-directory))) (or (when (file-readable-p file) (with-temp-buffer (insert-file-contents file) (goto-char (point-min)) (when (re-search-forward "^accept_language[\t ]+\\(.+\\)$" nil t) (delete "" (split-string (match-string 1) "[ \t\r\f\n]*,[ \t\r\f\n]*"))))) (when (string= w3m-language "Japanese") '("ja" "en")))) "*List of acceptable languages in descending order of priority. The default value is set according to the accept_language entry of the w3m configuration file (normally \"~/.w3m/config\")." :group 'w3m :type '(repeat (string :format "Lang: %v\n"))) (defcustom w3m-delete-duplicated-empty-lines t "*Non-nil means display two or more continuous empty lines into single." :group 'w3m :type 'boolean) (defvar w3m-display-inline-images nil "Internal variable controls whether to show images in emacs-w3m buffers. This variable is buffer-local which defaults to the value of `w3m-default-display-inline-images'. Don't set it directly; modify the `w3m-default-display-inline-images' variable or use the\ `\\\\[w3m-toggle-inline-images]' command to change the appearance of images. See also `w3m-toggle-inline-images-permanently'.") (make-variable-buffer-local 'w3m-display-inline-images) (defcustom w3m-default-display-inline-images nil "*Non-nil means display images inline in emacs-w3m buffers. You can toggle the visibility of images by the\ `\\\\[w3m-toggle-inline-images]' command. See also `w3m-toggle-inline-images-permanently'." :group 'w3m :type 'boolean) (defcustom w3m-toggle-inline-images-permanently t "*Non-nil means let the visibility of images continue permanently. The visibility of images is initialized according to `w3m-default-display-inline-images' at the first time, and except that it may be toggled by the `\\\\[w3m-toggle-inline-images]'\ command, it does not change hereafter, if it is non-nil. Otherwise, whether images are visible is initialized according to `w3m-default-display-inline-images' whenever you visit a new page or reload the current page in an emacs-w3m buffer." :group 'w3m :type 'boolean) (defcustom w3m-icon-directory (let (dir) (or (catch 'found-dir (let* ((path (locate-library "w3m")) (paths (if path (cons (file-name-directory path) load-path) load-path))) (while paths (setq path (car paths) paths (cdr paths)) (if path (progn (if (file-directory-p (setq dir (expand-file-name "../../etc/images/w3m/" path))) (throw 'found-dir dir)) (if (file-directory-p (setq dir (expand-file-name "../etc/images/w3m/" path))) (throw 'found-dir dir)) (if (file-directory-p (setq dir (expand-file-name "../../etc/w3m/icons/" path))) (throw 'found-dir dir)) (if (file-directory-p (setq dir (expand-file-name "../etc/w3m/icons/" path))) (throw 'found-dir dir))))))) (and (fboundp 'locate-data-directory) (or (locate-data-directory "images/w3m") (locate-data-directory "w3m"))) (and (file-directory-p (setq dir (expand-file-name "images/w3m/" data-directory))) dir) (and (file-directory-p (setq dir (expand-file-name "w3m/icons/" data-directory))) dir))) "*Directory where emacs-w3m should find icon files." :group 'w3m :type '(radio (const :tag "Not specified") (directory :format "%t: %v\n"))) (defcustom w3m-broken-proxy-cache nil "*Set it to t if the proxy server seems not to work properly in caching. Note that this may be the double-edged sword; setting it to t will likely be harmful if the proxy server sends bad requests (e.g., not including the Host header, see RFC2616 section 14.23) to foreign servers when the w3m command specifies the \"no-cache\" directive. Also note that it may not be effective if you are using old w3m command." :group 'w3m :type 'boolean) (defcustom w3m-quick-start t "*Non-nil means let emacs-w3m start quickly w/o requiring confirmation. When you invoke the `w3m' command, it attempts to visit the page of a string like url around the cursor or the value of `w3m-home-page'. You won't be asked for the confirmation then if this value is non-nil. Otherwise, you will be prompted for that url with the editing form." :group 'w3m :type 'boolean) (defcustom w3m-home-page (or (getenv "HTTP_HOME") (getenv "WWW_HOME") "about:") "*This variable specifies the url string to open when emacs-w3m starts. Don't say HP, which is the abbreviated name of a certain company. ;-)" :group 'w3m :type '(radio :convert-widget w3m-widget-type-convert-widget `(,@(if (getenv "HTTP_HOME") `((const :format "HTTP_HOME: \"%v\"\n" ,(getenv "HTTP_HOME")))) ,@(if (getenv "WWW_HOME") `((const :format "WWW_HOME: \"%v\"\n" (getenv "WWW_HOME")))) (const :tag "About emacs-w3m" "about:") (const :tag "Blank page" "about:blank") (string :format "URL: %v\n")))) (defcustom w3m-arrived-file (expand-file-name ".arrived" w3m-profile-directory) "*Name of the file to keep the arrived URLs database." :group 'w3m :type 'file) (defcustom w3m-keep-arrived-urls 500 "*Maximum number of URLs which the arrived URLs database keeps." :group 'w3m :type 'integer) (defcustom w3m-prefer-cache nil "*Non-nil means that cached contents are used without checking headers." :group 'w3m :type 'boolean) (defcustom w3m-keep-cache-size 300 "*Maximum number of pages to be cached in emacs-w3m." :group 'w3m :type 'integer) (defcustom w3m-follow-redirection 9 "*Maximum number of redirections which emacs-w3m honors and follows. If nil, redirections are followed by the w3m command. Don't set it to nil if you allow to use cookies (i.e., you have set `w3m-use-cookies' to non-nil) since cookies may be shared among many redirected pages." :group 'w3m :type '(radio (const :format "Ignore redirections " nil) integer)) (defcustom w3m-redirect-with-get t "*If non-nil, use the GET method after redirection. It controls how emacs-w3m works when a server responds the code 301 or 302. Here is an extract from RFC2616: Note: RFC 1945 and RFC 2068 specify that the client is not allowed to change the method on the redirected request. However, most existing user agent implementations treat 302 as if it were a 303 response, performing a GET on the Location field-value regardless of the original request method." :group 'w3m :type 'boolean) (defcustom w3m-resize-image-scale 50 "*Number of steps in percent used when resizing images." :group 'w3m :type 'integer) (defface w3m-anchor '((((class color) (background light)) (:foreground "blue")) (((class color) (background dark)) (:foreground "cyan")) (t (:underline t))) "Face used for displaying anchors." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-anchor-face 'face-alias 'w3m-anchor) (defface w3m-arrived-anchor '((((class color) (background light)) (:foreground "navy")) (((class color) (background dark)) (:foreground "LightSkyBlue")) (t (:underline t))) "Face used for displaying anchors which have already arrived." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-arrived-anchor-face 'face-alias 'w3m-arrived-anchor) (defface w3m-current-anchor '((t (:underline t :bold t))) "Face used to highlight the current anchor." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-current-anchor-face 'face-alias 'w3m-current-anchor) (defface w3m-image '((((class color) (background light)) (:foreground "ForestGreen")) (((class color) (background dark)) (:foreground "PaleGreen")) (t (:underline t))) "Face used for displaying alternate strings of images." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-image-face 'face-alias 'w3m-image) (defface w3m-image-anchor '((((class color) (background light)) (:background "light yellow")) (((class color) (background dark)) (:background "dark green")) (t (:underline t))) "Face used for displaying alternate strings of images which are in anchors." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-image-anchor-face 'face-alias 'w3m-image-anchor) (defface w3m-history-current-url ;; The following strange code compounds the attributes of the ;; `secondary-selection' face and the `w3m-arrived-anchor' face, ;; and generates the new attributes for this face. (let ((base 'secondary-selection) (fn (if (featurep 'xemacs) 'face-custom-attributes-get 'custom-face-attributes-get));; What a perverseness it is. ;; Both `face-custom-attributes-get' in XEmacs and ;; `custom-face-attributes-get' in CUSTOM 1.9962 attempt to ;; require `font' in Emacs/w3 and `cl' arbitrarily. :-/ (features (cons 'font features)) base-attributes attributes attribute) (setq base-attributes (funcall fn base nil) attributes (funcall fn 'w3m-arrived-anchor nil)) (while base-attributes (setq attribute (car base-attributes)) (unless (memq attribute '(:foreground :underline)) (setq attributes (plist-put attributes attribute (cadr base-attributes)))) (setq base-attributes (cddr base-attributes))) (list (list t attributes))) "Face used to highlight the current url in the \"about://history/\" page." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-history-current-url-face 'face-alias 'w3m-history-current-url) (defface w3m-bold '((t (:bold t))) "Face used for displaying bold text." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-bold-face 'face-alias 'w3m-bold) (defface w3m-italic '((((type nil)) (:underline t)) (t (:italic t))) "Face used for displaying italic text. By default it will be a underline face on a non-window system." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-italic-face 'face-alias 'w3m-italic) (defface w3m-underline '((t (:underline t))) "Face used for displaying underlined text." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-underline-face 'face-alias 'w3m-underline) (defface w3m-strike-through `((((class color)) ,(if (featurep 'xemacs) '(:strikethru t) '(:strike-through t))) (t (:underline t))) "Face used for displaying strike-through text." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-strike-through-face 'face-alias 'w3m-strike-through) (defface w3m-insert '((((class color) (background light)) (:foreground "purple")) (((class color) (background dark)) (:foreground "orchid")) (t (:underline t))) "Face used for displaying insert text." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-insert-face 'face-alias 'w3m-insert) (defcustom w3m-mode-hook nil "*Hook run after `w3m-mode' initialization. This hook is evaluated by the `w3m-mode' function." :group 'w3m :type 'hook) (defcustom w3m-fontify-before-hook nil "*Hook run when starting to fontify emacs-w3m buffers. This hook is evaluated by the `w3m-fontify' function." :group 'w3m :type 'hook) (defcustom w3m-fontify-after-hook nil "*Hook run after fontifying emacs-w3m buffers. This hook is evaluated by the `w3m-fontify' function." :group 'w3m :type 'hook) (defcustom w3m-display-hook '(w3m-move-point-for-localcgi w3m-history-highlight-current-url) "*Hook run after displaying pages in emacs-w3m buffers. Each function is called with a url string as the argument. This hook is evaluated by the `w3m-goto-url' function." :group 'w3m :type 'hook :initialize 'w3m-custom-hook-initialize) (defcustom w3m-after-cursor-move-hook '(w3m-highlight-current-anchor w3m-show-form-hint w3m-print-this-url w3m-auto-show) "*Hook run each time after the cursor moves in emacs-w3m buffers. This hook is called by the `w3m-check-current-position' function by way of `post-command-hook'." :group 'w3m :type 'hook :initialize 'w3m-custom-hook-initialize) (defcustom w3m-delete-buffer-hook '(w3m-pack-buffer-numbers) "*Hook run when every emacs-w3m buffer is deleted." :group 'w3m :type 'hook :initialize 'w3m-custom-hook-initialize) (defcustom w3m-select-buffer-hook nil "*Hook run when a different emacs-w3m buffer is selected." :group 'w3m :type 'hook) (defcustom w3m-async-exec t "*Non-nil means execute the w3m command asynchronously in Emacs process." :group 'w3m :type 'boolean) ;; As far as we know, Emacs 21 under Mac OS X[1] and XEmacs under ;; Solaris[2] won't run the asynchronous operations correctly when ;; both `w3m-async-exec' and `w3m-process-connection-type' are non-nil; ;; [1]the final kilobyte or so might get lost from raw data downloaded ;; from a web site; [2]XEmacs hangs up. (defcustom w3m-process-connection-type (not (or (and (memq system-type '(darwin macos)) (let ((ver (shell-command-to-string "uname -r"))) (and (string-match "^\\([0-9]+\\)\\." ver) (< (string-to-number (match-string 1 ver)) 7)))) (and (featurep 'xemacs) (string-match "solaris" system-configuration)))) "*Value for `process-connection-type' used when communicating with w3m." :group 'w3m :type 'boolean) (defcustom w3m-async-exec-with-many-urls ;; XEmacs 21.5 tends to freeze when retrieving many urls at a time. :-< (not (and (featurep 'xemacs) (not (featurep 'sxemacs)) (= emacs-major-version 21) (= emacs-minor-version 5))) "Non-nil means allow retrieving many urls asynchronously. The value affects how emacs-w3m will work with group:* urls and the `w3m-session-select' feature. If it is nil, the asynchronous operation is inhibited in those cases even if `w3m-async-exec' is non-nil." :group 'w3m :type 'boolean) (defcustom w3m-default-content-type "text/html" "*Default value assumed as the content type of local files." :group 'w3m :type 'string) (require 'mailcap) (mailcap-parse-mailcaps nil t) (mailcap-parse-mimetypes nil t) (defvar w3m-content-type-alist (let ((additions '(("text/sgml" "\\.sgml?\\'" nil "text/plain") ("text/xml" "\\.xml\\'" nil "text/plain") ("text/x-markdown" "\\.md\\'" nil w3m-prepare-markdown-content) ("application/xml" "\\.xml\\'" nil w3m-detect-xml-type) ("application/rdf+xml" "\\.rdf\\'" nil "text/plain") ("application/rss+xml" "\\.rss\\'" nil "text/plain") ("application/xhtml+xml" nil nil "text/html") ("application/x-bzip2" "\\.bz2\\'" nil nil nil) ("application/x-gzip" "\\.gz\\'" nil nil nil))) (extensions (copy-sequence mailcap-mime-extensions)) elem ext type exts tem viewer rest) ;; items w/ file extensions (while (setq elem (pop extensions)) (setq ext (car elem) type (cdr elem)) (unless (zerop (length ext)) (setq exts (list ext)) (while (setq tem (rassoc type extensions)) (unless (or (zerop (length (car tem))) (member (car tem) exts)) (push (car tem) exts)) (setq extensions (delq tem extensions))) (setq viewer (mailcap-mime-info type)) (push (list type (concat (if (cdr exts) (regexp-opt exts) (regexp-quote ext)) "\\'") (when (stringp viewer) viewer) nil) rest))) ;; items w/o file extension (dolist (major mailcap-mime-data) (dolist (minor (cdr major)) (unless (string-match "\\`\\.\\*\\'" (car minor)) (setq type (cdr (assq 'type (cdr minor))) viewer (cdr (assq 'viewer (cdr minor)))) (or (string-match "/\\*\\'" type) (assoc type rest) (push (list type nil (when (stringp viewer) viewer) nil) rest))))) ;; convert viewers (dolist (elem rest) (when (setq viewer (car (cdr (cdr elem)))) (dolist (v (prog1 (split-string viewer) (setq viewer nil))) (push (cond ((string-equal "%s" v) 'file) ((string-equal "%u" v) 'url) (t v)) viewer)) (setcar (cdr (cdr elem)) (nreverse viewer)))) ;; addition (dolist (elem additions) (if (setq tem (assoc (car elem) rest)) (setcdr tem (cdr elem)) ;; overkill? (push elem rest))) (nreverse rest)) "*Alist of content types, regexps, commands to view, and filters. Each element is a list which consists of the following data: 1. Content type. 2. Regexp matching a url or a file name. 3. Method to view contents. The following three types may be used: a. Lisp function which takes the url to view as an argument. b. (\"COMMAND\" [ARG...]) -- where \"COMMAND\" is the external command and ARG's are the arguments passed to the command if any. The symbols `file' and `url' that appear in ARG's will be replaced respectively with the name of a temporary file which contains the contents and the string of the url to view. c. nil which means to download the url into the local file. 4. Content type that overrides the one specified by `1. Content type'. Valid values include: a. Lisp function that takes three arguments URL, CONTENT-TYPE, and CHARSET, and returns a content type. b. String that specifies a content type. c. nil that means not to override the content type.") ;; FIXME: we need to rearrange the complicated and redundant relation of ;; `w3m-encoding-type-alist', `w3m-decoder-alist', and `w3m-encoding-alist'. (defcustom w3m-encoding-type-alist '(("\\.gz\\'" . "gzip") ("\\.bz2?\\'" . "bzip")) "*Alist of file suffixes and content encoding types." :group 'w3m :type '(repeat (cons :format "%v" :indent 14 (string :format "Regexp of Suffixes: %v\n") (string :format "Encoding Type: %v\n")))) (defcustom w3m-decoder-alist `((gzip "gzip" ("-d")) ;; Don't use "gunzip" and "bunzip2" (bzip "bzip2" ("-d")) ;; for broken OS and implementations. (deflate ,(if (not noninteractive) (let ((exec-path (let ((prefix (file-name-directory (directory-file-name (file-name-directory (w3m-which-command w3m-command)))))) (list (expand-file-name "libexec/w3m" prefix) (expand-file-name "lib/w3m" prefix))))) (w3m-which-command "inflate"))) nil)) "Alist of encoding types, decoder commands, and arguments." :group 'w3m :type '(repeat (group :indent 4 (radio :format "Encoding: %v" (const :format "%v " gzip) (const :format "%v " bzip) (const deflate)) (string :format "Command: %v\n") (repeat :tag "Arguments" :extra-offset 2 (string :format "%v\n"))))) (defcustom w3m-charset-coding-system-alist (let ((rest '((us_ascii . raw-text) (us-ascii . raw-text) (gb2312 . cn-gb-2312) (cn-gb . cn-gb-2312) (iso-2022-jp-2 . iso-2022-7bit-ss2) (iso-2022-jp-3 . iso-2022-7bit-ss2) (tis-620 . tis620) (windows-874 . tis-620) (cp874 . tis-620) (x-ctext . ctext) (unknown . undecided) (x-unknown . undecided) (windows-1250 . cp1250) (windows-1251 . cp1251) (windows-1252 . cp1252) (windows-1253 . cp1253) (windows-1254 . cp1254) (windows-1255 . cp1255) (windows-1256 . cp1256) (windows-1257 . cp1257) (windows-1258 . cp1258) (euc-jp . euc-japan) (shift-jis . shift_jis) (shift_jis . shift_jis) (sjis . shift_jis) (x-euc-jp . euc-japan) (x-shift-jis . shift_jis) (x-shift_jis . shift_jis) (x-sjis . shift_jis))) dest) (while rest (or (w3m-find-coding-system (car (car rest))) (setq dest (cons (car rest) dest))) (setq rest (cdr rest))) dest) "Alist of MIME charsets and coding systems. Both charsets and coding systems must be symbols." :group 'w3m :type '(repeat (cons :format "%v" :indent 2 (symbol :format "%t: %v\n") (coding-system :format "%t: %v\n")))) (defcustom w3m-correct-charset-alist '(("windows-874" . "tis-620") ("cp874" . "tis-620") ("cp1250" . "windows-1250") ("cp1251" . "windows-1251") ("cp1252" . "windows-1252") ("cp1253" . "windows-1253") ("cp1254" . "windows-1254") ("cp1255" . "windows-1255") ("cp1256" . "windows-1256") ("cp1257" . "windows-1257") ("cp1258" . "windows-1258") ("shift-jis" . "shift_jis") ("sjis" . "shift_jis") ("x-euc-jp" . "euc-jp") ("x-shift-jis" . "shift_jis") ("x-shift_jis" . "shift_jis") ("x-sjis" . "shift_jis")) "Alist of MIME charsets; strange ones and standard ones." :group 'w3m :type '(repeat (cons :format "%v" :indent 11 (string :format "From: %v\n") (string :format "To: %v\n")))) (defcustom w3m-horizontal-scroll-columns 10 "*Number of steps in columns used when scrolling a window horizontally." :group 'w3m :type 'integer) (defcustom w3m-horizontal-shift-columns 2 "*Number of steps in columns used when shifting a window horizontally. The term `shifting' means a fine level scrolling." :group 'w3m :type 'integer) (defcustom w3m-view-recenter 1 "Recenter window contents when going to an anchor. An integer is passed to `recenter', for instance the default 1 means put the anchor on the second line of the screen. t means `recenter' with no arguments, which puts it in the middle of the screen. nil means don't recenter, let the display follow point in the usual way." :group 'w3m ;; radio items in the same order as in the docstring, and `integer' first ;; because it's the default :type '(radio (integer :format "%{%t%}: %v\n" :value 1 :size 1) (const :format "%t\n" t) (const :format "%t\n" nil))) (defcustom w3m-clear-display-while-reading t "If non-nil, clear the display while reading a new page." :group 'w3m :type 'boolean) (defcustom w3m-use-form t "*Non-nil means make it possible to use form extensions. (EXPERIMENTAL)" :group 'w3m :type 'boolean :require 'w3m-form) (defcustom w3m-submit-form-safety-check nil "Non-nil means ask you for confirmation when submitting a form." :group 'w3m :type 'boolean) (defcustom w3m-use-cookies t "*Non-nil means enable emacs-w3m to use cookies. (EXPERIMENTAL)" :group 'w3m :type 'boolean) (defcustom w3m-use-filter t "*Non-nil means use filter programs to convert web contents. See also `w3m-filter-configuration'." :group 'w3m :type 'boolean :require 'w3m-filter) (defcustom w3m-use-symbol (when (and (featurep 'mule) (eq w3m-type 'w3m-m17n)) (if (eq w3m-output-coding-system 'utf-8) (and (w3m-mule-unicode-p) (or (featurep 'xemacs) (< emacs-major-version 23)) 'w3m-device-on-window-system-p) t)) "*Non-nil means replace symbols that the <_SYMBOL> tags lead into. It is meaningful only when the w3m-m17n command is used and (X)Emacs handles unicode charsets." :group 'w3m :type 'boolean :require 'w3m-symbol) (defcustom w3m-edit-function 'find-file "*Function used for editing local files. It is used when either `w3m-edit-current-url' or `w3m-edit-this-url' is invoked for local pages." :group 'w3m :type '(radio (const :tag "Edit it in the current window" find-file) (const :tag "Edit it in another window" find-file-other-window) (const :tag "Edit it in another frame" find-file-other-frame) (const :tag "View it in another window" view-file-other-window) (function :format "Other function: %v\n" :value view-file))) (defcustom w3m-edit-function-alist '(("\\`[^?]+/hiki\\.cgi\\?" . hiki-edit-url)) "*Alist of functions used for editing pages. This option is referred to decide which function should be used to edit a specified page, when either `w3m-edit-current-url' or `w3m-edit-this-url' is invoked. When no suitable function is found from this alist, `w3m-edit-function' is used." :group 'w3m :type '(repeat (cons :format "%v" :indent 3 (regexp :format "URL: %v\n") (function)))) (defcustom w3m-url-local-directory-alist (when (boundp 'yahtml-path-url-alist) (mapcar (lambda (pair) (cons (cdr pair) (car pair))) (symbol-value 'yahtml-path-url-alist))) "*Alist of URLs and local directories. If directory names of a given URL and the car of an element are the same, emacs-w3m assumes that the file exists in the local directory where the cdr of an element points to. The default value will be set to a value of the `yahtml-path-url-alist' variable which exchanged the car and the cdr in each element if it is available." :type '(repeat (cons :format "%v" :indent 3 (string :format "URL: %v\n") (directory :format "%t: %v\n"))) :group 'w3m) (defcustom w3m-track-mouse t "*Whether to track the mouse and message the url under the mouse. See also `show-help-function' if you are using GNU Emacs. A tip for XEmacs users: You can also use the `balloon-help' feature by the `M-x balloon-help-mode' command with arg 1. If the window manager decorates the balloon-help frame, and that is not to your taste, you may strip it off with the following directives: For ol[v]wm use this in .Xdefaults: olvwm.NoDecor: balloon-help or olwm.MinimalDecor: balloon-help For fvwm version 1 use this in your .fvwmrc: NoTitle balloon-help or Style \"balloon-help\" NoTitle, NoHandles, BorderWidth 0 For twm use this in your .twmrc: NoTitle { \"balloon-help\" } See the balloon-help.el file for more information." :group 'w3m :type 'boolean) (defcustom w3m-use-title-buffer-name nil "Non-nil means use name of buffer included current title." :group 'w3m :type 'boolean) (defcustom w3m-use-japanese-menu (and (equal "Japanese" w3m-language) ;; Emacs 21, XEmacs 21.4 and SXEmacs don't seem to support ;; non-ASCII text in the popup menu. (not (featurep 'sxemacs)) (if (featurep 'xemacs) (or (> emacs-major-version 21) (and (= emacs-major-version 21) (>= emacs-minor-version 5))) (or (>= emacs-major-version 22) (featurep 'meadow)))) "Non-nil means use Japanese characters for Menu if possible." :group 'w3m :type 'boolean) (defcustom w3m-menu-on-forefront nil "Non-nil means place the emacs-w3m menus on the forefront of the menu bar." :group 'w3m :type 'boolean :set (lambda (symbol value) (prog1 (custom-set-default symbol value) (unless noninteractive (w3m-menu-on-forefront value))))) (defcustom w3m-use-tab t "Non-nil means make emacs-w3m a tab browser. It makes it possible to show all emacs-w3m buffers in a single window with the tabs line, and you can choose one by clicking a mouse on it. See also `w3m-use-tab-menubar'." :group 'w3m :type 'boolean) (defcustom w3m-add-tab-number nil "Non-nil means put sequential number to a title on tab." :group 'w3m :type 'boolean) (defcustom w3m-use-tab-menubar t "Non-nil means use the TAB pull-down menu in the menubar. It makes it possible to show all emacs-w3m buffers in a single window, and you can choose one by clicking a mouse on it. This feature requires that Emacs has been built to be able to display multilingual text in the menubar if you often visit web sites written in non-ascii text. See also `w3m-use-tab'." :group 'w3m :type 'boolean) (defcustom w3m-new-session-url "about:blank" "*Default url to be opened in a tab or a session which is created newly." :group 'w3m :type '(radio :convert-widget w3m-widget-type-convert-widget `((const :tag "About emacs-w3m" "about:") (const :tag "Blank page" "about:blank") (const :tag "Bookmark" "about://bookmark/") (const :tag ,(format "Home page (%s)" w3m-home-page) ,w3m-home-page) (string :format "URL: %v\n" :value "http://emacs-w3m.namazu.org")))) (defcustom w3m-make-new-session nil "*Non-nil means making new emacs-w3m buffers when visiting new pages. If it is non-nil and there are already emacs-w3m buffers, the `w3m' command makes a new emacs-w3m buffer if a user specifies a url string in the minibuffer, and the `w3m-safe-view-this-url' command also makes a new buffer if a user invokes it in a buffer not being running the `w3m-mode'." :group 'w3m :type 'boolean) (defcustom w3m-use-favicon t "*Non-nil means show favicon images if they are available. It will be set to nil automatically if ImageMagick's `convert' program does not support the ico format." :get (lambda (symbol) (and (not noninteractive) (default-value symbol) (w3m-favicon-usable-p))) :set (lambda (symbol value) (custom-set-default symbol (and (not noninteractive) value (w3m-favicon-usable-p)))) :group 'w3m :type 'boolean) (defcustom w3m-show-graphic-icons-in-mode-line t "Non-nil means show graphic status indicators in the mode-line. If it is nil, also the favicon won't be shown in the mode-line even if `w3m-use-favicon' is non-nil." :set (lambda (symbol value) (prog1 (custom-set-default symbol value) (if (and (not noninteractive) ;; Make sure it is not the first time. (featurep 'w3m) (fboundp 'w3m-initialize-graphic-icons)) (w3m-initialize-graphic-icons)))) :group 'w3m :type 'boolean) (defcustom w3m-show-graphic-icons-in-header-line t "Non-nil means show graphic status indicators in the header-line. If it is nil, also the favicon won't be shown in the header-line even if `w3m-use-favicon' is non-nil. This variable is currently meaningless under XEmacs." :group 'w3m :type 'boolean) (defcustom w3m-pop-up-windows t "Non-nil means split the windows when a new emacs-w3m session is created. This variable is similar to `pop-up-windows' and quite overridden by `w3m-pop-up-frames' as if `pop-up-frames' influences. Furthermore, if `w3m-use-tab' is non-nil or there is the buffers selection window (for the `w3m-select-buffer' feature), this variable is ignored when creating the second or more emacs-w3m session." :group 'w3m :type 'boolean) (defcustom w3m-pop-up-frames nil "Non-nil means pop to a new frame up for an emacs-w3m session. This variable is similar to `pop-up-frames' and does override `w3m-pop-up-windows'. If `w3m-use-tab' is non-nil or there is the buffers selection window (for the `w3m-select-buffer' feature), this variable is ignored when creating the second or more emacs-w3m session." :group 'w3m :type 'boolean) (defcustom w3m-view-this-url-new-session-in-background nil "*Obsolete." :group 'w3m :type 'boolean) (defcustom w3m-new-session-in-background w3m-view-this-url-new-session-in-background "*Say whether not to focus on a new tab or a new session in target. It influences only when a new emacs-w3m buffer is created." :group 'w3m :type 'boolean) (defcustom w3m-popup-frame-parameters nil "Alist of frame parameters used when creating a new emacs-w3m frame. It allows not only the alist form but also XEmacs's plist form." :group 'w3m :type '(choice (group :inline t :tag "Frame Parameters (Emacs)" (repeat :inline t :tag "Frame Parameters (Emacs)" (cons :format "%v" :indent 3 (symbol :format "Parameter: %v\n") (sexp :format "%t: %v\n")))) (group :inline t :tag "Frame Plist (XEmacs)" (repeat :inline t :tag "Frame Plist (XEmacs)" (group :indent 2 :inline t (symbol :format "Property: %v\n") (sexp :format "%t: %v\n")))))) (defcustom w3m-auto-show t "*Non-nil means provide the ability to horizontally scroll the window. Automatic horizontal scrolling is made when the point gets away from both ends of the window, but nothing occurs if `truncate-lines' is set to nil. This feature works with the specially made program in emacs-w3m; usual `auto-hscroll-mode', `automatic-hscrolling', `auto-show-mode' or `hscroll-mode' will all be invalidated in emacs-w3m buffers." :group 'w3m :type 'boolean) (defcustom w3m-horizontal-scroll-division 4 "*Integer used by the program making the point certainly visible. The cursor definitely does not go missing even when it has been driven out of the window while wandering around anchors and forms in an emacs-w3m buffer. Suppose that the value of this variable is N. When the point is outside the left of the window, emacs-w3m scrolls the window so that the point may be displayed on the position within 1/N of the width of the window from the left. Similarly, when the point is outside the right of the window, emacs-w3m scrolls the window so that the point may be displayed on the position of 1/N of the width of the window from the right. This feature doesn't work if `w3m-auto-show' is nil. The value must be a larger integer than 1." :group 'w3m :type 'integer :set (lambda (symbol value) (custom-set-default symbol (if (and (integerp value) (> value 1)) value 4)))) (defcustom w3m-show-error-information t "*Non-nil means show an error information as a web page. Page is made when the foreign server doesn't respond to a request to retrieve data." :group 'w3m :type 'boolean) (defcustom w3m-use-refresh t "*Non-nil means honor the REFRESH attribute in META tags. Emacs-w3m arbitrarily takes you to a url specified by that attribute except for search results of Google[1]. See also `w3m-refresh-minimum-interval'. [1] URL `https://productforums.google.com/forum/#!topic/websearch/hpzglVb9B5M'" :group 'w3m :type 'boolean) (defcustom w3m-refresh-minimum-interval 5 "Number of seconds used to override the meta refresh a page specifies. If the meta refresh seconds the page specifies is less than this value, this will be used instead of that." :group 'w3m :type 'integer) (defcustom w3m-mbconv-command "mbconv" "*Name of the \"mbconv\" command provided by the \"libmoe\" package. The \"libmoe\" package is used when you use the w3mmee command instead of the w3m command. See also `w3m-command'." :group 'w3m :type 'string) (defcustom w3m-markdown-converter (cond ((w3m-which-command "markdown") '("markdown")) ((w3m-which-command "grip") '("grip" "--quiet" "--title" "" "--export" "-"))) "*List of COMMAND which convert markdown formed files into HTML format and its ARGUMENTS." :group 'w3m :type '(cons (string :format "Command: %v\n") (repeat (string :format "Arguments:\n%v\n")))) (defcustom w3m-local-find-file-regexps (cons nil (concat "\\." (regexp-opt (append '("htm" "html" "shtm" "shtml" "xhtm" "xhtml" "txt") (and w3m-markdown-converter '("md")) (and (w3m-image-type-available-p 'jpeg) '("jpeg" "jpg")) (and (w3m-image-type-available-p 'gif) '("gif")) (and (w3m-image-type-available-p 'png) '("png")) (and (w3m-image-type-available-p 'xbm) '("xbm")) (and (w3m-image-type-available-p 'xpm) '("xpm"))) t) ;; with surrounding parens (for old Emacsen). "\\'")) "*Cons of two regexps matching and not matching with local file names. If a url of the `file:' scheme in which you entered matches the first form and does not match the latter form, it will be opened by the function specified by the `w3m-local-find-file-function' variable. Nil for the regexp matches any file names. For instance, the value `(nil . \"\\\\.[sx]?html?\\\\'\")' allows \"file:///some/where/w3m.el\", not \"file:///any/where/index.html\", to open by the function specified by `w3m-local-find-file-function'. The latter will be opened as a normal web page. Furthermore, if you would like to view some types of contents in the local system using the viewers specified by the `w3m-content-type-alist' variable, you can add regexps matching those file names to the second element of this variable. For example: \(setq w3m-local-find-file-regexps '(nil . \"\\\\.\\\\(?:[sx]?html?\\\\|dvi\\\\|ps\\\\|pdf\\\\)\\\\'\")) It is effective only when the `w3m-local-find-file-function' variable is set properly." :group 'w3m :type '(cons (radio :tag "Match" (const :format "All " nil) (regexp :format "%t: %v\n")) (radio :tag "Nomatch" (const :format "All " nil) (regexp :format "%t: %v\n")))) (defcustom w3m-local-find-file-function '(if (w3m-popup-frame-p) 'find-file-other-frame 'find-file-other-window) "*Function used to open local files. If a url of the `file:' scheme in which you entered agrees with the rule of the `w3m-local-find-file-regexps' variable (which see), it is used to open the file. Function should take one argument, the string naming the local file. It can also be any Lisp form returning a function. Set this to nil if you want to always use emacs-w3m to see local files." :group 'w3m :type 'sexp) (defcustom w3m-local-directory-view-method 'w3m-cgi "*Symbol of the method to view a local directory tree. The valid values include `w3m-cgi' using the CGI program specified by the `w3m-dirlist-cgi-program' variable (which see), and `w3m-dtree' using the w3m-dtree Lisp module." :group 'w3m :type '(radio (const :format "Dirlist CGI " w3m-cgi) (const :tag "Directory tree" w3m-dtree))) (defcustom w3m-dirlist-cgi-program (cond ((eq system-type 'windows-nt) "c:/usr/local/lib/w3m/dirlist.cgi") ((memq system-type '(OS/2 emx)) (expand-file-name "dirlist.cmd" (getenv "W3M_LIB_DIR"))) (t nil)) "*Name of the CGI program to list a local directory. If it is nil, the dirlist.cgi module of the w3m command will be used." :group 'w3m :type `(radio (const :tag "w3m internal CGI" nil) (file :format "path of 'dirlist.cgi': %v\n" :value ,(if (not noninteractive) (expand-file-name (concat "../lib/" (file-name-nondirectory w3m-command) "/dirlist.cgi") (file-name-directory (w3m-which-command w3m-command))))))) (defcustom w3m-add-referer (if (boundp 'w3m-add-referer-regexps) (symbol-value 'w3m-add-referer-regexps) (cons "\\`https?:" "\\`https?://\\(?:localhost\\|127\\.0\\.0\\.1\\)/")) "*Rule of sending referers. There are five choices as the valid values of this option. \(1\) nil: this means that emacs-w3m never send referers. \(2\) t: this means that emacs-w3m always send referers. \(3\) lambda: this means that emacs-w3m send referers only when both the current page and the target page are provided by the same server. \(4\) a cons cell keeping two regular expressions: this means that emacs-w3m send referers when the url of the current page matches the first regular expression and does not match the second regular expression. Nil for the regexp matches any url. \(5\) a function: emacs-w3m send referers when this function which has two arguments, URL and REFERER, returns non-nil. If you become nervous about leak of your private WEB browsing history, set `nil' or `lambda' to this option. When your computer belongs to a secret network, you may set a pair of regular expressions to inhibit sending referers which will disclose your private informations, as follows: \(setq w3m-add-referer '(\"\\\\`https?:\" . \"\\\\`https?://\\\\(?:[^./]+\\\\.\\\\)*example\\\\.net/\")\) " :group 'w3m :type '(choice (const :tag "Never send referers" nil) (const :tag "Always send referers" t) (const :tag "Send referers when accessing the same server" lambda) (cons :tag "Send referers when URI matches:" (list :inline t :format "%v" (radio :indent 2 :sample-face underline :tag "Allow" (regexp :format "%t: %v\n") (const :tag "Don't allow all" nil)) (radio :indent 2 :sample-face underline :tag "Don't allow" (regexp :format "%t: %v\n") (const :tag "Allow all" nil)))) (function :tag "Send referers when your function returns non-nil"))) (defcustom w3m-touch-command (w3m-which-command "touch") "*Name of the executable file of the touch command. Note that the command is required to be able to modify file's timestamp with the `-t' option." :group 'w3m :type 'string) (defcustom w3m-puny-utf-16be (cond ((w3m-find-coding-system 'utf-16-be-no-signature) 'utf-16-be-no-signature) ((w3m-find-coding-system 'utf-16be) 'utf-16be) (t nil)) "*Coding system for PUNY coding. if nil, don't use PUNY code." :group 'w3m :type '(radio (coding-system :tag "UTF-16BE without BOM") (const "Don't use" nil))) (defcustom w3m-uri-replace-alist '(("\\`gg:" w3m-search-uri-replace "google") ("\\`ya:" w3m-search-uri-replace "yahoo") ("\\`bts:" w3m-search-uri-replace "debian-bts") ("\\`dpkg:" w3m-search-uri-replace "debian-pkg") ("\\`alc:" w3m-search-uri-replace "alc") ("\\`urn:ietf:rfc:\\([0-9]+\\)" w3m-pattern-uri-replace "http://www.ietf.org/rfc/rfc\\1.txt")) "*Alist of regexps matching URIs, and some types of replacements. It can be used universally to replace URI strings in the local rule to the valid forms in the Internet. Each element looks like the `(REGEXP FUNCTION OPTIONS...)' form. FUNCTION takes one or more arguments, a uri and OPTIONS. You can use the grouping constructs \"\\\\(...\\\\)\" in REGEXP, and they can be referred by the \"\\N\" forms in a replacement (which is one of OPTIONS). Here are some predefined functions which can be used for those ways: `w3m-pattern-uri-replace' Replace a URI using PATTERN (which is just an OPTION). It is allowed that PATTERN contains the \"\\N\" forms in the same manner of `replace-match'. `w3m-search-uri-replace' Generate the valid forms to query words to some specified search engines. For example, the element (\"\\\\`gg:\" w3m-search-uri-replace \"google\") makes it possible to replace the URI \"gg:emacs\" to the form to query the word \"emacs\" to the Google site.\ " :group 'w3m :type '(repeat :convert-widget w3m-widget-type-convert-widget `((choice :format "%[Value Menu%] %v" :tag "Replacing URI with" (list :indent 4 :tag "Replacement Using Pattern" (regexp :format "%t: %v\n") (function-item :format "" w3m-pattern-uri-replace) (string :format "Pattern: %v\n")) (list :format "%t:\n%v" :indent 4 :tag "Quick Search" (regexp :format "Prefix URI %t: %v\n" :value "") (function-item :format "" w3m-search-uri-replace) (string :format "Quick Search Engine: %v\n" :value "")) ,@(progn (require 'w3m-search) (mapcar (lambda (elem) (let* ((engine (car elem)) (prefix (mapconcat 'identity (split-string (downcase engine)) "-"))) `(list :format "Quick Search:\n%v" :indent 4 :tag ,(concat "Quick Search: " prefix) (regexp :tag "Prefix URL Regexp" ,(concat "\\`" (regexp-quote prefix) ":")) (function-item :format "" w3m-search-uri-replace) (string :tag "Quick Search Engine" ,engine)))) w3m-search-engine-alist)) (list :indent 4 :tag "User Defined Function" (regexp :format "%t: %v\n") (function :format "%t: %v\n" ;; Fix a bug in Emacs versions prior to 22. :value-to-internal (lambda (widget value) (if (stringp value) (if (string-match "\\`\".*\"\\'" value) (substring value 1 -1) value) (prin1-to-string value)))) (repeat :extra-offset 2 :tag "Options" (sexp :format "%t: %v\n"))))))) (defcustom w3m-relationship-estimate-rules `((w3m-relationship-simple-estimate "\\`https?://\\(?:www\\|blogsearch\\|groups\\|news\\|images\\)\ \\.google\\.[^/]+/\\(?:\\(?:blog\\|code\\)?search\\|groups\\|news\\|images\ \\|cse\\?cx=\\|custom\\?\\(?:q\\|hl\\)=\\)" ,(concat "]+?href=" w3m-html-string-regexp "[^>]*>[\t\n ]*" "\\(?:\\(?:]*>[\t\n ]*\\)*]+>Next" "\\|\\(?:]*>[\t\n ]*\\)*\\(?:\\)?" "\\(?:$B2<0lJG(B\\|下一頁" "\\|$B]+?href=" w3m-html-string-regexp "[^>]*>[\t\n ]*" "\\(?:\\(?:]*>[\t\n ]*\\)*]+>Previous" "\\|\\(?:]*>[\t\n ]*\\)*\\(?:\\)?" "\\(?:$B>e0lJG(B\\|上一頁" "\\|$BA0$X(B\\|前へ" "\\|$(C@L@|(B\\|이전\\)[\t\n ]*<\\)") nil nil) (w3m-relationship-simple-estimate "\\`https?://www\\.google\\.[^/]+/gwt/n\\?u=" ,(concat "]+?href=" w3m-html-string-regexp "[ \t\n]+accesskey=\"3\">") ,(concat "]+?href=" w3m-html-string-regexp "[ \t\n]+accesskey=\"1\">") nil nil) (w3m-relationship-simple-estimate "\\`http://beta\\.search\\.yahoo\\.co\\.jp/" ,(concat "$B") ,(concat "$BA0$N%Z!<%8(B") nil nil) (w3m-relationship-oddmuse-estimate) (w3m-relationship-magicpoint-estimate) (w3m-relationship-slashdot-estimate) (w3m-relationship-alc-estimate)) "Rules to estimate relationships between a retrieved page and others. This variable supports the emacs-w3m ability to navigate structured websites, using shortcut keys, to a current page's parent page (`w3m-view-parent-page'), or next / previous pages (`w3m-scroll-up-or-next-url', `w3m-scroll-down-or-previous-url'). The variable is a list of RULES. Each RULE is sequence in the form FUNCTION URL NEXT PREV START CONTENTS. FUNCTION is the method to to be used to evaluate the other fields. A FUNCTION should set variables `w3m-start-url', `w3m-next-url', `w3m-previous-url', `w3m-contents-url'. Emacs-w3m provides functions `w3m-relationship-simple-estimate', `w3m-relationship-magicpoint-estimate', `w3m-relationship-oddmuse-estimate', `w3m-relationship-slashdot-estimate', `w3m-relationship-alc-estimate', but of course you can add your own. URL is a regex defining the urls for which to use this rule. NEXT, PREV, START and CONTENTS are regexs of html source code from which to extract the values of variables `w3m-next-url', `w3m-previous-url', `w3m-start-url', `w3m-contents-url' respectively. The url to store should be defined as a regex collection group." :group 'w3m :type '(repeat (choice :format "%[Value Menu%] %v" (list :tag "Estimate relationships from anchors matching" :indent 1 (const :format "Function: %v\n" w3m-relationship-simple-estimate) (regexp :tag "URL") (regexp :tag "Next") (regexp :tag "Prev") (radio :format "Start: %v" (const :format "%v " nil) regexp) (radio :format "Contents: %v" (const :format "%v " nil) regexp)) (list :tag "Estimate with a user defined function" :indent 1 function (repeat :tag "Args" :extra-offset 1 (sexp :format "%v")))))) (defcustom w3m-enable-feeling-searchy t "Non-nil enables you to enter any words as well as a url when prompted. In that case, emacs-w3m uses the default search engine to search for the words." :group 'w3m :type 'boolean) (defconst w3m-entity-table (let ((table (make-hash-table :test 'equal))) (dolist (entity '(("nbsp" . " ") ("gt" . ">") ("lt" . "<") ("amp" . "&") ("quot" . "\"") ("apos" . "'") ("circ" . "^") ("tilde" . "~"))) (puthash (car entity) (cdr entity) table)) (dolist (entity '(;("nbsp" . 160) ("iexcl" . 161) ("cent" . 162) ("pound" . 163) ("curren" . 164) ("yen" . 165) ("brvbar" . 166) ("sect" . 167) ("uml" . 168) ("copy" . 169) ("ordf" . 170) ("laquo" . 171) ("not" . 172) ("shy" . 173) ("reg" . 174) ("macr" . 175) ("deg" . 176) ("plusmn" . 177) ("sup2" . 178) ("sup3" . 179) ("acute" . 180) ("micro" . 181) ("para" . 182) ("middot" . 183) ("cedil" . 184) ("sup1" . 185) ("ordm" . 186) ("raquo" . 187) ("frac14" . 188) ("frac12" . 189) ("frac34" . 190) ("iquest" . 191) ("Agrave" . 192) ("Aacute" . 193) ("Acirc" . 194) ("Atilde" . 195) ("Auml" . 196) ("Aring" . 197) ("AElig" . 198) ("Ccedil" . 199) ("Egrave" . 200) ("Eacute" . 201) ("Ecirc" . 202) ("Euml" . 203) ("Igrave" . 204) ("Iacute" . 205) ("Icirc" . 206) ("Iuml" . 207) ("ETH" . 208) ("Ntilde" . 209) ("Ograve" . 210) ("Oacute" . 211) ("Ocirc" . 212) ("Otilde" . 213) ("Ouml" . 214) ("times" . 215) ("Oslash" . 216) ("Ugrave" . 217) ("Uacute" . 218) ("Ucirc" . 219) ("Uuml" . 220) ("Yacute" . 221) ("THORN" . 222) ("szlig" . 223) ("agrave" . 224) ("aacute" . 225) ("acirc" . 226) ("atilde" . 227) ("auml" . 228) ("aring" . 229) ("aelig" . 230) ("ccedil" . 231) ("egrave" . 232) ("eacute" . 233) ("ecirc" . 234) ("euml" . 235) ("igrave" . 236) ("iacute" . 237) ("icirc" . 238) ("iuml" . 239) ("eth" . 240) ("ntilde" . 241) ("ograve" . 242) ("oacute" . 243) ("ocirc" . 244) ("otilde" . 245) ("ouml" . 246) ("divide" . 247) ("oslash" . 248) ("ugrave" . 249) ("uacute" . 250) ("ucirc" . 251) ("uuml" . 252) ("yacute" . 253) ("thorn" . 254) ("yuml" . 255))) (puthash (car entity) (char-to-string (make-char 'latin-iso8859-1 (cdr entity))) table)) (dolist (entity '(("Alpha" . 65) ("Beta" . 66) ("Gamma" . 67) ("Delta" . 68) ("Epsilon" . 69) ("Zeta" . 70) ("Eta" . 71) ("Theta" . 72) ("Iota" . 73) ("Kappa" . 74) ("Lambda" . 75) ("Mu" . 76) ("Nu" . 77) ("Xi" . 78) ("Omicron" . 79) ("Pi" . 80) ("Rho" . 81) ; No ("Sigmaf" . 82) ("Sigma" . 83) ("Tau" . 84) ("Upsilon" . 85) ("Phi" . 86) ("Chi" . 87) ("Psi" . 88) ("Omega" . 89) ("alpha" . 97) ("beta" . 98) ("gamma" . 99) ("delta" . 100) ("epsilon" . 101) ("zeta" . 102) ("eta" . 103) ("theta" . 104) ("iota" . 105) ("kappa" . 106) ("lambda" . 107) ("mu" . 108) ("nu" . 109) ("xi" . 110) ("omicron" . 111) ("pi" . 112) ("rho" . 113) ("sigmaf" . 114) ("sigma" . 115) ("tau" . 116) ("upsilon" . 117) ("phi" . 118) ("chi" . 119) ("psi" . 120) ("omega" . 121))) (puthash (car entity) (char-to-string (make-char 'greek-iso8859-7 (cdr entity))) table)) (when (w3m-mule-unicode-p) (let ((latin-extended-a '((32 . (("OElig" . 114) ("oelig" . 115))) (33 . (("Scaron" . 32) ("scaron" . 33) ("Yuml" . 56))))) (latin-extended-b '((33 . (("fnof" . 82))))) ;;(spacing-modifier-letters '(36 . (("circ" . 120) ("tilde" . 124)))) (general-punctuation '((114 . (("ensp" . 98) ("emsp" . 99) ("thinsp" . 105) ("zwnj" . 108) ("zwj" . 109) ("lrm" . 110) ("rlm" . 111) ("ndash" . 115) ("mdash" . 116) ("lsquo" . 120) ("rsquo" . 121) ("sbquo" . 122) ("ldquo" . 124) ("rdquo" . 125) ("bdquo" . 126))) (115 . (("dagger" . 32) ("Dagger" . 33) ("permil" . 48) ("lsaquo" . 57) ("rsaquo" . 58) ("bull" . 34) ("hellip" . 38) ("prime" . 50) ("Prime" . 51) ("oline" . 62) ("frasl" . 68))) (116 . (("euro" . 76))))) (greek '((39 . (("thetasym" . 81) ("upsih" . 82) ("piv" . 86))))) (letterlike-symbols '((117 . (("weierp" . 88) ("image" . 81) ("real" . 92) ("trade" . 98) ("alefsym" . 117))))) (arrows '((118 . (("larr" . 112) ("uarr" . 113) ("rarr" . 114) ("darr" . 115) ("harr" . 116))) (119 . (("crarr" . 53) ("lArr" . 80) ("uArr" . 81) ("rArr" . 81) ("dArr" . 83) ("hArr" . 84))))) (mathematical-operators '((120 . (("forall" . 32) ("part" . 34) ("exist" . 35) ("empty" . 37) ("nabla" . 39) ("isin" . 40) ("notin" . 41) ("ni" . 43) ("prod" . 47) ("sum" . 49) ("minus" . 50) ("lowast" . 55) ("radic" . 58) ("prop" . 61) ("infin" . 62) ("ang" . 64) ("and" . 71) ("or" . 72) ("cap" . 73) ("cup" . 74) ("int" . 75) ("there4" . 84) ("sim" . 92) ("cong" . 101) ("asymp" . 104))) (121 . (("ne" . 32) ("equiv" . 33) ("le" . 36) ("ge" . 37) ("sub" . 66) ("sup" . 67) ("nsub" . 68) ("sube" . 70) ("supe" . 71) ("oplus" . 85) ("otimes" . 87) ("perp" . 101))) (122 . (("sdot" . 37))))) (miscellaneous-technical '((122 . (("lceil" . 104) ("rceil" . 105) ("lfloor" . 106) ("rfloor" . 107))) (123 . (("lang" . 41) ("rang" . 42))))) (suit '(("loz" . (34 . 42)) ("spades" . (35 . 96)) ("clubs" . (35 . 99)) ("hearts" . (35 . 101)) ("diams" . (35 . 102))))) (dolist (entities `(,@latin-extended-a ,@latin-extended-b ,@general-punctuation ,@greek ,@letterlike-symbols ,@arrows ,@mathematical-operators ,@miscellaneous-technical)) (let ((code1 (car entities))) (dolist (entity (cdr entities)) (puthash (car entity) (char-to-string (make-char 'mule-unicode-0100-24ff code1 (cdr entity))) table)))) (dolist (entity suit) (puthash (car entity) (char-to-string (make-char 'mule-unicode-2500-33ff (car (cdr entity)) (cdr (cdr entity)))) table)))) table) "Table of html character entities and values.") (defvar w3m-extra-numeric-character-reference (mapcar (lambda (item) (cons (car item) (string (w3m-ucs-to-char (cdr item))))) '((?\C-m . #x20) ;; [emacs-w3m:12378] (#x80 . #x20AC) (#x82 . #x201A) (#x83 . #x0192) (#x84 . #x201E) (#x85 . #x2026) (#x86 . #x2020) (#x87 . #x2021) (#x88 . #x02C6) (#x89 . #x2030) (#x8A . #x0160) (#x8B . #x2039) (#x8C . #x0152) (#x8E . #x017D) (#x91 . #x2018) (#x92 . #x2019) (#x93 . #x201C) (#x94 . #x201D) (#x95 . #x2022) (#x96 . #x2013) (#x97 . #x2014) (#x98 . #x02DC) (#x99 . #x2122) (#x9A . #x0161) (#x9B . #x203A) (#x9C . #x0153) (#x9E . #x017E) (#x9F . #x0178))) "*Alist of (numeric . string) pairs for numeric character reference other than ISO 10646.") (defconst w3m-entity-reverse-table (let ((table (make-hash-table :test 'equal))) (maphash (lambda (key val) (puthash val key table)) w3m-entity-table) table) "Revision table of html character entities and values.") (defconst w3m-entity-regexp (let (buf) (maphash (lambda (key val) (push key buf)) w3m-entity-table) (concat "&\\(" (let ((max-specpdl-size (* 1024 1024))) ;; For old Emacsen. (regexp-opt buf)) "\\|#\\(?:[xX][0-9a-fA-F]+\\|[0-9]+\\)\\)\\(\\'\\|[^0-9a-zA-Z]\\)")) "Regexp matching html character entities.") (defconst w3m-encoding-alist (eval-when-compile (apply 'nconc (mapcar (lambda (elem) (mapcar (lambda (x) (cons x (car elem))) (cdr elem))) '((gzip . ("gzip" "x-gzip" "compress" "x-compress")) (bzip . ("x-bzip" "bzip" "bzip2")) (deflate . ("x-deflate" "deflate")))))) "Alist of content encoding types and decoder symbols. Decoders are specified by `w3m-decoder-alist' (which see).") (defconst w3m-emacs-w3m-icon "\ R0lGODlhUwAOAPIAAFUq/H8AvwC/AP8AAAAAv79/Af///wAAACH/C05FVFNDQVBFMi4wAwEA AAAh+QQAIQD/ACwAAAAAUwAOAAADxmi63P4wykmrvXiWvbP/4NIpY2ieUFlSQRssrRG7DGET DQEAzL5PAoEiSCo0RoOBIblkKmKyV/RFsymsBqzh99vyvBKiYbQaG5vKZFoZfUqhUO0C2613 gUJzsVhy+tkuNG2DWjd0Xw0+iEGMYgJGHWVjbH8KTlAMcThZm1iHEYwakKMOlU2WgFKZUp6d m3YKdwtiEmRnfZS5qG5Ub6yuVzg+C1xfAES0EbZ7u6fOTlOqrcFzxcSyjRXLqGoLptAo4eLj 5OUNCQAh+QQAIQD/ACwAAAAAUwAOAAADImi63P4wykmrvTjrzbv/YCiOZGmeaKqubOu+cCzP dG3fagIAIfkEACEA/wAsAAAAAFMADgAAAz5outz+MMpJq7046827/2AYBWSwkAZaimyFpiZs rm0tvXj82rxT0rmekLE7xYZIRVF5TA5XQWfyJ61ar9hsAgAh+QQAIQD/ACwAAAAAUwAOAAAD Vmi63P4wykmrvTjrzbv/YBgFZLCQBloyREs0rxiiqVmba6voBi//tKCN5lsUf7OSUEGM9VxO ZNLR3MV4R6mHxqg+rVrpavktZ8MgpfHKNqLf8Lh8XkkAACH5BAAhAP8ALAAAAABTAA4AAANw aLrc/jDKSau9OOvNu/9gGAVksJAGWjJESzQEADCyLGJoaurm2io/Q9BgsxFnx5slx9zlhoug cWpULktNxfMFdHGrtJq1kmNsu2jhFznulE+7oHytoLY1q6w6/RPXZ1N3F1hRXHNRRWx+goyN jo+QCQAh+QQAIQD/ACwAAAAAUwAOAAADhWi63P4wykmrvTjrzbv/YBgFZLCQBloyREs0BAAw sjwJgoKHaGr6plVLMTQUDTYbcraU7ESKnvTXOy6KyqzyloMCV77o7+jCMhu1M2797EJ7jOrL OC+aI2tvBX4a1/8KWoFnC096EitTRIB0S2dJTAA7hocjYI2YZJALNQxslaChoqOkDgkAIfkE ACEA/wAsAAAAAFMADgAAA6doutz+MMpJq714lr2z/+DSKWNonlBZUkEbLK0RuwxhEw0BAMy+ TwKBIkgqNFaSmOy1fNFsCqhBavj9qjyshGgYIZERpZippC6k1/QVKOwa3UVw2DVWlHHRG37d 8y2CgFwCRh1gbxVKDHd5jFN7WQ+AGoSUJokwTFKajwpqDlwSXm9yLDNkmXibWJBWWQBEoBGi RSB0Z6m4Z60Lfn+SFLMowsPExcbFCQAh+QQAIQD/ACwAAAAAUwAOAAADxmi63P4wykmrvXiW vbP/4NIpY2ieUFlSQRssrRG7DGETDQEAzL5PAoEiSCo0RoOBIblkKmKyV/RFsymsBqzh99vy vBKiYbQaG5vKZFoZfUqhUO0C2613gUJzsVhy+tkuNG2DWjd0Xw0+iEGMYgJGHWVjbH8KTlAM cThZm1iHEYwakKMOlU2WgFKZUp6dm3YKdwtiEmRnfZS5qG5Ub6yuVzg+C1xfAES0EbZ7u6fO TlOqrcFzxcSyjRXLqGoLptAo4eLj5OUNCQA7" "A small image to be displayed in the about: page. It is encoded in the optimized interlaced endlessly animated gif format and base64. Emacs can display only the 1st frame of an animation, but XEmacs can fully display it with the help of the gifsicle program.") (defcustom w3m-process-modeline-format " loaded: %s" "*Format used when displaying the progress of the external w3m process. It shows a percentage of the data loaded from the web server." :group 'w3m :type '(choice (string :tag "Format") function)) (defcustom w3m-ignored-image-url-regexp nil "*Regexp matching image urls which you don't want to view. It is effective even if `w3m-display-inline-images' is non-nil. For instance, the value \"^https?://www\\.google\\.com/\" conceals Google's logo and navigation images, but display YouTube's thumbnail." :group 'w3m :type '(radio (const :format "Accept any image\n" nil) (regexp :format "URL regexp: %v\n"))) (defvar w3m-modeline-process-status-on "" "Modeline control for displaying the status when the process is running. The value will be modified for displaying the graphic icon.") (defvar w3m-modeline-image-status-on "[IMG]" "Modeline control to display the status when inline images are turned on. The value will be modified for displaying the graphic icon.") (defvar w3m-modeline-status-off "[ - ]" "Modeline control for displaying the status for the default. The value will be modified for displaying the graphic icon.") (defvar w3m-modeline-ssl-image-status-on "[IMG(SSL)]" "Modeline control for displaying the status when images and SSL are on. The value will be modified for displaying the graphic icon.") (defvar w3m-modeline-ssl-status-off "[SSL]" "Modeline control for displaying the status when SSL is turned on. The value will be modified for displaying the graphic icon.") (defvar w3m-modeline-separator " / " "String used to separate a status and a title in the modeline.") (defvar w3m-modeline-favicon nil "Modeline control for displaying a favicon. This variable will be made buffer-local.") (defvar w3m-favicon-image nil "Favicon image of the page. This variable will be made buffer-local") (defvar w3m-current-process nil "Flag used to say whether the external process is running in the buffer. This variable will be made buffer-local.") (make-variable-buffer-local 'w3m-current-process) (defvar w3m-refresh-timer nil "Variable used to keep a timer object for refreshing a page. It will be supplied by the REFRESH attribute in the META tag, and made buffer-local in each emacs-w3m buffer.") (make-variable-buffer-local 'w3m-refresh-timer) (defvar w3m-mail-user-agents '(gnus-user-agent message-user-agent mew-user-agent vm-user-agent wl-user-agent) "List of mail user agents that `w3m-mail' supports. See also w3m-mail.el.") (defvar w3m-current-base-url nil "URL specified by tag in element of the page source.") (defvar w3m-current-forms nil "Variable used to keep forms data for the current emacs-w3m buffer.") (defvar w3m-current-coding-system nil "Coding system used when decoding the current emacs-w3m buffer.") (defvar w3m-current-content-charset nil "Content charset of the page specified by the server or the META tag.") (defvar w3m-icon-data nil "Cons of icon data and its image-type for the current emacs-w3m buffer. It is used for favicon data. The type is often `ico'.") (defvar w3m-next-url nil "URL as the next document in the author-defined sequence.") (defvar w3m-previous-url nil "URL as the previous document in the author-defined sequence.") (defvar w3m-start-url nil "URL as the first document in the author-defined sequence.") (defvar w3m-contents-url nil "URL as the table of contents for the current page.") (defvar w3m-max-anchor-sequence nil "Maximum number of the anchor sequence in the current page.") (defvar w3m-current-refresh nil "Cons of number of seconds and a url specified by the REFRESH attribute.") (defvar w3m-current-ssl nil "SSL certification indicator for the current emacs-w3m buffer.") (defvar w3m-name-anchor-from-hist nil "List of the points of where `w3m-search-name-anchor' come from.") (make-variable-buffer-local 'w3m-current-url) (make-variable-buffer-local 'w3m-current-base-url) (make-variable-buffer-local 'w3m-current-title) (make-variable-buffer-local 'w3m-current-forms) (make-variable-buffer-local 'w3m-current-coding-system) (make-variable-buffer-local 'w3m-current-content-charset) (make-variable-buffer-local 'w3m-icon-data) (make-variable-buffer-local 'w3m-next-url) (make-variable-buffer-local 'w3m-previous-url) (make-variable-buffer-local 'w3m-start-url) (make-variable-buffer-local 'w3m-contents-url) (make-variable-buffer-local 'w3m-max-anchor-sequence) (make-variable-buffer-local 'w3m-current-refresh) (make-variable-buffer-local 'w3m-current-ssl) (make-variable-buffer-local 'w3m-name-anchor-from-hist) (defun w3m-clear-local-variables () (setq w3m-current-url nil w3m-current-base-url nil w3m-current-title nil w3m-current-coding-system nil w3m-current-content-charset nil w3m-icon-data nil w3m-next-url nil w3m-previous-url nil w3m-start-url nil w3m-contents-url nil w3m-max-anchor-sequence nil w3m-current-refresh nil w3m-current-ssl nil w3m-name-anchor-from-hist nil)) (defun w3m-copy-local-variables (from-buffer) (let (url base title cs char icon next prev start toc hseq refresh ssl) (with-current-buffer from-buffer (setq url w3m-current-url base w3m-current-base-url title w3m-current-title cs w3m-current-coding-system char w3m-current-content-charset icon w3m-icon-data next w3m-next-url prev w3m-previous-url start w3m-start-url toc w3m-contents-url hseq w3m-max-anchor-sequence refresh w3m-current-refresh ssl w3m-current-ssl)) (setq w3m-current-url url w3m-current-base-url base w3m-current-title title w3m-current-coding-system cs w3m-current-content-charset char w3m-icon-data icon w3m-next-url next w3m-previous-url prev w3m-start-url start w3m-contents-url toc w3m-max-anchor-sequence hseq w3m-current-refresh refresh w3m-current-ssl ssl))) (defcustom w3m-verbose nil "If non-nil, `w3m-message' will log echo messages in *Messages* buffer. Echo messages will be displayed no matter what this variable is unless `w3m-message-silent' is not temprarily bound to a non-nil value." :group 'w3m :type 'boolean) (defvar w3m-safe-url-regexp nil "Regexp matching urls which are considered to be safe. The nil value means all urls are considered to be safe. Note: The value, that might be bound to a certain value while rendering contents, will be held by the `w3m-safe-url-regexp' text property that is set over the rendered contents in a buffer. So, programs that use the value to test whether a url of a link in a buffer is safe should use the value of the text property, not the value of this variable. See the function definitions of `w3m-toggle-inline-image', `w3m-toggle-inline-images', `w3m-safe-view-this-url', and `w3m-mouse-safe-view-this-url'.") (defvar w3m-current-buffer nil) (defvar w3m-cache-buffer nil) (defvar w3m-cache-articles nil) (defvar w3m-cache-hashtb nil) (defvar w3m-input-url-history nil) (defvar w3m-http-status-alist '((400 . "Bad Request") (401 . "Unauthorized") (402 . "Payment Required") (403 . "Forbidden") (404 . "Not Found") (405 . "Method Not Allowed") (406 . "Not Acceptable") (407 . "Proxy Authentication Required") (408 . "Request Time-out") (409 . "Conflict") (410 . "Gone") (411 . "Length Required") (412 . "Precondition Failed") (413 . "Request Entity Too Large") (414 . "Request-URI Too Large") (415 . "Unsupported Media Type") (500 . "Internal Server Error") (501 . "Not Implemented") (502 . "Bad Gateway") (503 . "Service Unavailable") (504 . "Gateway Time-out") (505 . "HTTP Version not supported")) "Alist of HTTP status codes.") (defvar w3m-http-status nil) (defconst w3m-arrived-db-size 1023) (defvar w3m-arrived-db nil "Hash table, the arrived URLs database. The name of each symbol represents a url, the arrival time in the Emacs style (a list of three integers) is stored as the value, and informations including a title, a modification time, a content charset and a content type are stored as the properties of the symbol. The nil value means it has not been initialized.") (defvar w3m-arrived-setup-functions nil "Hook functions run after setting up the arrived URLs database.") (defvar w3m-arrived-shutdown-functions nil "Hook functions run after saving the arrived URLs database.") (defconst w3m-image-type-alist '(("image/jpeg" . jpeg) ("image/gif" . gif) ("image/png" . png) ("image/tiff" . tiff) ("image/x-xbm" . xbm) ("image/x-xpm" . xpm)) "Alist of content types and image types defined as the Emacs's features.") (defconst w3m-toolbar-buttons '("back" "parent" "forward" "reload" "open" "home" "search" "image" "copy" "weather" "antenna" "save" "history" "db-history") "List of prefix strings for the toolbar buttons.") (defconst w3m-toolbar (if (equal "Japanese" w3m-language) (let ((a (decode-coding-string "\e$B%\"\e(B" 'iso-2022-jp))) ;; $B%"(B `([w3m-toolbar-back-icon w3m-view-previous-page (w3m-history-previous-link-available-p) "$BA0$N%Z!<%8$KLa$k(B"] [w3m-toolbar-parent-icon w3m-view-parent-page (w3m-parent-page-available-p) "$B>e$N%G%#%l%/%H%j$X0\F0$9$k(B"] [w3m-toolbar-forward-icon w3m-view-next-page (w3m-history-next-link-available-p) "$Be$r8!:w(B"] [w3m-toolbar-image-icon w3m-toggle-inline-images t "$B2hA|$NI=<($r%H%0%k$9$k(B"] [w3m-toolbar-copy-icon w3m-copy-buffer t "$B$3$N%;%C%7%g%s$N%3%T!<$r:n$k(B"] [w3m-toolbar-weather-icon w3m-weather t "$BE75$M=Js$r8+$k(B"] [w3m-toolbar-antenna-icon w3m-antenna t ,(concat a "$B%s%F%J$Ge$N3,AX$K0\F0$9$k(B" "Up to Parent Page") w3m-view-parent-page (w3m-parent-page-available-p)] "----" ;; separator [,(w3m-make-menu-item "$B8=:_$N%Z!<%8$r(B browse-url $B$G3+$/(B" "Open The Current Page using browse-url") w3m-view-url-with-browse-url w3m-current-url] [,(w3m-make-menu-item "$B$3$N%j%s%/$r(B browse-url $B$G3+$/(B" "Open This Link using browse-url") w3m-view-url-with-browse-url (or (w3m-anchor) (w3m-image))] [,(w3m-make-menu-item "$B$3$N%Z!<%8$N%=!<%9$r%3%^%s%I$KAw$k(B..." "Pipe Page Source to Command...") w3m-pipe-source w3m-current-url] "----" ;; separator (,(w3m-make-menu-item "$B:FI=<((B" "Redisplay") [,(w3m-make-menu-item "$B$3$N%Z!<%8$r:Fe$N3,AX$K0\F0$9$k(B" "Up to Parent Page") w3m-view-parent-page (w3m-parent-page-available-p)] "----" ;; separator [,(w3m-make-menu-item "$B$3$N%Z!<%8$r:F= (- n) (length list)) (copy-sequence list) (nthcdr (+ (length list) n) (copy-sequence list))) ;; N is positive, extract the first items (if (>= n (length list)) (copy-sequence list) (nreverse (nthcdr (- (length list) n) (reverse list))))) (copy-sequence list))) (defun w3m-load-list (file &optional coding-system) "Read an emacs-w3m data file FILE and return contents as a list. It is used for loading `w3m-arrived-file', `w3m-cookie-file', `w3m-favicon-cache-file' and `w3m-antenna-file' (which see). CODING-SYSTEM is used to read FILE which defaults to the value of `w3m-file-coding-system-for-read'." (when (and (file-readable-p file) ;; XEmacs 21.4 might crash when inserting a directory. (not (file-directory-p file))) (with-temp-buffer (when (condition-case nil (let ((coding-system-for-read (or coding-system w3m-file-coding-system-for-read))) (insert-file-contents file)) (error (message "Error while loading %s" file) nil)) ;; point is not always moved to the beginning of the buffer ;; after `insert-file-contents' is done. (goto-char (point-min)) (condition-case err (read (current-buffer)) (error (message "Error while reading %s; %s" file (error-message-string err)) nil)))))) (defun w3m-save-list (file list &optional coding-system escape-ctl-chars) "Save a LIST form into the emacs-w3m data file FILE. Contents will be encoded with CODING-SYSTEM which defaults to the value of `w3m-file-coding-system'. Optional ESCAPE-CTL-CHARS if it is non-nil, control chars will be represented with ^ as `cat -v' does." (when (and list (file-writable-p file)) (with-temp-buffer (let ((coding-system-for-write (or coding-system w3m-file-coding-system)) (standard-output (current-buffer)) (print-fn (if escape-ctl-chars 'w3m-prin1 'prin1)) element print-length print-level) (insert (format "\ ;;; %s -*- mode: emacs-lisp%s -*- ;; This file is generated automatically by emacs-w3m v%s. " (file-name-nondirectory file) (if coding-system-for-write (format "; coding: %s" coding-system-for-write) "") emacs-w3m-version)) (insert "(") (while list (setq element (car list) list (cdr list)) (if (consp element) (progn (insert "(") (funcall print-fn (car element)) (insert "\n") (while (setq element (cdr element)) (insert " ") (funcall print-fn (car element)) (insert "\n")) (backward-delete-char 1) (insert ")\n ")) (funcall print-fn element) (insert "\n"))) (skip-chars-backward "\n ") (delete-region (point) (point-max)) (insert ")\n") (let ((mode (and (file-exists-p file) (file-modes file)))) (write-region (point-min) (point-max) file nil 'nomsg) (when mode (set-file-modes file mode))))))) (defun w3m-url-coding-system (url) "Return coding system suitable to URL to retrieve." (let ((alist w3m-url-coding-system-alist) (case-fold-search t) elt coding) (while alist (setq elt (pop alist)) (if (or (not (car elt)) (and (stringp (car elt)) (string-match (car elt) url))) (setq coding (cdr elt) alist nil))) (when (functionp coding) (setq coding (funcall coding url))) (or coding w3m-current-coding-system (cdr (assq nil w3m-url-coding-system-alist)) w3m-default-coding-system))) (defun w3m-url-encode-string (str &optional coding encode-space) (apply (function concat) (mapcar (lambda (ch) (cond ((eq ch ?\n) ; newline "%0D%0A") ((string-match "[-a-zA-Z0-9_.]" (char-to-string ch)) ; xxx? (char-to-string ch)) ; printable ((and (char-equal ch ?\x20); space encode-space) "+") (t (format "%%%02X" ch)))) ; escape (encode-coding-string (or str "") (or coding (w3m-url-coding-system str)))))) (defun w3m-url-encode-string-2 (str) "Encode `(' and `)', apt to be misidentified as boundaries." (w3m-replace-in-string (w3m-replace-in-string str "(" "%28") ")" "%29")) (defun w3m-url-decode-string (str &optional coding regexp) (or regexp (setq regexp "%\\(?:\\([0-9a-f][0-9a-f]\\)\\|0d%0a\\)")) (let ((start 0) (case-fold-search t)) (with-temp-buffer (set-buffer-multibyte nil) (while (string-match regexp str start) (insert (substring str start (match-beginning 0)) (if (match-beginning 1) (string-to-number (match-string 1 str) 16) ?\n)) (setq start (match-end 0))) (insert (substring str start)) (decode-coding-string (buffer-string) (or (if (listp coding) (w3m-detect-coding-region (point-min) (point-max) coding) coding) w3m-default-coding-system w3m-coding-system 'iso-2022-7bit))))) (defun w3m-url-readable-string (url) "Return a readable string for a given encoded URL." (when (stringp url) (setq url (w3m-puny-decode-url url)) (if (string-match "[^\000-\177]" url) url (w3m-url-decode-string url (w3m-url-coding-system url))))) (defun w3m-url-transfer-encode-string (url &optional coding) "Encode non-ascii characters in URL into the sequence of escaped octets. Optional CODING is a coding system, that defaults to the one determined according to URL and `w3m-url-coding-system-alist', used to encode URL. This function is designed for conversion for safe transmission of URL, i.e., it handles only non-ASCII characters that can not be transmitted safely through the network. For the other general purpose, you should use `w3m-url-encode-string' instead." (setq url (w3m-puny-encode-url url)) (unless coding (setq coding (w3m-url-coding-system url))) (let ((start 0) buf) (while (string-match "[^\x21-\x7e]+" url start) (setq buf (cons (apply 'concat (mapcar (lambda (c) (format "%%%02X" c)) (encode-coding-string (match-string 0 url) coding))) (cons (substring url start (match-beginning 0)) buf)) start (match-end 0))) (apply 'concat (nreverse (cons (substring url start) buf))))) ;;; HTML character entity handling: (defun w3m-entity-value (name) "Get a char corresponding to NAME from the html char entities database. The database is kept in `w3m-entity-table'." ;; Return a value of the specified entity, or nil if it is unknown. (or (gethash name w3m-entity-table) (and (eq (aref name 0) ?#) (let ((num (if (memq (aref name 1) '(?X ?x)) (string-to-number (substring name 2) 16) (string-to-number (substring name 1))))) (or (cdr (assq num w3m-extra-numeric-character-reference)) (string (w3m-ucs-to-char num))))))) (defun w3m-fontify-bold () "Fontify bold text in the buffer containing halfdump." (goto-char (point-min)) (while (search-forward "" nil t) (let ((start (match-beginning 0))) (delete-region start (match-end 0)) (when (re-search-forward "" nil t) (delete-region (match-beginning 0) (match-end 0)) (w3m-add-face-property start (match-beginning 0) 'w3m-bold))))) (defun w3m-fontify-italic () "Fontify italic text in the buffer containing halfdump." (goto-char (point-min)) (while (search-forward "" nil t) (let ((start (match-beginning 0))) (delete-region start (match-end 0)) (when (re-search-forward "" nil t) (delete-region (match-beginning 0) (match-end 0)) (w3m-add-face-property start (match-beginning 0) 'w3m-italic))))) (defun w3m-fontify-underline () "Fontify underline text in the buffer containing halfdump." (goto-char (point-min)) (while (search-forward "" nil t) (let ((start (match-beginning 0))) (delete-region start (match-end 0)) (when (re-search-forward "" nil t) (delete-region (match-beginning 0) (match-end 0)) (w3m-add-face-property start (match-beginning 0) 'w3m-underline))))) (defun w3m-fontify-strike-through () "Fontify strike-through text in the buffer containing halfdump." (goto-char (point-min)) (cond ((and (eq w3m-display-ins-del 'fontify) (w3m-device-on-window-system-p)) (while (search-forward "" nil t) (let ((start (match-beginning 0))) (delete-region start (match-end 0)) (when (re-search-forward "" nil t) (delete-region (match-beginning 0) (match-end 0)) (w3m-add-face-property start (match-beginning 0) 'w3m-strike-through))))) ((w3m-device-on-window-system-p) (while (re-search-forward (concat "\\(?:\\(?::\\(?:\\(?:DEL\\|S\\)]\\)\\|" "\\[\\(?:\\(?:DEL\\|S\\):\\)\\)\\)") nil t) (w3m-add-face-property (match-beginning 0) (match-end 0) 'w3m-strike-through))))) (defun w3m-fontify-insert () "Fontify insert text in the buffer containing halfdump." (goto-char (point-min)) (cond ((and (eq w3m-display-ins-del 'fontify) (w3m-device-on-window-system-p)) (while (search-forward "" nil t) (let ((start (match-beginning 0))) (delete-region start (match-end 0)) (when (re-search-forward "" nil t) (delete-region (match-beginning 0) (match-end 0)) (w3m-add-face-property start (match-beginning 0) 'w3m-insert))))) ((w3m-device-on-window-system-p) (while (re-search-forward "\\(?:\\(?::INS]\\|\\[INS:\\)\\)" nil t) (w3m-add-face-property (match-beginning 0) (match-end 0) 'w3m-insert))))) (defun w3m-decode-anchor-string (str) ;; FIXME: This is a quite ad-hoc function to process encoded url string. ;; More discussion about timing &-sequence decode is required. The ;; following article (written in Japanese) is the origin of this issue: ;; ;; [emacs-w3m:00150] ;; ;; Takaaki MORIYAMA wrote in the article that the string "&" which ;; is replaced from "&" and embedded in the w3m's halfdump should be ;; restored into "&" some time. (let ((start 0) (buf)) (while (string-match "\\(&\\)\\|\\([\t\r\f\n]+\\)" str start) (setq buf (cons (if (match-beginning 1) "&" " ") (cons (substring str start (match-beginning 0)) buf)) start (match-end 0))) (apply (function concat) (nreverse (cons (substring str start) buf))))) (defun w3m-image-type (content-type) "Return an image type which corresponds to CONTENT-TYPE." (cdr (assoc content-type w3m-image-type-alist))) (defun w3m-imitate-widget-button () "Return a boolean value corresponding to the variable of the same name." (if (listp w3m-imitate-widget-button) (condition-case nil (eval w3m-imitate-widget-button) (error nil)) (and w3m-imitate-widget-button t))) (defun w3m-fontify-anchors () "Fontify anchor tags in the buffer which contains halfdump." (let ((help (w3m-make-help-echo w3m-balloon-help)) (balloon (w3m-make-balloon-help w3m-balloon-help)) prenames start end bhhref) (goto-char (point-min)) (setq w3m-max-anchor-sequence 0) ;; reset max-hseq (while (re-search-forward "<_id[ \t\r\f\n]+" nil t) (setq start (match-beginning 0)) (setq prenames (get-text-property start 'w3m-name-anchor)) (w3m-parse-attributes (id) (delete-region start (point)) (w3m-add-text-properties start (point-max) (list 'w3m-name-anchor (cons (w3m-decode-entities-string id) prenames))))) (goto-char (point-min)) (while (re-search-forward "\\)" nil t) (setq end (match-beginning 0)) (delete-region (match-beginning 1) (match-end 1)) (setq href (w3m-expand-url href)) (unless (w3m-url-local-p href) (w3m-string-match-url-components href) (setq href (if (match-beginning 8) (let ((tmp (match-string 9 href))) (concat (w3m-url-transfer-encode-string (substring href 0 (match-beginning 8))) "#" tmp)) (w3m-url-transfer-encode-string href)))) (setq hseq (or (and (null hseq) 0) (abs hseq))) (setq w3m-max-anchor-sequence (max hseq w3m-max-anchor-sequence)) (w3m-add-face-property start end (if (w3m-arrived-p href) 'w3m-arrived-anchor 'w3m-anchor)) (if title (progn (setq title (w3m-decode-entities-string title)) (setq bhhref (concat (w3m-decode-anchor-string title) "\n" (w3m-url-readable-string href)))) (setq bhhref (w3m-url-readable-string href))) (w3m-add-text-properties start end (list 'w3m-href-anchor href 'w3m-balloon-help bhhref 'w3m-anchor-title title 'mouse-face 'highlight 'w3m-anchor-sequence hseq 'help-echo help 'balloon-help balloon 'keymap w3m-link-map)) (when (w3m-imitate-widget-button) (require 'wid-edit) (let ((widget-button-face (if (w3m-arrived-p href) 'w3m-arrived-anchor 'w3m-anchor)) (widget-mouse-face 'highlight) w) (setq w (widget-convert-button 'default start end :button-keymap nil :help-echo href)) (w3m-static-unless (featurep 'xemacs) (overlay-put (widget-get w :button-overlay) 'evaporate t)))) (when name (w3m-add-text-properties start (point-max) (list 'w3m-name-anchor2 (cons (w3m-decode-entities-string name) prenames)))))) (name (w3m-add-text-properties start (point-max) (list 'w3m-name-anchor2 (cons (w3m-decode-entities-string name) prenames))))))) (when w3m-icon-data (setq w3m-icon-data (cons (and (car w3m-icon-data) (w3m-expand-url (car w3m-icon-data))) (or (w3m-image-type (cdr w3m-icon-data)) 'ico)))) (when w3m-next-url (setq w3m-next-url (w3m-expand-url w3m-next-url))) (when w3m-previous-url (setq w3m-previous-url (w3m-expand-url w3m-previous-url))) (when w3m-start-url (setq w3m-start-url (w3m-expand-url w3m-start-url))) (when w3m-contents-url (setq w3m-contents-url (w3m-expand-url w3m-contents-url))))) (eval-and-compile (unless (featurep 'xemacs) (defun w3m-setup-menu () "Define menubar buttons for Emacsen." (w3m-menu-on-forefront w3m-menu-on-forefront t) (unless (keymapp (lookup-key w3m-mode-map [menu-bar w3m])) (let ((map (make-sparse-keymap (car w3m-menubar)))) (define-key w3m-mode-map [menu-bar] (make-sparse-keymap)) (w3m-setup-session-menu) (when w3m-use-tab-menubar (w3m-setup-tab-menu)) (w3m-setup-bookmark-menu) (define-key w3m-mode-map [menu-bar w3m] (cons (car w3m-menubar) map)) (require 'easymenu) (easy-menu-define w3m-mode-menu w3m-mode-map "w3m menu item" w3m-menubar) (easy-menu-add w3m-mode-menu)) (let ((map (make-sparse-keymap))) (easy-menu-define w3m-rmouse-menu map "w3m rmouse menu item" w3m-rmouse-menubar)))))) (defun w3m-fontify-images () "Fontify img_alt strings of images in the buffer containing halfdump." (goto-char (point-min)) (let ((balloon (w3m-make-balloon-help w3m-balloon-help)) upper start end help src1) (while (re-search-forward "<\\(img_alt\\)[^>]+>" nil t) (setq upper (string= (match-string 1) "IMG_ALT") start (match-beginning 0) end (match-end 0)) (goto-char (match-end 1)) (w3m-parse-attributes (src (width :integer) (height :integer) title usemap) (delete-region start end) (setq src (w3m-expand-url (w3m-decode-anchor-string src))) ;; Use the identical Lisp object for a string used as the value of ;; the `w3m-image' property. A long title string will be chopped in ;; w3m's halfdump; since it makes `next-single-property-change' not ;; work properly, XEmacs didn't display images in shimbun articles. (if (equal src src1) (setq src src1) (setq src1 src)) (when (search-forward "" nil t) (delete-region (setq end (match-beginning 0)) (match-end 0)) (setq help (get-text-property start 'w3m-balloon-help)) (cond ((and help title) (setq help (format "%s\nalt: %s\nimg: %s" help title src))) (help (setq help (format "%s\nimg: %s" help src))) (title (setq help (format "alt: %s\nimg: %s" title src))) (t (setq help (format "img: %s" src)))) (w3m-add-text-properties start end (list 'w3m-image src 'w3m-image-size (when (or width height) (cons width height)) 'w3m-image-alt title 'w3m-balloon-help help 'w3m-image-usemap usemap 'w3m-image-status 'off 'w3m-image-redundant upper 'keymap w3m-link-map)) (unless (w3m-action start) ;; No need to use `w3m-add-text-properties' here. (w3m-add-face-property start end (if (w3m-anchor start) 'w3m-image-anchor 'w3m-image)) (unless (w3m-anchor start) (add-text-properties start end (list 'mouse-face 'highlight 'help-echo help 'balloon-help balloon))))))))) (defvar w3m-idle-images-show-timer nil) (defvar w3m-idle-images-show-list nil) (defvar w3m-idle-images-show-interval 1) (defun w3m-idle-images-show () (let ((repeat t) (onbuffer (member (current-buffer) (w3m-list-buffers)))) (while (and repeat w3m-idle-images-show-list) (let* ((item (or (and onbuffer (or (get-text-property (point) 'w3m-idle-image-item) (let* ((prev (previous-single-property-change (point) 'w3m-idle-image-item)) (next (next-single-property-change (point) 'w3m-idle-image-item)) (prev-diff (and prev (abs (- (point) prev)))) (next-diff (and next (abs (- (point) next))))) (cond ((and prev next) (get-text-property (if (< prev-diff next-diff) prev next) 'w3m-idle-image-item)) (prev (get-text-property prev 'w3m-idle-image-item)) (next (get-text-property next 'w3m-idle-image-item)) (t nil))))) (car (last w3m-idle-images-show-list)))) (start (nth 0 item)) (end (nth 1 item)) (iurl (nth 2 item)) (url (nth 3 item)) (no-cache (nth 4 item)) (size (nth 5 item))) (setq w3m-idle-images-show-list (delete item w3m-idle-images-show-list)) (if (buffer-live-p (marker-buffer start)) (with-current-buffer (marker-buffer start) (save-restriction (widen) (let ((inhibit-read-only t)) (remove-text-properties start end '(w3m-idle-image-item)) (set-buffer-modified-p nil)) (w3m-process-with-null-handler (lexical-let ((start start) (end end) (iurl iurl) (url url)) (w3m-process-do (image (let ((w3m-current-buffer (current-buffer)) (w3m-message-silent t)) (w3m-create-image iurl no-cache url size handler))) (when (buffer-live-p (marker-buffer start)) (with-current-buffer (marker-buffer start) (save-restriction (widen) (if image (when (equal url w3m-current-url) (let ((inhibit-read-only t)) (w3m-insert-image start end image iurl)) ;; Redisplay (when w3m-force-redisplay (sit-for 0))) (let ((inhibit-read-only t)) (w3m-add-text-properties start end '(w3m-image-status off)))) (set-buffer-modified-p nil)) (set-marker start nil) (set-marker end nil)))))))) (set-marker start nil) (set-marker end nil) (w3m-idle-images-show-unqueue (marker-buffer start)))) (setq repeat (sit-for 0.1 t))) (if w3m-idle-images-show-list (when (input-pending-p) (cancel-timer w3m-idle-images-show-timer) (setq w3m-idle-images-show-timer (run-with-idle-timer w3m-idle-images-show-interval t 'w3m-idle-images-show))) (cancel-timer w3m-idle-images-show-timer) (setq w3m-idle-images-show-timer nil)))) (defun w3m-idle-images-show-unqueue (buffer) (when w3m-idle-images-show-timer (cancel-timer w3m-idle-images-show-timer) (setq w3m-idle-images-show-timer nil) (setq w3m-idle-images-show-list (delq nil (mapcar (lambda (x) (and (not (eq buffer (marker-buffer (nth 0 x)))) x)) w3m-idle-images-show-list))) (when w3m-idle-images-show-list (setq w3m-idle-images-show-timer (run-with-idle-timer w3m-idle-images-show-interval t 'w3m-idle-images-show))))) (defcustom w3m-confirm-leaving-secure-page t "If non-nil, you'll be asked for confirmation when leaving secure pages. This option controls whether the confirmation is made also when retrieving data (typically images) in a secure page from non-secure pages. It is STRONGLY recommended to set non-nil value to this option. You MUST understand what you want to do completely before switching off this option." :group 'w3m :type 'boolean) (defvar w3m-image-no-idle-timer nil) (defun w3m-toggle-inline-images-internal (status &optional no-cache url begin-pos end-pos safe-regexp) "Toggle displaying of inline images on current buffer. STATUS is current image status. If NO-CACHE is non-nil, cache is not used. If URL is specified, only the image with URL is toggled." (let ((cur-point (point)) (inhibit-read-only t) (end (or begin-pos (point-min))) (allow-non-secure-images (not w3m-confirm-leaving-secure-page)) start iurl image size) (unless end-pos (setq end-pos (point-max))) (save-excursion (if (equal status 'off) (while (< (setq start (if (w3m-image end) end (next-single-property-change end 'w3m-image nil end-pos))) end-pos) (setq end (or (next-single-property-change start 'w3m-image) (point-max)) iurl (w3m-image start) size (get-text-property start 'w3m-image-size)) (when (and (or (and (not url) (or (not w3m-ignored-image-url-regexp) (not (string-match w3m-ignored-image-url-regexp iurl)))) ;; URL is specified and is same as the image URL. (string= url iurl)) (not (eq (get-text-property start 'w3m-image-status) 'on))) (w3m-add-text-properties start end '(w3m-image-status on)) (if (get-text-property start 'w3m-image-redundant) (progn ;; Insert a dummy string instead of a redundant image. (setq image (make-string (string-width (buffer-substring start end)) ? )) (w3m-add-text-properties start end '(invisible t)) (goto-char end) (w3m-add-text-properties end (progn (insert image) (point)) '(w3m-image-dummy t w3m-image "dummy")) (setq end (point))) (goto-char cur-point) (when (and (w3m-url-valid iurl) (or (null safe-regexp) (string-match safe-regexp iurl)) (not (and (not (w3m-url-local-p w3m-current-url)) (w3m-url-local-p iurl))) (or (not w3m-current-ssl) (string-match "\\`\\(?:ht\\|f\\)tps://" iurl) allow-non-secure-images (and (prog1 (y-or-n-p "\ You are retrieving non-secure image(s). Continue? ") (message nil)) (setq allow-non-secure-images t)))) (if (or w3m-image-no-idle-timer (and (null (and size w3m-resize-images)) (or (string-match "\\`\\(?:cid\\|data\\):" iurl) (w3m-url-local-p iurl) (w3m-cache-available-p iurl)))) (w3m-process-with-null-handler (lexical-let ((start (set-marker (make-marker) start)) (end (set-marker (make-marker) end)) (iurl iurl) (url w3m-current-url)) (w3m-process-do (image (let ((w3m-current-buffer (current-buffer))) (w3m-create-image iurl no-cache w3m-current-url size handler))) (when (buffer-live-p (marker-buffer start)) (with-current-buffer (marker-buffer start) (if image (when (equal url w3m-current-url) (let ((inhibit-read-only t)) (w3m-insert-image start end image iurl)) ;; Redisplay (when w3m-force-redisplay (sit-for 0))) (let ((inhibit-read-only t)) (w3m-add-text-properties start end '(w3m-image-status off)))) (set-buffer-modified-p nil))) (set-marker start nil) (set-marker end nil)))) (let ((item (list (set-marker (make-marker) start) (set-marker (make-marker) end) (w3m-url-transfer-encode-string iurl) w3m-current-url no-cache size))) (setq w3m-idle-images-show-list (cons item w3m-idle-images-show-list)) (w3m-add-text-properties start end `(w3m-idle-image-item ,item)) (unless w3m-idle-images-show-timer (setq w3m-idle-images-show-timer (run-with-idle-timer w3m-idle-images-show-interval t 'w3m-idle-images-show))))))))) ;; Remove. (while (< (setq start (if (w3m-image end) end (next-single-property-change end 'w3m-image nil end-pos))) end-pos) (setq end (or (next-single-property-change start 'w3m-image) (point-max)) iurl (w3m-image start)) ;; IMAGE-ALT-STRING DUMMY-STRING ;; <--------w3m-image----------> ;; <---redundant--><---dummy---> ;; <---invisible--> (when (and (or (not url) ;; URL is specified and is not same as the image URL. (string= url iurl)) (not (eq (get-text-property start 'w3m-image-status) 'off))) (cond ((get-text-property start 'w3m-image-redundant) ;; Remove invisible property. (put-text-property start end 'invisible nil)) ((get-text-property start 'w3m-image-dummy) ;; Remove dummy string. (delete-region start end) (setq end start)) (t (w3m-remove-image start end))) (w3m-add-text-properties start end '(w3m-image-status off w3m-idle-image-item nil)))) (set-buffer-modified-p nil))))) (defun w3m-toggle-inline-image (&optional force no-cache) "Toggle the visibility of an image under point or images in the region. If FORCE is non-nil, displaying an image is forced. If NO-CACHE is non-nil, cached data will not be used." (interactive "P") (unless (w3m-display-graphic-p) (error "Can't display images in this environment")) (let (toggle-list begin end) (if (w3m-region-active-p) (let ((p (region-beginning)) iurl) (setq begin (region-beginning) end (region-end)) (w3m-deactivate-region) (while (< p end) (setq p (next-single-property-change p 'w3m-image nil end)) (when (and (< p end) (setq iurl (w3m-image p)) (not (assoc iurl toggle-list))) (setq toggle-list (cons (cons iurl p) toggle-list))))) (setq toggle-list (and (w3m-image) `(,(cons (w3m-image) (point)))))) (if toggle-list (dolist (x toggle-list) (let* ((url (car x)) (pos (cdr x)) (status (get-text-property pos 'w3m-image-status)) safe-regexp) (if (and (get-text-property pos 'w3m-image-scale) (equal status 'off)) (w3m-zoom-in-image 0) (if (w3m-url-valid url) (if (eq status 'on) (progn (if force (setq status 'off)) (w3m-toggle-inline-images-internal status no-cache url (or begin (point-min)) (or end (point-max)))) (setq safe-regexp (get-text-property (point) 'w3m-safe-url-regexp)) (if (or force (not safe-regexp) (string-match safe-regexp url)) (w3m-toggle-inline-images-internal status no-cache url (or begin (point-min)) (or end (point-max))) (when (w3m-interactive-p) (w3m-message "This image is considered to be unsafe;\ use the prefix arg to force display")))))))) (if begin (w3m-message "No images in region") (w3m-message "No image at point"))))) (defun w3m-turnoff-inline-images () "Turn off to display all images in the buffer or in the region." (interactive) (w3m-toggle-inline-images 'turnoff)) (defun w3m-toggle-inline-images (&optional force no-cache) "Toggle the visibility of all images in the buffer or in the region. If FORCE is neither nil nor `turnoff', displaying images is forced. The value `turnoff' is special; it turns displaying images off anyway. If NO-CACHE is non-nil, cached data will not be used. Note that the status of whether images are visible is kept hereafter even in new sessions if the `w3m-toggle-inline-images-permanently' variable is non-nil (default=t)." (interactive "P") (unless (w3m-display-graphic-p) (error "Can't display images in this environment")) (let ((status (cond ((eq force 'turnoff) t) (force nil) (t w3m-display-inline-images))) (safe-p t) beg end safe-regexp pos url) (if (w3m-region-active-p) (progn (setq beg (region-beginning) end (region-end)) (w3m-deactivate-region)) (setq beg (point-min) end (point-max))) (unless status (when (setq safe-regexp (get-text-property (point) 'w3m-safe-url-regexp)) ;; Scan the buffer for searching for an insecure image url. (setq pos beg) (setq safe-p (catch 'done (when (setq url (get-text-property pos 'w3m-image)) (unless (string-match safe-regexp url) (throw 'done nil)) (setq pos (next-single-property-change pos 'w3m-image))) (while (< pos end) (when (and (setq pos (next-single-property-change pos 'w3m-image nil end)) (setq url (get-text-property pos 'w3m-image))) (unless (string-match safe-regexp url) (throw 'done nil))) (setq pos (next-single-property-change pos 'w3m-image nil end))) t)))) (if (or force status (not safe-regexp) safe-p) (progn (unwind-protect (w3m-toggle-inline-images-internal (if status 'on 'off) no-cache nil beg end (unless (w3m-interactive-p) safe-regexp)) (setq w3m-display-inline-images (not status)) (when status (w3m-process-stop (current-buffer)) (w3m-idle-images-show-unqueue (current-buffer))) (force-mode-line-update))) (w3m-message "There are some images considered unsafe;\ use the prefix arg to force display")))) (defun w3m-resize-inline-image-internal (url rate) "Resize an inline image on the cursor position. URL is a url of an image. RATE is a number of percent used when resizing an image." (let* ((inhibit-read-only t) (start (point)) (end (or (next-single-property-change start 'w3m-image) (point-max))) (iurl (w3m-image start)) (size (get-text-property start 'w3m-image-size)) (iscale (or (get-text-property start 'w3m-image-scale) '100)) (allow-non-secure-images (not w3m-confirm-leaving-secure-page)) scale image) (w3m-add-text-properties start end '(w3m-image-status on)) (setq scale (* iscale rate 0.01)) (w3m-add-text-properties start end (list 'w3m-image-scale scale)) (setq scale (round scale)) (if (get-text-property start 'w3m-image-redundant) (progn ;; Insert a dummy string instead of a redundant image. (setq image (make-string (string-width (buffer-substring start end)) ? )) (w3m-add-text-properties start end '(invisible t)) (w3m-add-text-properties (point) (progn (insert image) (point)) '(w3m-image-dummy t w3m-image "dummy"))) (when (and (w3m-url-valid iurl) (or (not w3m-current-ssl) (string-match "\\`\\(?:ht\\|f\\)tps://" iurl) allow-non-secure-images (and (prog1 (y-or-n-p "\ You are retrieving non-secure image(s). Continue? ") (message nil)) (setq allow-non-secure-images t)))) (w3m-process-with-null-handler (lexical-let ((start (set-marker (make-marker) start)) (end (set-marker (make-marker) end)) (iurl iurl) (rate scale) (url w3m-current-url)) (w3m-process-do (image (let ((w3m-current-buffer (current-buffer))) (w3m-create-resized-image iurl rate w3m-current-url size handler))) (when (buffer-live-p (marker-buffer start)) (with-current-buffer (marker-buffer start) (if image (when (equal url w3m-current-url) (let ((inhibit-read-only t)) (w3m-static-when (featurep 'xemacs) (w3m-remove-image start end)) (w3m-insert-image start end image iurl) (w3m-image-animate image)) ;; Redisplay (when w3m-force-redisplay (sit-for 0))) (let ((inhibit-read-only t)) (w3m-add-text-properties start end '(w3m-image-status off)))) (set-buffer-modified-p nil)) (set-marker start nil) (set-marker end nil))))))))) (defun w3m-resize-image-interactive (image &optional rate changed-rate) "Interactively resize IMAGE. If RATE is not given, use `w3m-resize-image-scale'. CHANGED-RATE is currently changed rate / 100." (let ((char (w3m-static-if (featurep 'xemacs) (progn (message "Resize: [+ =] enlarge [-] shrink [0] original [q] quit") (read-char-exclusive)) (read-char-exclusive (propertize "Resize: [+ =] enlarge [-] shrink [0] original [q] quit" 'face 'w3m-lnum-minibuffer-prompt)))) (changed-rate (or changed-rate 1))) (w3m-static-if (featurep 'xemacs) (setq char (char-octet char))) (while (memq char '(?+ ?- ?= ?0)) (cond ((memq char '(?+ ?=)) (let ((percent (+ 100 (or rate w3m-resize-image-scale)))) (w3m-resize-inline-image-internal image percent) (setq changed-rate (* changed-rate (/ percent 100.0))))) ((eq char ?-) (let ((percent (/ 10000.0 (+ 100 (if rate (if (> rate 99) 99 rate) w3m-resize-image-scale))))) (w3m-resize-inline-image-internal image percent) (setq changed-rate (* changed-rate (/ percent 100.0))))) ((eq char ?0) (w3m-resize-inline-image-internal image (/ 100.0 changed-rate)) (setq changed-rate 1))) (setq char (w3m-static-if (featurep 'xemacs) (progn (message "Resize: [+ =] enlarge [-] shrink [0] original [q] quit") (read-char-exclusive)) (read-char-exclusive (propertize "Resize: [+ =] enlarge [-] shrink [0] original [q] quit" 'face 'w3m-lnum-minibuffer-prompt)))) (w3m-static-if (featurep 'xemacs) (setq char (char-octet char)))))) (defun w3m-zoom-in-image (&optional rate) "Zoom in an image on the point. Numeric prefix specifies how many percent the image is enlarged by \(30 means enlarging the image by 130%). The default is the value of the `w3m-resize-image-scale' variable." (interactive "P") (unless (w3m-display-graphic-p) (error "Can't display images in this environment")) (unless (w3m-imagick-convert-program-available-p) (error "ImageMagick's `convert' program is required")) (let ((url (w3m-image))) (if url (w3m-resize-inline-image-internal url (+ 100 (or rate w3m-resize-image-scale))) (w3m-message "No image at point")))) (defun w3m-zoom-out-image (&optional rate) "Zoom out an image on the point. Numeric prefix specifies how many percent the image is shrunk by. The default is the value of the `w3m-resize-image-scale' variable. The shrink percentage is interpreted as if the current image size is 100+percent and it is to be reduced back to 100. This is the inverse of `w3m-zoom-in-image' so zooming in then back out gives the original again." (interactive "P") (unless (w3m-display-graphic-p) (error "Can't display images in this environment")) (unless (w3m-imagick-convert-program-available-p) (error "ImageMagick's `convert' program is required")) (let ((url (w3m-image))) (if url (w3m-resize-inline-image-internal url (/ 10000.0 (+ 100 (or rate w3m-resize-image-scale)))) (w3m-message "No image at point")))) (defun w3m-decode-entities (&optional keep-properties) "Decode entities in the current buffer. If optional KEEP-PROPERTIES is non-nil, text property is reserved." (save-excursion (goto-char (point-min)) ;; Character entity references are case-sensitive. ;; cf. http://www.w3.org/TR/1999/REC-html401-19991224/charset.html#h-5.3.2 (let (case-fold-search start fid prop value) (while (re-search-forward w3m-entity-regexp nil t) (setq start (match-beginning 0) fid (get-text-property start 'w3m-form-field-id)) (unless (and fid (save-match-data (string-match "/type=\\(?:text\\|select\\)/name=[^/]+/" fid))) (when keep-properties (setq prop (text-properties-at start))) (unless (eq (char-after (match-end 1)) ?\;) (goto-char (match-end 1))) ;; Note that `w3m-entity-value' breaks `match-data' at the 1st ;; time in XEmacs because of the autoloading unicode.elc for ;; the `ucs-to-char' function. (when (setq value (w3m-entity-value (match-string 1))) (delete-region start (point)) (insert value)) (when prop (w3m-add-text-properties start (point) prop))))))) (defun w3m-decode-entities-string (str) "Decode entities in the string STR." (save-match-data ;; Character entity references are case-sensitive. ;; cf. http://www.w3.org/TR/1999/REC-html401-19991224/charset.html#h-5.3.2 (let ((case-fold-search) (pos 0) (buf)) (while (string-match w3m-entity-regexp str pos) (setq buf (cons (or (w3m-entity-value (match-string 1 str)) (match-string 1 str)) (cons (substring str pos (match-beginning 0)) buf)) pos (if (eq (aref str (match-end 1)) ?\;) (match-end 0) (match-end 1)))) (if buf (apply 'concat (nreverse (cons (substring str pos) buf))) str)))) (defun w3m-encode-specials-string (str) "Encode special characters in the string STR." (let ((pos 0) (buf)) (while (string-match "[<>&]" str pos) (setq buf (cons ";" (cons (gethash (match-string 0 str) w3m-entity-reverse-table) (cons "&" (cons (substring str pos (match-beginning 0)) buf)))) pos (match-end 0))) (if buf (apply 'concat (nreverse (cons (substring str pos) buf))) str))) (defun w3m-fontify () "Fontify the current buffer." (let ((case-fold-search t) (inhibit-read-only t)) (w3m-message "Fontifying...") (run-hooks 'w3m-fontify-before-hook) ;; Remove hidden anchors like " ". (goto-char (point-min)) (while (re-search-forward "]+>[\t\n ]*" nil t) (delete-region (match-beginning 0) (match-end 0))) ;; Delete tag (goto-char (point-min)) (if (search-forward "" nil t) (delete-region start (match-end 0)) (goto-char (point-min)))) ;; Delete extra title tag. (let (start) (and (search-forward "" nil t) (setq start (match-beginning 0)) (search-forward "" nil t) (delete-region start (match-end 0)))) (w3m-fontify-bold) (w3m-fontify-italic) (w3m-fontify-strike-through) (w3m-fontify-insert) (w3m-fontify-underline) (when w3m-use-symbol (w3m-replace-symbol)) (w3m-fontify-anchors) (when w3m-use-form (w3m-fontify-forms)) (w3m-fontify-images) ;; Remove other markups. (goto-char (point-min)) (while (re-search-forward "]*>" nil t) (let* ((start (match-beginning 0)) (fid (get-text-property start 'w3m-form-field-id))) (if (and fid (string-match "/type=text\\(?:area\\)?/" fid)) (goto-char (1+ start)) (delete-region start (match-end 0))))) ;; Decode escaped characters (entities). (w3m-decode-entities 'reserve-prop) (when w3m-use-form (w3m-fontify-textareas)) (goto-char (point-min)) (when w3m-delete-duplicated-empty-lines (while (re-search-forward "^[ \t]*\n\\(?:[ \t]*\n\\)+" nil t) (delete-region (match-beginning 0) (1- (match-end 0))))) ;; FIXME: The code above reduces number of empty lines but one line ;; remains. While such empty lines might have been inserted for ;; making sure of rooms for displaying images, they all should be ;; removed since they are useless for emacs-w3m. However, currently ;; we don't have a proper way to identify whether they were inserted ;; intentionally by the author or not. So, we decided to remove only ;; that one at the beginning of the buffer though it is unwillingness. (goto-char (point-min)) (skip-chars-forward "\t\n $B!!(B") (delete-region (point-min) (point-at-bol)) (w3m-header-line-insert) (put-text-property (point-min) (point-max) 'w3m-safe-url-regexp w3m-safe-url-regexp) (w3m-message "Fontifying...done") (run-hooks 'w3m-fontify-after-hook))) (defun w3m-refontify-anchor (&optional buff) "Refontify anchors as they have already arrived. It replaces the faces on the arrived anchors from `w3m-anchor' to `w3m-arrived-anchor'." (with-current-buffer (or buff (current-buffer)) (let (prop) (when (and (eq major-mode 'w3m-mode) (get-text-property (point) 'w3m-anchor-sequence) (setq prop (get-text-property (point) 'face)) (listp prop) (member 'w3m-anchor prop)) (let ((start) (end (next-single-property-change (point) 'w3m-anchor-sequence)) (inhibit-read-only t)) (when (and end (setq start (previous-single-property-change end 'w3m-anchor-sequence)) (w3m-arrived-p (get-text-property (point) 'w3m-href-anchor))) (w3m-remove-face-property start end 'w3m-anchor) (w3m-remove-face-property start end 'w3m-arrived-anchor) (w3m-add-face-property start end 'w3m-arrived-anchor)) (set-buffer-modified-p nil)))))) (defun w3m-url-completion (url predicate flag) "Completion function for URL." (if (string-match "\\`\\(?:file:\\|[/~]\\|\\.\\.?/\\|[a-zA-Z]:\\)" url) (if (eq flag 'lambda) (file-exists-p (w3m-url-to-file-name url)) (let* ((partial (expand-file-name (cond ((string-match "\\`file:[^/]" url) (substring url 5)) ((string-match "/\\(~\\)" url) (substring url (match-beginning 1))) (t (w3m-url-to-file-name url))))) (collection (let ((dir (file-name-directory partial))) (mapcar (lambda (f) (list (w3m-expand-file-name-as-url f dir))) (file-name-all-completions (file-name-nondirectory partial) dir))))) (setq partial (if (string-match "/\\.\\'" url) (concat (file-name-as-directory (w3m-expand-file-name-as-url partial)) ".") (w3m-expand-file-name-as-url partial))) (cond ((not flag) (try-completion partial collection predicate)) ((eq flag t) (all-completions partial collection predicate))))) (cond ((not flag) (try-completion url w3m-arrived-db)) ((eq flag t) (all-completions url w3m-arrived-db)) ((eq flag 'lambda) (if (w3m-arrived-p url) t nil))))) (defun w3m-shr-url-at-point () "Return a url that shr.el provides at point." (w3m-get-text-property-around 'shr-url)) (defun w3m-header-line-url () "Return w3m-current-url if point stays at header line." (let ((faces (get-text-property (point) 'face))) (when (and (eq major-mode 'w3m-mode) (listp faces) (or (memq 'w3m-header-line-location-title faces) (memq 'w3m-header-line-location-content faces)) w3m-current-url) w3m-current-url))) (eval-and-compile (autoload 'ffap-url-at-point "ffap") (cond ((featurep 'emacs) (defun w3m-url-at-point () (or (w3m-shr-url-at-point) (w3m-header-line-url) (ffap-url-at-point)))) ((featurep 'mule) (defun w3m-url-at-point () "\ Like `ffap-url-at-point', except that text props will be stripped and iso646 characters are unified into ascii characters." (or (w3m-header-line-url) (let ((left (buffer-substring-no-properties (point-at-bol) (point))) (right (buffer-substring-no-properties (point) (point-at-eol))) (regexp (format "[%c-%c]" (make-char 'latin-jisx0201 33) (make-char 'latin-jisx0201 126))) (diff (- (char-to-int (make-char 'latin-jisx0201 33)) 33)) index) (while (setq index (string-match regexp left)) (aset left index (- (aref left index) diff))) (while (setq index (string-match regexp right)) (aset right index (- (aref right index) diff))) (with-temp-buffer (insert right) (goto-char (point-min)) (insert left) (ffap-url-at-point)))))) (t (defun w3m-url-at-point () "Like `ffap-url-at-point', except that text props will be stripped." (or (w3m-header-line-url) (unless (fboundp 'ffap-url-at-point) ;; It is necessary to bind `ffap-xemacs'. (load "ffap" nil t)) (let (ffap-xemacs) (ffap-url-at-point))))))) (defvar ffap-url-regexp) (eval-after-load "ffap" '(progn ;; Under XEmacs, `ffap-url-regexp' won't match to https urls. (if (and ffap-url-regexp (not (string-match ffap-url-regexp "https://foo")) (string-match "\\((\\|\\\\|\\)\\(http\\)\\(\\\\|\\|\\\\)\\)" ffap-url-regexp)) (setq ffap-url-regexp (replace-match "\\1\\2s?\\3" nil nil ffap-url-regexp))) ;; Add nntp:. (if (and ffap-url-regexp (not (string-match ffap-url-regexp "nntp://bar")) (string-match "\\(\\\\(news\\\\(post\\\\)\\?:\\)\\(\\\\|\\)" ffap-url-regexp)) (setq ffap-url-regexp (replace-match "\\1\\\\|nntp:\\2" nil nil ffap-url-regexp))))) (defun w3m-active-region-or-url-at-point (&optional default-to) "Return an active region or a url around the cursor. In Transient Mark mode, deactivate the mark. If DEFAULT-TO is `never', only return a url found in the specified region if any. If it is nil, default to a url that an anchor at the point points to. If it is neither `never' nor nil, default to a url of the current page as the last resort." (if (w3m-region-active-p) (prog1 (let ((string (buffer-substring-no-properties (region-beginning) (region-end)))) (with-temp-buffer (insert string) (skip-chars-backward "\t\n\f\r $B!!(B") (delete-region (point) (point-max)) (goto-char (point-min)) (skip-chars-forward "\t\n\f\r $B!!(B") (delete-region (point-min) (point)) (while (re-search-forward "\ \\(?:[\t\f\r $B!!(B]+\n[\t\f\r $B!!(B]*\\|[\t\f\r $B!!(B]*\n[\t\f\r $B!!(B]+\\)+" nil t) (delete-region (match-beginning 0) (match-end 0))) (buffer-string))) (w3m-deactivate-region)) (unless (eq default-to 'never) (or (w3m-anchor) (unless w3m-display-inline-images (w3m-image)) (w3m-url-at-point) (and default-to (stringp w3m-current-url) (if (string-match "\\`about://\\(?:header\\|source\\)/" w3m-current-url) (substring w3m-current-url (match-end 0)) (let ((name (or (car (get-text-property (point) 'w3m-name-anchor)) (car (get-text-property (point) 'w3m-name-anchor2))))) (if name (concat w3m-current-url "#" name) w3m-current-url)))))))) (declare-function w3m-search-do-search "w3m-search") (defvar w3m-search-default-engine) (defun w3m-canonicalize-url (url &optional feeling-searchy) "Fix URL that does not look like a valid url. For a query that neither has a scheme part nor is an existing local file, return a search url for the default search engine. Also fix URL that fails to have put a separator following a domain name." (if (string-match "\\`\\(https?://[-.0-9a-z]+\\)\\([#?].*\\)" url) (concat (match-string 1 url) "/" (match-string 2 url)) (let (replaced) (cond ((and (setq replaced (ignore-errors (w3m-uri-replace url))) (not (string= url replaced))) replaced) ((file-exists-p url) (concat "file://" (expand-file-name url))) ((progn (w3m-string-match-url-components url) (match-beginning 1)) url) (feeling-searchy (require 'w3m-search) (w3m-search-do-search (lambda (url &rest rest) url) w3m-search-default-engine url)) (t (concat "https://" url)))))) (defcustom w3m-input-url-provide-initial-content nil "Provide an initial minibuffer content (if any) when entering a url. A url string is not worth editing in most cases since a url thing is generally a list of arbitrary letters, not a human readable one. So, we provide no initial content when prompting you for a url by default. But sometimes there will be a case to be convenient if you can modify the url string of [1]the link under the cursor or of [2]the current page. In that case, you can type the `M-n' key [1]once or [2]twice to fill the minibuffer with an initial content if you use Emacs 23 and up. Otherwise, set this variable to a non-nil value to always provide an initial content." :group 'w3m :type 'boolean) (defun w3m-input-url-default-add-completions () "Use the current url string (if any) as the next history by default. This function is used as `minibuffer-default-add-function'." (w3m-static-when (fboundp 'minibuffer-default-add-completions) (let* ((to-add (with-current-buffer (window-buffer (minibuffer-selected-window)) (or (w3m-active-region-or-url-at-point) w3m-current-url))) (def minibuffer-default) (all (all-completions "" minibuffer-completion-table minibuffer-completion-predicate)) (add2 (if (listp to-add) to-add (list to-add))) (def2 (if (listp def) def (list def)))) (append def2 add2 (delete def2 (delete def (delete add2 (delete to-add all)))))))) (defun w3m-input-url (&optional prompt initial default quick-start feeling-searchy no-initial) "Read a url from the minibuffer, prompting with string PROMPT." (let ((url ;; Check whether the region is active. (w3m-active-region-or-url-at-point 'never))) (w3m-arrived-setup) (cond ((null initial) (when (setq initial (or url (when (or w3m-input-url-provide-initial-content (not no-initial)) (w3m-active-region-or-url-at-point t)))) (if (string-match "\\`about:" initial) (setq initial nil) (unless (string-match "[^\000-\177]" initial) (setq initial (w3m-url-decode-string initial (or (w3m-url-coding-system initial) w3m-current-coding-system) "%\\([2-9a-f][0-9a-f]\\)")))))) ((string= initial "") (setq initial nil))) (when initial (setq initial (w3m-puny-decode-url initial))) (cond ((null default) (setq default (or url (w3m-active-region-or-url-at-point) w3m-home-page))) ((string= default "") (setq default nil))) (if (and quick-start default (not initial)) default (unless w3m-enable-feeling-searchy (setq feeling-searchy nil)) (setq url (let ((minibuffer-setup-hook (append minibuffer-setup-hook (list (lambda () (set (make-local-variable 'minibuffer-default-add-function) 'w3m-input-url-default-add-completions) (beginning-of-line) (if (looking-at "[a-z]+:\\(?:/+\\)?") (goto-char (match-end 0))))))) (keymap (copy-keymap w3m-url-completion-map)) (minibuffer-completion-table 'w3m-url-completion) (minibuffer-completion-predicate nil) (minibuffer-completion-confirm nil)) (set-keymap-parent keymap minibuffer-local-completion-map) (read-from-minibuffer (if prompt (if default (progn (when (string-match " *: *\\'" prompt) (setq prompt (substring prompt 0 (match-beginning 0)))) (concat prompt " (default " (cond ((equal default "about:blank") "BLANK") ((equal default w3m-home-page) "HOME") ((equal default w3m-current-url) "CURRENT") (t default)) "): ")) prompt) (if default (format "URL %s(default %s): " (if feeling-searchy "or Keyword " "") (if (stringp default) (cond ((string= default "about:blank") "BLANK") ((string= default w3m-home-page) "HOME") (t default)) (prin1-to-string default))) (if feeling-searchy "URL or Keyword: " "URL: "))) initial keymap nil 'w3m-input-url-history default))) (if (string-equal url "") (or default "") (if (stringp url) (progn ;; remove duplication (setq w3m-input-url-history (cons url (delete url w3m-input-url-history))) (w3m-canonicalize-url url feeling-searchy)) ;; It may be `popup'. url))))) ;;; Cache: (defun w3m-cache-setup () "Initialize the variables for managing the cache." (unless (and (bufferp w3m-cache-buffer) (buffer-live-p w3m-cache-buffer)) (with-current-buffer (w3m-get-buffer-create " *w3m cache*") (buffer-disable-undo) (set-buffer-multibyte nil) (setq buffer-read-only t w3m-cache-buffer (current-buffer) w3m-cache-hashtb (make-vector 1021 0))))) (defun w3m-cache-shutdown () "Clear all the variables managing the cache, and the cache itself." (when (buffer-live-p w3m-cache-buffer) (kill-buffer w3m-cache-buffer)) (setq w3m-cache-hashtb nil w3m-cache-articles nil)) (defun w3m-cache-header-delete-variable-part (header) (let (buf flag) (dolist (line (split-string header "\n+")) (if (string-match "\\`\\(?:Date\\|Server\\|W3m-[^:]+\\):" line) (setq flag t) (unless (and flag (string-match "\\`[ \t]" line)) (setq flag nil) (push line buf)))) (mapconcat (function identity) (nreverse buf) "\n"))) (defun w3m-cache-header (url header &optional overwrite) "Store HEADER into the cache so that it corresponds to URL. If OVERWRITE is non-nil, it forces the storing even if there has already been the data corresponding to URL in the cache." (w3m-cache-setup) (setq url (w3m-w3m-canonicalize-url url)) (let ((ident (intern url w3m-cache-hashtb))) (if (boundp ident) (if (and (not overwrite) (string= (w3m-cache-header-delete-variable-part header) (w3m-cache-header-delete-variable-part (symbol-value ident)))) (symbol-value ident) (w3m-cache-remove url) (set ident header)) (set ident header)))) (defun w3m-cache-request-header (url) "Return the header string of URL when it is stored in the cache." (w3m-cache-setup) (let ((ident (intern (w3m-w3m-canonicalize-url url) w3m-cache-hashtb))) (and (boundp ident) (symbol-value ident)))) (defun w3m-cache-remove-oldest () (with-current-buffer w3m-cache-buffer (goto-char (point-min)) (unless (zerop (buffer-size)) (let ((ident (get-text-property (point) 'w3m-cache)) (inhibit-read-only t)) ;; Remove the ident from the list of articles. (when ident (setq w3m-cache-articles (delq ident w3m-cache-articles))) ;; Delete the article itself. (delete-region (point) (next-single-property-change (1+ (point)) 'w3m-cache nil (point-max))))))) (defun w3m-cache-remove (url) "Remove the data coresponding to URL from the cache." (w3m-cache-setup) (let ((ident (intern url w3m-cache-hashtb)) beg end) (when (memq ident w3m-cache-articles) ;; It was in the cache. (with-current-buffer w3m-cache-buffer (let ((inhibit-read-only t)) (when (setq beg (text-property-any (point-min) (point-max) 'w3m-cache ident)) ;; Find the end (i. e., the beginning of the next article). (setq end (next-single-property-change (1+ beg) 'w3m-cache (current-buffer) (point-max))) (delete-region beg end))) (setq w3m-cache-articles (delq ident w3m-cache-articles)))))) (defun w3m-cache-contents (url buffer) "Store the contents of URL into the cache. The contents are assumed to be in BUFFER. Return a symbol which identifies the data in the cache." (w3m-cache-setup) (setq url (w3m-w3m-canonicalize-url url)) (let ((ident (intern url w3m-cache-hashtb))) (w3m-cache-remove url) ;; Remove the oldest article, if necessary. (and (numberp w3m-keep-cache-size) (>= (length w3m-cache-articles) w3m-keep-cache-size) (w3m-cache-remove-oldest)) ;; Insert the new article. (with-current-buffer w3m-cache-buffer (let ((inhibit-read-only t)) (goto-char (point-max)) (let ((b (point))) (insert-buffer-substring buffer) ;; Tag the beginning of the article with the ident. (when (> (point-max) b) (w3m-add-text-properties b (1+ b) (list 'w3m-cache ident)) (setq w3m-cache-articles (cons ident w3m-cache-articles)) ident)))))) (defun w3m-cache-request-contents (url &optional buffer) "Insert contents of URL into BUFFER. Return t if the contents are found in the cache, otherwise nil. When BUFFER is nil, all contents will be inserted in the current buffer." (w3m-cache-setup) (let ((ident (intern (w3m-w3m-canonicalize-url url) w3m-cache-hashtb))) (when (memq ident w3m-cache-articles) ;; It was in the cache. (let (beg end) (with-current-buffer w3m-cache-buffer (if (setq beg (text-property-any (point-min) (point-max) 'w3m-cache ident)) ;; Find the end (i.e., the beginning of the next article). (setq end (next-single-property-change (1+ beg) 'w3m-cache (current-buffer) (point-max))) ;; It wasn't in the cache after all. (setq w3m-cache-articles (delq ident w3m-cache-articles)))) (and beg end (with-current-buffer (or buffer (current-buffer)) (let ((inhibit-read-only t)) (insert-buffer-substring w3m-cache-buffer beg end)) t)))))) ;; FIXME: we need to check whether contents were updated in remote servers. (defun w3m-cache-available-p (url) "Return non-nil if a content of URL has already been cached." (w3m-cache-setup) (when (stringp url) (let ((ident (intern (w3m-w3m-canonicalize-url url) w3m-cache-hashtb))) (and (memq ident w3m-cache-articles) (or w3m-prefer-cache (save-match-data (let ((case-fold-search t) (head (and (boundp ident) (symbol-value ident))) time expire) (cond ((and (string-match "^\\(?:date\\|etag\\):[ \t]" head) (or (string-match "^pragma:[ \t]+no-cache\n" head) (string-match "\ ^cache-control:\\(?:[^\n]+\\)?[ \t,]\\(?:no-cache\\|max-age=0\\)[,\n]" head))) nil) ((and (string-match "^date:[ \t]\\([^\n]+\\)\n" head) (setq time (match-string 1 head)) (setq time (w3m-time-parse-string time)) (string-match "\ ^cache-control:\\(?:[^\n]+\\)?[ \t,]max-age=\\([1-9][0-9]*\\)" head) (setq expire (string-to-number (match-string 1 head)))) (setq time (decode-time time)) (setcar time (+ (car time) expire)) ;; Work around too large integer. (when (floatp (car time)) (setcar time (eval '(lsh -1 -1)))) (setq expire (apply 'encode-time time)) (w3m-time-newer-p expire (current-time))) ((and (string-match "^expires:[ \t]+\\([^\n]+\\)\n" head) (setq expire (match-string 1 head)) (setq expire (w3m-time-parse-string expire))) (w3m-time-newer-p expire (current-time))) (t ;; Adhoc heuristic rule: pages with neither ;; Last-Modified header and ETag header are treated as ;; dynamically-generated pages. (string-match "^\\(?:last-modified\\|etag\\):" head)))))) ident)))) (defun w3m-read-file-name (&optional prompt dir default existing) (unless prompt (setq prompt (if (and default (not (string-equal default ""))) (format "Save to (%s): " default) "Save to: "))) (setq dir (file-name-as-directory (or dir w3m-default-save-directory))) (let ((default-directory dir) (file (read-file-name prompt dir nil existing default))) (if (not (file-directory-p file)) (setq w3m-default-save-directory (or (file-name-directory file) w3m-default-save-directory)) (setq w3m-default-save-directory file) (if default (setq file (expand-file-name default file)))) (expand-file-name file))) ;;; Handling character sets: (defun w3m-charset-to-coding-system (charset) "Return a coding system which is most suitable to CHARSET. CHARSET is a symbol whose name is MIME charset. This function is imported from mcharset.el." (if (stringp charset) (setq charset (intern (downcase charset)))) (let ((cs (assq charset w3m-charset-coding-system-alist))) (w3m-find-coding-system (if cs (cdr cs) charset)))) (defun w3m-coding-system-to-charset (coding-system) "Return the MIME charset corresponding to CODING-SYSTEM." (when coding-system (w3m-static-if (featurep 'xemacs) (when (or (fboundp 'coding-system-to-mime-charset) (progn (require 'mcharset) (fboundp 'coding-system-to-mime-charset))) (defalias 'w3m-coding-system-to-charset 'coding-system-to-mime-charset) (w3m-coding-system-to-charset coding-system)) (or (coding-system-get coding-system :mime-charset) (coding-system-get coding-system 'mime-charset))))) ;; FIXME: we need to investigate the kind of Content-Charsets being ;; actually possible. (defun w3m-read-content-charset (prompt &optional default) "Read a content charset from the minibuffer, prompting with string PROMPT. The second argument DEFAULT is the default value, which is used as the value to return if the user enters the empty string." (let ((charset (completing-read prompt (nconc (mapcar (lambda (c) (cons (symbol-name c) c)) (coding-system-list)) (mapcar (lambda (c) (cons (symbol-name (car c)) c)) w3m-charset-coding-system-alist)) nil t))) (if (string= "" charset) default charset))) ;;; Handling encoding of contents: (defun w3m-decode-encoded-contents (encoding) "Decode encoded contents in the current buffer. Return t if successful. This function supports the encoding types gzip, bzip, and deflate." (let ((x (and (stringp encoding) (assoc (downcase encoding) w3m-encoding-alist)))) (if (and (eq (cdr x) 'gzip) (fboundp 'zlib-available-p) (zlib-available-p)) (zlib-decompress-region (point-min) (point-max)) (or (not (and x (setq x (cdr (assq (cdr x) w3m-decoder-alist))))) (let ((coding-system-for-write 'binary) (coding-system-for-read 'binary) (default-process-coding-system (cons 'binary 'binary))) (w3m-process-with-environment w3m-command-environment (zerop (apply 'call-process-region (point-min) (point-max) (w3m-which-command (car x)) t '(t nil) nil (cadr x))))))))) (defmacro w3m-correct-charset (charset) `(or (and ,charset (stringp ,charset) (cdr (assoc (downcase ,charset) w3m-correct-charset-alist))) ,charset)) (defun w3m-detect-meta-charset () (let ((case-fold-search t)) (goto-char (point-min)) (catch 'found (while (re-search-forward "\\(" nil t) (delete-region beg (point)))))) (defun w3m-remove-invisible-image-alt () "Remove alt=\"whitespace\" attributes in img tags. Such attributes not only obscure them but also might make images not be displayed especially in shimbun articles." (goto-char (point-min)) (let ((case-fold-search t) start end) (while (and (re-search-forward "\\(" nil t)) (progn (setq end (match-beginning 0)) (goto-char start) (re-search-forward "[\t\n\f\r ]+alt=\"[\t\n\f\r ]*\"" end t))) (delete-region (match-beginning 0) (match-end 0))))) (defun w3m-check-header-tags () "Process header tags (,) in the current buffer." (let ((case-fold-search t) tag) (goto-char (point-min)) (when (re-search-forward "]*\\)?>" nil t) (save-restriction (narrow-to-region (point-min) (point)) (goto-char (point-min)) (while (re-search-forward "<\\(link\\|base\\)[ \t\r\f\n]+" nil t) (setq tag (downcase (match-string 1))) (cond ((string= tag "link") (w3m-parse-attributes ((rel :case-ignore) href type) (when rel (setq rel (split-string rel)) (cond ((member "icon" rel) (setq w3m-icon-data (cons href type))) ((member "next" rel) (setq w3m-next-url href)) ((or (member "prev" rel) (member "previous" rel)) (setq w3m-previous-url href)) ((member "start" rel) (setq w3m-start-url href)) ((member "contents" rel) (setq w3m-contents-url href)))))) ;; ought to be absolute but if not then absolutize for ;; w3m-current-base-url. Helps bad seen ;; from from archive.org circa 2015. ((string= tag "base") (w3m-parse-attributes (href) (when (< 0 (length href)) (setq w3m-current-base-url (w3m-expand-url href))))))))))) (defun w3m-check-refresh-attribute () "Get REFRESH attribute in META tags." (setq w3m-current-refresh nil) (when w3m-use-refresh (let ((case-fold-search t) (refurl w3m-current-url) sec) (goto-char (point-min)) (catch 'found (while (re-search-forward "... within ... with ...
.
is a block element that should not appear within inline elements like , however some web sites, e.g., news.google.com.tw, do so and w3m regards it as an incomplete tag that is not closed." (let ((case-fold-search t)) (goto-char (point-min)) (while (re-search-forward "]" nil t) (when (w3m-end-of-tag "div") (replace-match (concat "") t t) (goto-char (match-beginning 0)))) (goto-char (point-max)))))) (defun w3m-rendering-extract-title () "Extract the title from the halfdump and put it into the current buffer." (goto-char (point-min)) (or (when (re-search-forward "" nil t) (prog1 (w3m-decode-entities-string (mapconcat 'identity (save-match-data (split-string (match-string 1))) " ")) (delete-region (match-beginning 0) (match-end 0)))) (when (and (stringp w3m-current-url) (string-match "/\\([^/]+\\)/?\\'" w3m-current-url)) (match-string 1 w3m-current-url)) "")) (defun w3m-set-display-ins-del () (when (eq w3m-display-ins-del 'auto) (with-temp-buffer (let* ((coding-system-for-read w3m-output-coding-system) (coding-system-for-write (if (eq 'binary w3m-input-coding-system) w3m-current-coding-system w3m-input-coding-system)) (default-process-coding-system (cons coding-system-for-read coding-system-for-write)) (env (copy-sequence w3m-command-environment)) type) (setq w3m-display-ins-del nil) (w3m-process-with-environment (cons '("LANG" . "C") (delq (assoc "LANG" env) env)) (call-process (or w3m-halfdump-command w3m-command) nil t nil "-o") (goto-char (point-min)) (when (re-search-forward "display_ins_del=<\\([^>]+\\)>" nil t) (setq type (match-string 1)) (cond ((string= type "number") (setq w3m-display-ins-del 'fontify)) ((string= type "bool") (setq w3m-display-ins-del 'tag))))))))) (defun w3m-rendering-half-dump (charset) ;; `charset' is used by `w3m-w3m-expand-arguments' to generate ;; arguments for w3mmee and w3m-m17n from `w3m-halfdump-command-arguments'. (w3m-set-display-ins-del) (let* ((coding-system-for-read w3m-output-coding-system) (coding-system-for-write (if (eq 'binary w3m-input-coding-system) w3m-current-coding-system w3m-input-coding-system)) (default-process-coding-system (cons coding-system-for-read coding-system-for-write))) (w3m-process-with-environment w3m-command-environment (apply 'call-process-region (point-min) (point-max) (or w3m-halfdump-command w3m-command) t t nil (w3m-w3m-expand-arguments (append w3m-halfdump-command-arguments w3m-halfdump-command-common-arguments ;; Image size conscious rendering (when (member "image" w3m-compile-options) (if (and w3m-treat-image-size (or (w3m-display-graphic-p) (and w3m-pixels-per-line w3m-pixels-per-character))) (list "-o" "display_image=on" "-ppl" (number-to-string (or w3m-pixels-per-line (w3m-static-if (featurep 'xemacs) (font-height (face-font 'default)) (frame-char-height)))) "-ppc" (number-to-string (or w3m-pixels-per-character (w3m-static-if (featurep 'xemacs) (font-width (face-font 'default)) (frame-char-width))))) (list "-o" "display_image=off"))))))))) (defun w3m-markup-urls-nobreak () "Make things that look like urls unbreakable. This function prevents non-link long urls from being broken (w3m tries to fold them). Things in textarea won't be modified." (let ((case-fold-search t) (beg (point-min)) (regexp (eval-when-compile ;; A copy of `gnus-button-url-regexp'. (concat "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|" "nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)" "\\(//[-a-z0-9_.]+:[0-9]*\\)?" (if (string-match "[[:digit:]]" "1") ;; Support POSIX? (let ((chars "-a-z0-9_=#$@~%&*+\\/[:word:]") (punct "!?:;.,")) (concat "\\(?:" ;; Match paired parentheses, e.g. in Wikipedia URLs: ;; "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "\\(?:" "[" chars punct "]+" "[" chars "]" "\\)?" "\\|" "[" chars punct "]+" "[" chars "]" "\\)")) (concat ;; XEmacs 21.4 doesn't support POSIX. "\\([-a-z0-9_=!?#$@~%&*+\\/:;.,]\\|\\w\\)+" "\\([-a-z0-9_=#$@~%&*+\\/]\\|\\w\\)")) "\\)"))) (nd (make-marker)) st) (goto-char beg) (while beg (save-restriction (narrow-to-region beg (if (re-search-forward "[\t\n ]*\\(" nil t) (match-beginning 1)) (goto-char nd) (goto-char st) (skip-chars-backward "\t\f ") (if (string-match "<" (buffer-substring (max (- (point) 4) (point-min)) (point))) (forward-char -4) (goto-char st)) (insert "") (goto-char nd) (when (looking-at "[\t\f ]*>") (goto-char (match-end 0))) (insert ""))) (goto-char (point-max))) (setq beg (and (not (eobp)) (progn (goto-char beg) (w3m-end-of-tag "textarea"))))) (set-marker nd nil))) (defun w3m-rendering-buffer (&optional charset) "Do rendering of contents in the currenr buffer as HTML and return title." (w3m-message "Rendering...") (w3m-remove-comments) (w3m-remove-invisible-image-alt) (w3m-check-header-tags) (w3m-check-refresh-attribute) (unless (eq w3m-type 'w3m-m17n) (w3m-remove-meta-charset-tags)) (w3m-fix-illegal-blocks) (w3m-markup-urls-nobreak) (w3m-rendering-half-dump charset) (w3m-message "Rendering...done") (w3m-rendering-extract-title)) (defun w3m-retrieve-and-render (url &optional no-cache charset post-data referer handler) "Retrieve contents of URL and render them in the current buffer. It returns a `w3m-process' object and comes to an end immediately. The HANDLER function will be called when rendering is complete. When a new content is retrieved in the buffer, the HANDLER function will be called with t as an argument. Otherwise, it will be called with nil." (when (and w3m-clear-display-while-reading (get-buffer-window (current-buffer) 'visible) (not (string-match "\\`about:" url))) ;; Clear the current display while reading a new page. (set-window-hscroll nil 0) (let ((inhibit-read-only t)) (erase-buffer) (insert-char ?\n (/ (window-height) 2)) (insert-char ? (max 0 (/ (- (window-width) (length url) 11) 2))) (insert "Reading " url "...") (sit-for 0))) (unless (and w3m-current-ssl w3m-confirm-leaving-secure-page ;; Permit leaving safe pages without confirmation for ;; several safe commands. For more detail of ;; definition of safe commands, see the thread ;; beginning at [emacs-w3m:09767]. (not (or (memq this-command '(w3m w3m-goto-url w3m-redisplay-this-page w3m-reload-this-page w3m-history w3m-view-next-page w3m-view-previous-page w3m-view-header w3m-view-source)) (string-match "\\`\\(?:ht\\|f\\)tps://" url) (prog1 (y-or-n-p "You are leaving secure page. Continue? ") (message nil))))) (lexical-let ((url (w3m-url-strip-fragment url)) (charset charset) (page-buffer (current-buffer)) (arrival-time (current-time)) (silent w3m-message-silent)) (w3m-process-do-with-temp-buffer (type (progn (w3m-clear-local-variables) (w3m-retrieve url nil no-cache post-data referer handler))) (when w3m-onload-url (setq url w3m-onload-url w3m-onload-url nil)) (let ((w3m-message-silent silent)) (when (buffer-live-p page-buffer) (setq url (w3m-url-strip-authinfo url)) (if type (if (string= type "X-w3m-error/redirection") (when (w3m-show-redirection-error-information url page-buffer) (w3m-arrived-add url nil (current-time) (current-time)) (w3m-message "Cannot retrieve URL: %s" url)) (let ((modified-time (w3m-last-modified url))) (w3m-arrived-add url nil modified-time arrival-time) (unless modified-time (setf (w3m-arrived-last-modified url) nil)) (let ((real (w3m-real-url url))) (unless (string= url real) (w3m-arrived-add url nil nil arrival-time) (setf (w3m-arrived-title real) (w3m-arrived-title url)) (setf (w3m-arrived-last-modified real) (w3m-arrived-last-modified url)) (setq url real))) (prog1 (w3m-create-page url (or (w3m-arrived-content-type url) type) (or charset (w3m-arrived-content-charset url) (w3m-content-charset url)) page-buffer) (w3m-force-window-update-later page-buffer 1e-9) (unless (get-buffer-window page-buffer) (w3m-message "The content (%s) has been retrieved in %s" url (buffer-name page-buffer)))))) (when (and w3m-clear-display-while-reading (string-match "\\`file:" url)) (with-current-buffer page-buffer (let ((inhibit-read-only t)) (when (ignore-errors (require 'zone)) (sit-for 0.5) (zone-call 'zone-pgm-dissolve 1)) (erase-buffer) (insert-char ?\n (/ (window-height) 2)) (insert-char ? (max 0 (/ (- (window-width) (length url) 15) 2))) (insert "Reading " url " ") (put-text-property (point) (progn (insert "failed!") (point)) 'face 'w3m-error) (setq w3m-current-url url w3m-current-title "Fail")))) (w3m-arrived-add url nil (current-time) (current-time)) (ding) (when (eq (car w3m-current-forms) t) (setq w3m-current-forms (cdr w3m-current-forms))) (prog1 (when (and w3m-show-error-information (not (or (w3m-url-local-p url) (string-match "\\`about:" url)))) (w3m-show-error-information url charset page-buffer)) (with-current-buffer page-buffer (w3m-message "Cannot retrieve URL: %s%s" url (cond ((and w3m-process-exit-status (not (equal w3m-process-exit-status 0))) (format " (exit status: %s)" w3m-process-exit-status)) (w3m-http-status (format " (http status: %s)" w3m-http-status)) (t "")))))))))))) (defun w3m-show-error-information (url charset page-buffer) "Create and prepare the error information." (let ((case-fold-search t) (header (w3m-cache-request-header url)) exit-status http-status errmsg) (with-current-buffer page-buffer (setq exit-status w3m-process-exit-status http-status w3m-http-status)) (setq errmsg (concat "

Cannot retrieve URL: " url "

\n" (cond ((and exit-status (not (equal exit-status 0))) (format "

%s exits with the code %s

\n" w3m-command exit-status)) (http-status (format "

%s %s

\n" http-status (or (cdr (assq http-status w3m-http-status-alist)) "")))))) (if (or (null header) (string-match "\\`w3m: Can't load " header)) (progn (insert errmsg) (unless http-status (insert "\

Something seems to be wrong with URL or this system.\n") (when (string-match "\\`news:" url) (insert "\
Also verify the value of the NNTPSERVER environment variable\ that should be the address of the NNTP server.\n"))) (save-restriction (narrow-to-region (point) (point)) (when (w3m-cache-request-contents url) (w3m-decode-encoded-contents (setq charset (w3m-content-encoding url))) (goto-char (point-min)) (insert "



\n

Contents


\n")))) (goto-char (point-min)) (or (search-forward "" nil t) (search-forward "" nil t)) (unless (bolp) (insert "\n")) (insert errmsg) (save-restriction (narrow-to-region (point) (point)) (when (w3m-cache-request-contents url) (w3m-decode-encoded-contents (setq charset (w3m-content-encoding url))) (goto-char (point-min)) (insert "



\n") (goto-char (point-max)))) (unless (eobp) (insert "



\n")) (when header (or (search-forward "" nil t) (search-forward "" nil 'max)) (unless (bolp) (insert "\n")) (insert "




Header information


\n
"
		header "
\n")))) (w3m-create-page url "text/html" charset page-buffer) nil) (defun w3m-show-redirection-error-information (url page-buffer) (erase-buffer) (insert (format "\n

Cannot retrieve URL: %s



%s" (format "%s" url url) "\ The number of redirections has exceeded a limit. This may have
\n happened due to the server side miss-configuration. Otherwise,
\n try increasing the limit, the value of `w3m-follow-redirection'.
\n")) (w3m-create-page url "text/html" "us-ascii" page-buffer)) (defun w3m-prepare-content (url type charset) "Prepare contents in the current buffer according to TYPE. URL is assumed to be a place where the contents come from. CHARSET is passed to the filter function corresponding to TYPE if it is specified in the `w3m-content-type-alist' variable." (let ((filter (nth 3 (assoc type w3m-content-type-alist)))) (cond ; Filter function is specified. ((functionp filter) (funcall filter url type charset)) ; Equivalent type is specified. ((stringp filter) filter) ; No filter is specified. ((not filter) type) ; Failed. (t "")))) (defun w3m-prepare-markdown-content (url type charset) (if w3m-markdown-converter (let ((coding-system-for-read 'utf-8) (coding-system-for-write 'utf-8)) (w3m-decode-buffer url charset type) (apply (function call-process-region) (point-min) (point-max) (car w3m-markdown-converter) t '(t nil) nil (cdr w3m-markdown-converter)) "text/html") "text/plain")) (defun w3m-detect-xml-type (url type charset) "Check if the type of xml contents of URL is xhtml+xml. If so return \"text/html\", otherwise \"text/plain\"." (with-temp-buffer (w3m-retrieve url) (w3m-decode-buffer url charset type) (goto-char (point-min)) (setq case-fold-search t) (if (re-search-forward "<[\t\n ]*html\\(?:\\(?:[\t\n ]+[^>]+\\)?>\\|[\t\n ]*>\\)" nil t) "text/html" "text/plain"))) (defun w3m-create-text-page (url type charset page-buffer) (w3m-safe-decode-buffer url charset type) (setq w3m-current-url (if (w3m-arrived-p url) (w3m-real-url url) url) w3m-current-title (if (string= "text/html" type) (let ((title (w3m-rendering-buffer charset))) (setf (w3m-arrived-title url) title) title) (or (when (string-match "\\`about://\\(?:source\\|header\\)/" url) (w3m-arrived-title (substring url (match-end 0)))) (file-name-nondirectory (if (string-match "/\\'" url) (directory-file-name url) url))))) (let ((result-buffer (current-buffer))) (with-current-buffer page-buffer (let ((inhibit-read-only t)) (widen) (delete-region (point-min) (point-max)) (insert-buffer-substring result-buffer) (goto-char (point-min)) (w3m-copy-local-variables result-buffer) (set-buffer-file-coding-system w3m-current-coding-system) (when (string= "text/html" type) (w3m-fontify)) 'text-page)))) (defsubst w3m-image-page-displayed-p () (and (fboundp 'image-mode-setup-winprops) w3m-current-url (string-match "\\`image/" (w3m-content-type w3m-current-url)) (eq (get-text-property (point-min) 'w3m-image-status) 'on))) (defun w3m-create-image-page (url type charset page-buffer) (when (w3m-image-type-available-p (w3m-image-type type)) (with-current-buffer page-buffer (let ((inhibit-read-only t)) (w3m-clear-local-variables) (setq w3m-current-url (w3m-real-url url) w3m-current-title (file-name-nondirectory url)) (widen) (delete-region (point-min) (point-max)) (insert w3m-current-title) (w3m-add-face-property (point-min) (point-max) 'w3m-image) (w3m-add-text-properties (point-min) (point-max) (list 'w3m-image url 'mouse-face 'highlight)) (when (fboundp 'image-mode-setup-winprops) (image-mode-setup-winprops)) 'image-page)))) (defun w3m-create-page (url type charset page-buffer) ;; Select a content type. (unless (and (stringp type) (assoc type w3m-content-type-alist)) (let ((cur (current-buffer)) (mb enable-multibyte-characters) dots cont) (with-temp-buffer (rename-buffer " *Raw Contents*" t) (set-buffer-multibyte mb) (save-window-excursion (pop-to-buffer (current-buffer)) (delete-other-windows) (ding) ;; Display the raw contents briefly. (sit-for 0) (setq truncate-lines t dots (make-string (/ (- (window-width) 6) 2) ?.)) (with-current-buffer cur (cond ((< (count-lines (point-min) (point-max)) (window-height)) (setq cont (buffer-string))) ((< (window-height) 10) (goto-char (point-min)) (forward-line (max 0 (- (window-height) 2))) (setq cont (concat (buffer-substring (point-min) (point)) "\n[" dots "snip" dots "]"))) (t (goto-char (point-min)) (forward-line (/ (- (window-height) 4) 2)) (setq cont (concat (buffer-substring (point-min) (point)) "\n[" dots "snip" dots "]\n\n")) (goto-char (point-max)) (forward-line (/ (- 4 (window-height)) 2)) (setq cont (concat cont (buffer-substring (point) (point-max))))))) (insert cont) (goto-char (point-min)) (setq type (condition-case nil (completing-read (format "Content type for %s (%s): " (file-name-nondirectory url) (if (zerop (length type)) "default download or external-view" (concat "`" type "' is unknown;\ default download or external-view"))) (cons "Download_or_External-view" w3m-content-type-alist) nil t) ;; The user forced terminating the session with C-g. (quit (w3m-process-stop page-buffer) ;; Needless? (with-current-buffer page-buffer (setq w3m-current-process nil)) (keyboard-quit)))) (unless (member type '("" "Download_or_External-view")) (setf (w3m-arrived-content-type url) type)))))) (setq w3m-current-coding-system nil) ; Reset decoding status of this buffer. (setq type (w3m-prepare-content url type charset)) (w3m-safe-decode-buffer url charset type) (setq charset (or charset w3m-current-content-charset)) (when w3m-use-filter (w3m-filter url)) (w3m-relationship-estimate url) ;; Create pages. (cond ((string-match "\\`text/" type) (w3m-create-text-page url type charset page-buffer)) ((and (w3m-display-graphic-p) (string-match "\\`image/" type)) (w3m-create-image-page url type charset page-buffer)) ((and (w3m-display-graphic-p) (member type w3m-doc-view-content-types)) (with-current-buffer page-buffer (setq w3m-current-url (if (w3m-arrived-p url) (w3m-real-url url) url))) (w3m-doc-view url)) (t (with-current-buffer page-buffer (setq w3m-current-url (if (w3m-arrived-p url) (w3m-real-url url) url) w3m-current-title (file-name-nondirectory w3m-current-url)) (let ((inhibit-read-only t)) (erase-buffer) (insert (format "This display does not support %s:\n<%s>" (if (string-match "\\`image/" type) "image" type) url)) (center-region (point-min) (point)) (goto-char (point-min)) (insert-char ?\n (/ (- (window-height) 3) 2))) (goto-char (point-min)) (w3m-external-view url) 'external-view)))) (defun w3m-relationship-estimate (url) "Estimate relationships between a page and others." (save-excursion (save-match-data (catch 'estimated (dolist (rule w3m-relationship-estimate-rules) (when (apply (car rule) url (cdr rule)) (throw 'estimated t))))))) (defun w3m-relationship-simple-estimate (url regexp &optional next previous start contents) "Search relationships with given patterns when the URL of the retrieved page matches the REGEXP." (when (string-match regexp url) (w3m-relationship-search-patterns url next previous start contents))) (defun w3m-relationship-magicpoint-estimate (url) "Search relationships for pages generated by MagicPoint." (goto-char (point-max)) (when (search-backward "Generated by MagicPoint" nil t) (goto-char (point-min)) (w3m-relationship-search-patterns url (eval-when-compile (concat "\\[next>\\]")) (eval-when-compile (concat "\\[<prev\\]")) (eval-when-compile (concat "\\[<<start\\]")) (eval-when-compile (concat "\\[index\\]"))))) (defun w3m-relationship-oddmuse-estimate (url) (when (string-match "/wiki\\?search=.*" url) (goto-char (point-min)) (and (re-search-forward "href=\"\\([^\"]+\\)\">Previous" nil t) (setq w3m-previous-url (match-string 1))) (and (re-search-forward "href=\"\\([^\"]+\\)\">Next" nil t) (setq w3m-next-url (match-string 1))))) (defun w3m-relationship-slashdot-estimate (url) (goto-char (point-min)) (when (and (string-match "slashdot\\.org/\\(article\\|comments\\)\\.pl\\?" url) (search-forward "
" nil t)) (let ((min (point)) (max (save-excursion (search-forward "
" nil t)))) ;; move to the position of the current page indicator and then search ;; for the next and previous link within the current
(when (and max (re-search-forward "\\(([0-9]+)\\)" max t)) (let ((re (concat ""))) (when (save-excursion (re-search-backward re min t)) (setq w3m-previous-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1)))))) (when (re-search-forward re max t) (setq w3m-next-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1))))))))))) (defun w3m-relationship-alc-estimate (url) ;; use filter (when (string-match "\\`http://eow\\.alc\\.co\\.jp/[^/]+/UTF-8/" url) (when (re-search-forward (concat "$BA0$X(B") nil t) (setq w3m-previous-url (w3m-expand-url (match-string 1) url))) (when (re-search-forward (concat "$B") nil t) (setq w3m-next-url (w3m-expand-url (match-string 1) url))) (unless (or w3m-previous-url w3m-next-url) ;; no use filter (goto-char (point-min)) (when (re-search-forward "$BA0$X(B" nil t) (setq w3m-previous-url (w3m-expand-url (format "?pg=%s" (match-string 1)) url))) (when (re-search-forward "$B" nil t) (setq w3m-next-url (w3m-expand-url (format "?pg=%s" (match-string 1)) url)))))) (defun w3m-relationship-search-patterns (url next previous &optional start contents) "Search relationships with given patterns." (goto-char (point-min)) (and next (re-search-forward next nil t) (setq w3m-next-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1))) url)) (goto-char (point-min))) (and previous (re-search-forward previous nil t) (setq w3m-previous-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1))) url)) (goto-char (point-min))) (and start (re-search-forward start nil t) (setq w3m-start-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1))) url)) (goto-char (point-min))) (and contents (re-search-forward contents nil t) (setq w3m-contents-url (w3m-expand-url (w3m-decode-anchor-string (or (match-string 2) (match-string 3) (match-string 1))) url)))) (defun w3m-search-name-anchor (name &optional quiet no-record) (interactive "sName: ") (let ((pos (point-min)) (cur-pos (point)) oname found) (catch 'found (while (not found) (while (setq pos (next-single-property-change pos 'w3m-name-anchor)) (when (member name (get-text-property pos 'w3m-name-anchor)) (goto-char pos) (when (eolp) (forward-line)) (w3m-horizontal-on-screen) (throw 'found (setq found t)))) (setq pos (point-min)) (while (setq pos (next-single-property-change pos 'w3m-name-anchor2)) (when (member name (get-text-property pos 'w3m-name-anchor2)) (goto-char pos) (when (eolp) (forward-line)) (w3m-horizontal-on-screen) (throw 'found (setq found t)))) (if oname (progn (unless quiet (message "No such anchor: %s" oname)) (throw 'found nil)) (setq pos (point-min) oname name name (w3m-url-decode-string name))))) (when (and found (not no-record) (/= (point) cur-pos)) (setq w3m-name-anchor-from-hist (append (list 1 nil (point) cur-pos) (and (integerp (car w3m-name-anchor-from-hist)) (nthcdr (1+ (car w3m-name-anchor-from-hist)) w3m-name-anchor-from-hist))))) (when found (w3m-recenter)) found)) (defun w3m-parent-page-available-p () (if (null w3m-current-url) nil (save-match-data (string-match "\\`[a-z]+://?[^/]+/." w3m-current-url)))) (defun w3m-url-savable-p () "Return non-nil if the current page is able to be saved." (and w3m-current-url (or (not (string-match "\\`\\(?:about\\|file\\):" w3m-current-url)) (string-match "\\`about://\\(?:header\\|source\\)/" w3m-current-url)))) (defun w3m-view-parent-page (&optional count) "Attempt to move to the parent directory of the page currently displayed. For instance, it will let you visit \"http://foo/bar/\" if you are currently viewing \"http://foo/bar/baz\". If COUNT is a integer, you will visit the parent directory to step up the COUNT. If COUNT is zero, you will visit the top of this site." (interactive "p") (unless (integerp count) (setq count 1)) (setq count (abs count)) (w3m-history-store-position) (cond ((and w3m-current-url (eq count 0) (string-match "\\`[a-z]+:///?[^/]+/" w3m-current-url)) (w3m-goto-url (match-string 0 w3m-current-url))) (w3m-start-url (w3m-goto-url w3m-start-url)) (w3m-contents-url (w3m-goto-url w3m-contents-url)) (w3m-current-url (let ((parent-url w3m-current-url)) (catch 'loop (while (not (zerop count)) (setq count (1- count)) ;; Check whether http://foo/bar/ or http://foo/bar (if (string-match "/$" parent-url) (if (string-match "\\(.*\\)/[^/]+/$" parent-url) ;; http://foo/bar/ -> http://foo/ (setq parent-url (concat (match-string 1 parent-url) "/"))) (if (string-match "\\(.*\\)/.+$" parent-url) ;; http://foo/bar -> http://foo/ (setq parent-url (concat (match-string 1 parent-url) "/")))) ;; Ignore "http:/" (cond ((string-match "\\`[a-z]+:///?[^/]+/\\'" parent-url) (throw 'loop t)) ((and parent-url (string-match "\\`[a-z]+:/+\\'" parent-url)) (setq parent-url nil) (throw 'loop nil))))) (if parent-url (w3m-goto-url parent-url) (error "No parent page for: %s" w3m-current-url)))) (t (error "w3m-current-url is not set")))) (defun w3m-view-previous-page (&optional count) "Move back COUNT pages in the history. If COUNT is a positive integer, move backward COUNT times in the history. If COUNT is a negative integer, moving forward is performed. COUNT is treated as 1 by default if it is omitted." (interactive "p") (unless w3m-current-url ;; This page may have not been registered in the history since an ;; accident has probably occurred, so we should skip the page. (if (integerp count) (when (> count 0) (decf count)) (setq count 0))) (let ((index (car w3m-name-anchor-from-hist)) pos) (if (and (integerp count) (integerp index) (< 0 (setq index (+ index count))) (setq pos (nth index w3m-name-anchor-from-hist))) (progn (when (and (= (point) pos) (nth (1+ index) w3m-name-anchor-from-hist)) (setq index (1+ index))) (goto-char (nth index w3m-name-anchor-from-hist)) (setcar w3m-name-anchor-from-hist index) ;; Restore last position. (w3m-history-restore-position)) (let ((hist ;; Cons of a new history element and position pointers. (if (integerp count) (w3m-history-backward count) (w3m-history-backward))) ;; Inhibit sprouting of a new history. (w3m-history-reuse-history-elements t)) (if (caar hist) (let ((w3m-prefer-cache t)) ;; Save last position. (w3m-history-store-position) (w3m-goto-url (caar hist) nil nil (w3m-history-plist-get :post-data) (w3m-history-plist-get :referer) nil (w3m-history-element (caddr hist) t)) ;; Set the position pointers in the history. (setcar w3m-history (cdr hist)) ;; Restore last position. (w3m-history-restore-position)) (if (and (equal w3m-current-url "about://cookie/") (> (length (w3m-list-buffers t)) 1)) (w3m-delete-buffer) (message "There's no more history"))))))) (defun w3m-view-next-page (&optional count) "Move forward COUNT pages in history. If COUNT is a positive integer, move forward COUNT times in the history. If COUNT is a negative integer, moving backward is performed. COUNT is treated as 1 by default if it is omitted." (interactive "p") (w3m-view-previous-page (if (integerp count) (- count) -1))) (defun w3m-expand-path-name (file base) (let ((input (if (eq (elt file 0) ?/) file (concat base file))) (output "")) (save-match-data (while (string-match "^\\(?:\\.\\.?/\\)+" input) (setq input (substring input (match-end 0)))) (while (not (zerop (length input))) (cond ((string-match "^/\\.\\(?:/\\|$\\)" input) (setq input (concat "/" (substring input (match-end 0))))) ((string-match "^/\\.\\.\\(?:/\\|$\\)" input) (setq input (concat "/" (substring input (match-end 0)))) (when (string-match "/?[^/]+$" output) (setq output (substring output 0 (match-beginning 0))))) ((string-match "^\\.\\.?$" input) (setq input "")) (t (let ((end (and (string-match "^/[^/]*" input) (match-end 0)))) (setq output (concat output (substring input 0 end))) (setq input (substring input end)))))) output))) (defconst w3m-url-hierarchical-schemes '("http" "https" "ftp" "ftps" "file") "List of schemes which may have hierarchical parts. This list is refered to by `w3m-expand-url' to keep backward compatibility which is described in Section 5.2 of RFC 2396.") (defconst w3m-buffer-local-url "buffer://") (defun w3m-buffer-local-url-p (url) (save-match-data (string-match (concat "^" w3m-buffer-local-url) url))) (defun w3m-expand-url (url &optional base) "Convert URL to the absolute address, and canonicalize it." (save-match-data (if base (if (progn (w3m-string-match-url-components base) (match-beginning 1)) (and (not (match-beginning 3)) (member (downcase (match-string 2 base)) w3m-url-hierarchical-schemes) (setq base (concat (substring base 0 (match-end 1)) "//" (substring base (match-beginning 5))))) (error "BASE must have a scheme part: %s" base)) (setq base (or w3m-current-base-url w3m-current-url ;; Make url absolutely invalid. See `w3m-url-valid'. w3m-url-invalid-base))) (w3m-string-match-url-components url) ;; Remove an empty fragment part. (when (and (match-beginning 8) (= (match-beginning 9) (length url))) (setq url (substring url 0 (match-beginning 8))) (w3m-string-match-url-components url)) ;; Remove an empty query part. (when (and (match-beginning 6) (= (match-beginning 7) (or (match-beginning 8) (length url)))) (setq url (concat (substring url 0 (match-beginning 6)) (if (match-beginning 8) (substring url (match-beginning 8)) "")) base (progn (w3m-string-match-url-components base) (substring base 0 (match-beginning 6)))) (w3m-string-match-url-components url)) (cond ((match-beginning 1) ;; URL has a scheme part. => URL may have an absolute spec. (if (or (match-beginning 3) (and (< (match-beginning 5) (length url)) (eq ?/ (aref url (match-beginning 5))))) ;; URL has a net-location part or an absolute hierarchical ;; part. => URL has an absolute spec. url (let ((scheme (match-string 2 url))) (if (and (member (downcase scheme) w3m-url-hierarchical-schemes) (progn (w3m-string-match-url-components base) (equal scheme (match-string 2 base)))) (w3m-expand-url (substring url (match-end 1)) base) url)))) ((match-beginning 3) ;; URL has a net-location part. => The hierarchical part of URL ;; has an absolute spec. (w3m-string-match-url-components base) (concat (substring base 0 (match-end 1)) url)) ((> (match-end 5) (match-beginning 5)) (let ((path-end (match-end 5))) (if (string-equal base w3m-buffer-local-url) (if (eq (aref url 0) ?#) (concat base url) ;; Assume url omits the scheme, that is http. (concat "http://" url)) (w3m-string-match-url-components base) (concat (substring base 0 (match-beginning 5)) (if (and (match-beginning 2) (member (downcase (match-string 2 base)) w3m-url-hierarchical-schemes)) (w3m-expand-path-name (substring url 0 path-end) (or ;; Avoid file name handlers; cf. ;; (let (file-name-handler-alist) (file-name-directory (match-string 5 base))) "/")) (substring url 0 path-end)) (substring url path-end))))) ((match-beginning 6) ;; URL has a query part. (w3m-string-match-url-components base) (concat (substring base 0 (match-end 5)) url)) (t ;; URL has only a fragment part. (w3m-string-match-url-components base) (concat (substring base 0 (match-beginning 8)) url))))) (defun w3m-display-progress-message (url) "Show \"Reading URL...\" message in the middle of a buffer." (insert (make-string (max 0 (/ (1- (window-height)) 2)) ?\n) "Reading " (w3m-url-readable-string (w3m-url-strip-authinfo url)) "...") (beginning-of-line) (let ((fill-column (window-width))) (center-region (point) (point-max))) (goto-char (point-min)) (put-text-property (point) (point-max) 'w3m-progress-message t) (sit-for 0)) (defun w3m-view-this-url-1 (url reload new-session) (lexical-let ((url url) pos buffer) (if new-session (let ((empty ;; If a new url has the #name portion, we simply copy ;; the buffer's contents to the new session, otherwise ;; creating an empty buffer. (not (and (progn (w3m-string-match-url-components url) (match-beginning 8)) (string-equal w3m-current-url (substring url 0 (match-beginning 8))))))) (setq pos (point-marker) buffer (w3m-copy-buffer nil nil nil empty w3m-new-session-in-background t)) (when w3m-new-session-in-background (set-buffer buffer)) (when empty (w3m-display-progress-message url))) (setq buffer (current-buffer))) (let (handler) (w3m-process-do (success (w3m-goto-url url reload nil nil w3m-current-url handler nil w3m-new-session-in-background)) (set-window-hscroll (selected-window) 0) ;; Delete the newly created buffer if it's been made empty. (when (and pos (buffer-name buffer)) (w3m-delete-buffer-if-empty buffer)) (when pos ;; the new session is created. ;; FIXME: what we should actually do is to modify the `w3m-goto-url' ;; function so that it may return a proper value, and checking it. (when (and (marker-buffer pos) (buffer-name (marker-buffer pos))) (with-current-buffer (marker-buffer pos) (save-excursion (goto-char pos) (w3m-refontify-anchor))))) (w3m-recenter))))) (defun w3m-view-this-url (&optional arg new-session) "Display the page pointed to by the link under point. If ARG is the number 2 or the list of the number 16 (you may produce this by typing `C-u' twice) or NEW-SESSION is non-nil and the link is an anchor, this function makes a copy of the current buffer in advance. Otherwise, if ARG is non-nil, it forces to reload the url at point." (interactive (if (member current-prefix-arg '(2 (16))) (list nil t) (list current-prefix-arg nil))) ;; Store the current position in the history structure. (w3m-history-store-position) (let ((w3m-prefer-cache (or w3m-prefer-cache (and (stringp w3m-current-url) (string-match "\\`about://\\(?:db-\\)?history/" w3m-current-url)))) act url) (cond ((setq act (w3m-action)) (let ((w3m-form-new-session new-session) (w3m-form-download nil)) (eval act))) ((setq url (w3m-url-valid (w3m-anchor))) (w3m-view-this-url-1 url arg new-session)) ((w3m-url-valid (w3m-image)) (if (w3m-display-graphic-p) (w3m-toggle-inline-image) (w3m-view-image))) ((setq url (w3m-active-region-or-url-at-point 'never)) (unless (eq 'quit (setq url (w3m-input-url nil url 'quit nil 'feeling-searchy 'no-initial))) (w3m-view-this-url-1 url arg new-session))) (t (w3m-message "No URL at point"))))) (eval-and-compile (autoload 'mouse-set-point "mouse")) (defun w3m-mouse-view-this-url (event &optional arg) "Follow the link under the mouse pointer." (interactive "e\nP") (mouse-set-point event) (w3m-view-this-url arg)) (defun w3m-open-all-links-in-new-session (start end &optional arg) "Open all http links between START and END as new sessions. If the page looks like Google's search result and the START point is the beginning of a line, only the links displayed in the beginning of lines are picked up. If ARG is non-nil, it forces to reload all links. If Transient Mark mode, deactivate the mark." (interactive "r\nP") (when (w3m-region-active-p) (w3m-deactivate-region)) (let ((buffer (current-buffer)) (prev start) (url (w3m-url-valid (w3m-anchor start))) urls all) (when url (setq urls (list url))) (save-excursion (goto-char start) (setq all (not (and (bolp) w3m-current-url (string-match "\\`https?://\\(?:[^/]+\\.\\)*google\\." w3m-current-url)))) (while (progn (w3m-next-anchor) (and (> (point) prev) (< (point) end))) (setq prev (point)) (when (and (setq url (w3m-url-valid (w3m-anchor))) (string-match "\\`https?:" url) (or all (bolp))) (push url urls)))) (setq urls (nreverse urls)) (while urls (setq url (car urls) urls (cdr urls)) (set-buffer buffer) (w3m-view-this-url-1 url arg t)))) (defun w3m-view-this-url-new-session () "Display the page of the link under point in a new session. If the region is active, use the `w3m-open-all-links-in-new-session' command instead." (interactive) (if (w3m-region-active-p) (call-interactively 'w3m-open-all-links-in-new-session) (w3m-view-this-url nil t))) (defun w3m-mouse-view-this-url-new-session (event) "Follow the link under the mouse pointer in a new session." (interactive "e") (mouse-set-point event) (w3m-view-this-url nil t)) (defun w3m-submit-form (&optional new-session) "Submit the form at point." (interactive "P") (let ((submit (w3m-submit))) (if (and submit w3m-current-url (w3m-url-valid w3m-current-url) (if w3m-submit-form-safety-check (prog1 (y-or-n-p "Submit? ") (message nil)) t)) (let ((w3m-form-new-session new-session) (w3m-form-download nil)) (eval submit)) (w3m-message "Can't submit form at this point")))) (defun w3m-external-view (url &optional no-cache handler) (when (w3m-url-valid url) (lexical-let ((url url) (no-cache no-cache)) (w3m-process-do (type (w3m-content-type url no-cache handler)) (when type (lexical-let ((method (or (nth 2 (assoc type w3m-content-type-alist)) (nth 2 (assoc (w3m-prepare-content url type nil) w3m-content-type-alist)))) (default (nth 2 (assoc "text/html" w3m-content-type-alist)))) (when (and (not method) default) (setq method default)) (cond ((not method) (if (w3m-url-local-p url) (error "\ No method to view `%s' is registered. Use `w3m-edit-this-url'" (file-name-nondirectory (w3m-url-to-file-name url))) (w3m-download url nil no-cache handler))) ((functionp method) (funcall method url)) ((consp method) (lexical-let ((command (w3m-which-command (car method))) (arguments (cdr method)) (file (make-temp-name (expand-file-name "w3mel" w3m-external-view-temp-directory))) suffix) (setq suffix (file-name-nondirectory url)) (when (string-match "\\.[a-zA-Z0-9]+" suffix) (setq suffix (match-string 0 suffix)) (when (< (length suffix) 5) (setq file (concat file suffix)))) (cond ((and command (memq 'file arguments)) (let ((w3m-current-buffer (current-buffer))) (w3m-process-do (success (w3m-download url file no-cache handler)) (when success (w3m-external-view-file command file url arguments))))) (command (w3m-external-view-file command nil url arguments)) (t (w3m-download url nil no-cache handler)))))))))))) (defun w3m-external-view-file (command file url arguments) ;; The 3rd argument `url' is necessary to handle the constant `url' ;; included in the 4th argument `arguments' which is provided by ;; `w3m-content-type-alist'. (lexical-let ((file file)) (let (proc) (unwind-protect (with-current-buffer (generate-new-buffer " *w3m-external-view*") (setq proc (apply 'start-process "w3m-external-view" (current-buffer) command (mapcar (function eval) arguments))) (w3m-message "Start %s..." (file-name-nondirectory command)) (set-process-sentinel proc (lambda (proc event) (let ((buffer (process-buffer proc))) (when (string-match "^\\(?:finished\\|exited\\)" event) ;; Some program lies that the process has been finished ;; even though it has not read the temp file yet, so ;; it is necessary to delay deleting of the file. (run-at-time 1 nil (lambda (file buffer) (when (file-exists-p file) (delete-file file)) (when (buffer-name buffer) (kill-buffer buffer)) (message "")) file buffer)))))) (and (stringp file) (file-exists-p file) (unless (and (processp proc) (memq (process-status proc) '(run stop))) (delete-file file))))))) (defun w3m-view-image () "Display the image under point in the external viewer. The viewer is defined in `w3m-content-type-alist' for every type of an image." (interactive) (let ((url (w3m-url-valid (w3m-image)))) (if url (w3m-external-view url) (w3m-message "No image at point")))) (defun w3m-save-image () "Save the image under point to a file. The default name will be the original name of the image." (interactive) (let ((url (w3m-url-valid (w3m-image)))) (if url (w3m-download url) (w3m-message "No image at point")))) (defun w3m-external-view-this-url () "Launch the external browser and display the link an point." ;; This command was listed in the menu bar and a link menu till ;; 2013-10-17. As someone may still need it, don't delete it even ;; if emacs-w3m no longer uses. (interactive) (let ((url (w3m-url-valid (or (w3m-anchor) (w3m-image))))) (if url (w3m-external-view url) (w3m-message "No URL at point")))) (defun w3m-external-view-current-url () "Launch the external browser and display the current URL." ;; This command was listed in the menu bar till 2013-10-17. ;; As someone may still need it, don't delete it even if emacs-w3m ;; no longer uses. (interactive) (if w3m-current-url (w3m-external-view w3m-current-url) (w3m-message "No URL at this page"))) (defun w3m-view-url-with-external-browser (&optional url) "Launch the external browser and display the same web page. If the cursor points to a link, it visits the url of the link instead of the url currently displayed. The browser is defined in `w3m-content-type-alist' for every type of a url." ;; This command bound the M key and was listed in the tab menu till ;; 2013-10-17. As someone may still need it, don't delete it even ;; if emacs-w3m no longer uses. (interactive (list (w3m-input-url "URL to view externally: " nil (or (w3m-anchor) (unless w3m-display-inline-images (w3m-image)) w3m-current-url) nil nil 'no-initial))) (when (w3m-url-valid url) (message "Browsing <%s>..." url) (w3m-external-view url))) (defun w3m-view-url-with-browse-url (url) "Run `browse-url' to open URL." (interactive (list (let ((w3m-display-inline-images t)) (w3m-active-region-or-url-at-point t)))) (if (and (stringp url) (not (string-match "\\`about:" url))) (progn (w3m-message "Browsing %s..." url) (browse-url url)) (w3m-message "No url at point"))) (defun w3m-download-this-url () "Download the file or the page pointed to by the link under point." (interactive) (let ((url (or (w3m-anchor) (w3m-image))) act) (cond ((w3m-url-valid url) (lexical-let ((pos (point-marker)) (curl w3m-current-url)) (w3m-process-with-null-handler (w3m-process-do (success (w3m-download url nil nil handler)) (and success (buffer-name (marker-buffer pos)) (with-current-buffer (marker-buffer pos) (when (equal curl w3m-current-url) (goto-char pos) (w3m-refontify-anchor)))))))) ((setq act (w3m-action)) (let ((w3m-form-download t)) (eval act))) (t (w3m-message "No URL at point"))))) (defun w3m-download-this-image () "Download the image under point." (interactive) (let ((url (w3m-image)) act) (cond ((w3m-url-valid url) (lexical-let ((pos (point-marker)) (curl w3m-current-url)) (w3m-process-with-null-handler (w3m-process-do (success (w3m-download url nil nil handler)) (and success (buffer-name (marker-buffer pos)) (with-current-buffer (marker-buffer pos) (when (equal curl w3m-current-url) (goto-char pos) (w3m-refontify-anchor)))))))) ((setq act (w3m-action)) (let ((w3m-form-download t)) (eval act))) (t (w3m-message "No image at point"))))) (defun w3m-print-current-url () "Display the current url in the echo area and put it into `kill-ring'." (interactive) (when w3m-current-url (let ((deactivate-mark nil)) (kill-new (w3m-url-encode-string-2 w3m-current-url)) (w3m-message "%s" (w3m-url-readable-string w3m-current-url))))) (defvar message-truncate-lines) (defun w3m-print-this-url (&optional interactive-p) "Display the url under point in the echo area and put it into `kill-ring'." (interactive (list t)) (let ((deactivate-mark nil) (url (if interactive-p (or (w3m-anchor) (w3m-image) (and (stringp w3m-current-url) (let ((name (or (car (get-text-property (point) 'w3m-name-anchor)) (car (get-text-property (point) 'w3m-name-anchor2))))) (when name (concat w3m-current-url "#" name))))) (or (w3m-anchor (point)) (w3m-image (point))))) (alt (if interactive-p (w3m-image-alt) (w3m-image-alt (point)))) (title (if interactive-p (w3m-anchor-title) (w3m-anchor-title (point))))) (when (or url interactive-p) (and url interactive-p (kill-new (w3m-url-encode-string-2 url))) (setq url (or (w3m-url-readable-string url) (and (w3m-action) "There is a form") "There is no url under point")) (w3m-message "%s" (cond ((> (length alt) 0) (concat alt ": " url)) ((> (length title) 0) ;; XEmacs21 doesn't have `message-truncate-lines' ;; and always truncates messages, so one line in ;; that case. (let ((str (concat title " (" url ")"))) (if (or (not (boundp 'message-truncate-lines)) message-truncate-lines (< (string-width str) (- (frame-width) 2))) ;; one line if fits or truncating str ;; or two lines if bigger than frame-width (concat title "\n" url)))) (t url)))))) (defun w3m-print-this-image-url (&optional interactive-p) "Display image url under point in echo area and put it into `kill-ring'." (interactive (list t)) (let ((deactivate-mark nil) (url (if interactive-p (w3m-image) (w3m-image (point)))) (alt (if interactive-p (w3m-image-alt) (w3m-image-alt (point))))) (when (or url interactive-p) (and url interactive-p (kill-new (w3m-url-encode-string-2 url))) (w3m-message "%s%s" (if (zerop (length alt)) "" (concat alt ": ")) (or (w3m-url-readable-string url) (and (w3m-action) "There is a form") "There is no image url under point"))))) (defmacro w3m-delete-all-overlays () "Delete all momentary overlays." '(dolist (overlay (overlays-in (point-min) (point-max))) (if (overlay-get overlay 'w3m-momentary-overlay) (delete-overlay overlay)))) (defun w3m-highlight-current-anchor-1 (seq) "Highlight an anchor in the line if the anchor sequence is the same as SEQ. Return t if highlighting is successful." (let ((limit (point-at-eol)) ov beg pos pseq) (save-excursion (beginning-of-line) (setq pos (point)) (while (and pos (< pos limit) (not (eq seq (setq pseq (w3m-anchor-sequence pos))))) (setq pos (next-single-property-change pos 'w3m-anchor-sequence))) (when (and pos (< pos limit) (eq seq pseq)) (setq beg pos) (setq pos (next-single-property-change pos 'w3m-anchor-sequence)) (setq ov (make-overlay beg pos)) (overlay-put ov 'face 'w3m-current-anchor) (overlay-put ov 'w3m-momentary-overlay t) (overlay-put ov 'evaporate t) t)))) (defun w3m-highlight-current-anchor () "Highlight an anchor under point." (when (let ((ovs (overlays-at (point))) ov) ;; If the anchor is already highlighted, it does nothing. (or (null ovs) (null (progn (while ovs (if (overlay-get (car ovs) 'w3m-momentary-overlay) (setq ov (car ovs) ovs nil)) (setq ovs (cdr ovs))) ov)))) (w3m-delete-all-overlays) (save-excursion (let ((seq (w3m-anchor-sequence)) (pos (point))) (when (and seq (w3m-highlight-current-anchor-1 seq) (zerop (forward-line 1))) (while (and (w3m-highlight-current-anchor-1 seq) (zerop (forward-line 1)))) (goto-char pos) (while (and (zerop (forward-line -1)) (w3m-highlight-current-anchor-1 seq)))))))) (defun w3m-edit-url (url) "Edit the source code of URL." (interactive (list (w3m-input-url))) (when (string-match "\\`about://\\(?:header\\|source\\)/" url) (setq url (substring url (match-end 0)))) (catch 'found (dolist (pair w3m-edit-function-alist) (when (and (string-match (car pair) url) (fboundp (cdr pair))) (throw 'found (funcall (cdr pair) url)))) (funcall w3m-edit-function (or (w3m-url-to-file-name url) (call-interactively 'w3m-save-buffer) (error "URL:%s is not a local file" url))))) (defun w3m-edit-current-url () "Edit the source code of the file that the current buffer is viewing." (interactive) (if w3m-current-url (w3m-edit-url w3m-current-url) (w3m-message "No URL"))) (defun w3m-edit-this-url () "Edit the source code of the file linked from the anchor at point." (interactive) (let ((url (w3m-url-valid (w3m-anchor)))) (if url (w3m-edit-url url) (w3m-message "No URL at point")))) (defvar w3m-goto-anchor-hist nil) (make-variable-buffer-local 'w3m-goto-anchor-hist) (defun w3m-goto-next-anchor () (let ((hseq (w3m-anchor-sequence)) (pos (next-single-property-change (point) 'w3m-anchor-sequence))) (if (or (not hseq) (< hseq 1)) (and pos (goto-char pos)) (setq pos ;; hseq is not sequence in form. (catch 'loop (setq hseq (1+ hseq)) (while (<= hseq w3m-max-anchor-sequence) (setq pos (text-property-any (point-min) (point-max) 'w3m-anchor-sequence hseq)) (when pos (throw 'loop pos)) (setq hseq (1+ hseq))))) (and pos (goto-char pos))))) (defun w3m-next-anchor (&optional arg) "Move the point to the next anchor." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-anchor w3m-previous-anchor))) (when (setq w3m-goto-anchor-hist (w3m-anchor-sequence)) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-previous-anchor) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-previous-anchor (- arg)) (let (pos) (while (> arg 0) (unless (w3m-goto-next-anchor) (setq w3m-goto-anchor-hist nil) (if (w3m-imitate-widget-button) (widget-forward 1) (when (setq pos (text-property-any (point-min) (point-max) 'w3m-anchor-sequence 1)) (goto-char pos)))) (setq arg (1- arg)) (if (member (w3m-anchor-sequence) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-anchor-sequence) w3m-goto-anchor-hist)))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-goto-previous-anchor () (let ((hseq (w3m-anchor-sequence)) (pos (previous-single-property-change (point) 'w3m-anchor-sequence))) (cond ((and (not hseq) pos) (if (w3m-anchor-sequence pos) (goto-char pos) (setq pos (previous-single-property-change pos 'w3m-anchor-sequence)) (and pos (goto-char pos)))) ((or (not pos) (< hseq 2)) nil) (t (setq pos ;; hseq is not sequence in form. (catch 'loop (setq hseq (1- hseq)) (while (> hseq 0) (setq pos (text-property-any (point-min) (point-max) 'w3m-anchor-sequence hseq)) (when pos (throw 'loop pos)) (setq hseq (1- hseq))))) (and pos (goto-char pos)))))) (defun w3m-previous-anchor (&optional arg) "Move the point to the previous anchor." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-anchor w3m-previous-anchor))) (when (setq w3m-goto-anchor-hist (w3m-anchor-sequence)) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-next-anchor) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-next-anchor (- arg)) (let (pos) (while (> arg 0) (unless (w3m-goto-previous-anchor) (setq w3m-goto-anchor-hist nil) (if (w3m-imitate-widget-button) (widget-forward -1) (when (setq pos (and w3m-max-anchor-sequence (text-property-any (point-min) (point-max) 'w3m-anchor-sequence w3m-max-anchor-sequence))) (goto-char pos)))) (setq arg (1- arg)) (if (member (w3m-anchor-sequence) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-anchor-sequence) w3m-goto-anchor-hist)))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-goto-next-form () ;; Move the point to the end of the current form. (when (w3m-action (point)) (goto-char (next-single-property-change (point) 'w3m-action))) ;; Find the next form. (or (w3m-action (point)) (let ((pos (next-single-property-change (point) 'w3m-action))) (when pos (goto-char pos) t)))) (defun w3m-next-form (&optional arg) "Move the point to the next form." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-form w3m-previous-form))) (when (setq w3m-goto-anchor-hist (w3m-action (point))) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-previous-form) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-previous-form (- arg)) (while (> arg 0) (unless (w3m-goto-next-form) ;; Make a search from the beginning of the buffer. (setq w3m-goto-anchor-hist nil) (goto-char (point-min)) (w3m-goto-next-form)) (setq arg (1- arg)) (if (member (w3m-action (point)) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-action (point)) w3m-goto-anchor-hist))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-goto-previous-form () ;; Move the point to the beginning of the current form. (when (w3m-action (point)) (goto-char (previous-single-property-change (1+ (point)) 'w3m-action))) ;; Find the previous form. (let ((pos (previous-single-property-change (point) 'w3m-action))) (if pos (goto-char (if (w3m-action pos) pos (previous-single-property-change pos 'w3m-action)))))) (defun w3m-previous-form (&optional arg) "Move the point to the previous form." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-form w3m-previous-form))) (when (setq w3m-goto-anchor-hist (w3m-action (point))) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-next-form) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-next-form (- arg)) (while (> arg 0) (unless (w3m-goto-previous-form) ;; search from the end of the buffer (setq w3m-goto-anchor-hist nil) (goto-char (point-max)) (w3m-goto-previous-form)) (setq arg (1- arg)) (if (member (w3m-action (point)) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-action (point)) w3m-goto-anchor-hist))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-goto-next-image () ;; Move the point to the end of the current image. (when (w3m-image (point)) (goto-char (next-single-property-change (point) 'w3m-image))) ;; Find the next form or image. (or (w3m-image (point)) (let ((pos (next-single-property-change (point) 'w3m-image))) (when pos (goto-char pos) t)))) (defun w3m-next-image (&optional arg) "Move the point to the next image." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-image w3m-previous-image))) (when (setq w3m-goto-anchor-hist (w3m-image (point))) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-previous-image) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-previous-image (- arg)) (while (> arg 0) (unless (w3m-goto-next-image) ;; Make a search for an image from the beginning of the buffer. (setq w3m-goto-anchor-hist nil) (goto-char (point-min)) (w3m-goto-next-image)) (setq arg (1- arg)) (if (member (w3m-image (point)) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-image (point)) w3m-goto-anchor-hist))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-goto-previous-image () ;; Move the point to the beginning of the current image. (when (w3m-image (point)) (goto-char (previous-single-property-change (1+ (point)) 'w3m-image))) ;; Find the previous form or image. (let ((pos (previous-single-property-change (point) 'w3m-image))) (if pos (goto-char (if (w3m-image pos) pos (previous-single-property-change pos 'w3m-image)))))) (defun w3m-previous-image (&optional arg) "Move the point to the previous image." (interactive "p") (w3m-keep-region-active) (unless arg (setq arg 1)) (if (null (memq last-command '(w3m-next-image w3m-previous-image))) (when (setq w3m-goto-anchor-hist (w3m-image (point))) (setq w3m-goto-anchor-hist (list w3m-goto-anchor-hist))) (when (and (eq last-command 'w3m-next-image) w3m-goto-anchor-hist) (setcdr w3m-goto-anchor-hist nil))) (if (< arg 0) (w3m-next-image (- arg)) (while (> arg 0) (unless (w3m-goto-previous-image) ;; Make a search from the end of the buffer. (setq w3m-goto-anchor-hist nil) (goto-char (point-max)) (w3m-goto-previous-image)) (setq arg (1- arg)) (if (member (w3m-image (point)) w3m-goto-anchor-hist) (setq arg (1+ arg)) (push (w3m-image (point)) w3m-goto-anchor-hist))) (w3m-horizontal-on-screen) (w3m-print-this-url))) (defun w3m-copy-buffer (&optional buffer newname just-copy empty background last) "Create a copy of the BUFFER where emacs-w3m is running. Return a new buffer. If BUFFER is nil, the current buffer is assumed. If NEWNAME is nil, it defaults to the name of the current buffer. If JUST-COPY is nil, this function makes the new buffer the current buffer and pops up as a new window or a new frame according to `w3m-pop-up-windows' and `w3m-pop-up-frames' (which see), otherwise creates just BUFFER's copy. If EMPTY is nil, a page of the same url will be re-rendered in the new buffer, otherwise an empty buffer is created. If BACKGROUND is non-nil, you will not leave the current buffer. If LAST is non-nil, the new buffer will be made the last in order of the w3m buffers, otherwise it will be made the next of the current buffer. Note that this function should be called on the window displaying the original buffer BUFFER even if JUST-COPY is non-nil in order to render a page in a new buffer with the correct width." (interactive (list (current-buffer) (if current-prefix-arg (read-string "Name: ")) t)) (unless buffer (setq buffer (current-buffer))) (unless newname (setq newname (buffer-name buffer))) (when (string-match "<[0-9]+>\\'" newname) (setq newname (substring newname 0 (match-beginning 0)))) (let (url coding images init-frames new) (save-current-buffer (set-buffer buffer) (setq url (or w3m-current-url (car (w3m-history-element (cadar w3m-history)))) coding w3m-current-coding-system images w3m-display-inline-images init-frames (when (w3m-popup-frame-p) (copy-sequence w3m-initial-frames))) (unless url (setq empty t)) ;; (w3m-history-store-position) (set-buffer (setq new (w3m-generate-new-buffer newname (not last)))) ;; Make copies of `w3m-history' and `w3m-history-flat'. (w3m-history-copy buffer) (setq w3m-current-coding-system coding w3m-initial-frames init-frames w3m-display-inline-images (if w3m-toggle-inline-images-permanently images w3m-default-display-inline-images))) (cond ((and empty (not background)) ;; Pop to a window or a frame up because `w3m-goto-url' is not called. (w3m-popup-buffer new)) (empty ;; When empty and just-copy, stay origianl buffer. ) (t ;; Need to change to the `new' buffer in which `w3m-goto-url' runs. (set-buffer new) ;; Render a page. (let ((positions (copy-sequence (car w3m-history))) (w3m-history-reuse-history-elements t) (w3m-prefer-cache t)) (w3m-process-with-wait-handler (w3m-goto-url url 'redisplay nil nil nil handler ;; Pass the properties of the history elements, ;; although it is currently always nil. (w3m-history-element (cadr positions)))) (setcar w3m-history positions)) (when (and w3m-new-session-in-background just-copy (not (get-buffer-window buffer))) (set-window-buffer (selected-window) buffer)))) new)) (defvar w3m-previous-session-buffer nil "A buffer of the session having selected just before this session. This will be the session to be selected after `w3m-delete-buffer' deletes the current session.") (make-variable-buffer-local 'w3m-previous-session-buffer) (defun w3m-next-buffer (arg &optional buffer) "Turn ARG pages of emacs-w3m buffers ahead. If BUFFER is specified, switch to it regardless of ARG." (interactive "p") (when (and (eq major-mode 'w3m-mode) (or (and (buffer-live-p buffer) (with-current-buffer buffer (eq major-mode 'w3m-mode))) (progn (unless arg (setq arg 1)) (when (/= arg 0) (let* ((buffers (w3m-list-buffers)) (len (length buffers))) (setq buffer (nth (mod (+ arg (- len (length (memq (current-buffer) buffers)))) len) buffers))))))) (w3m-history-store-position) (let ((prev (current-buffer))) (switch-to-buffer buffer) (setq w3m-previous-session-buffer prev)) (w3m-history-restore-position) (run-hooks 'w3m-select-buffer-hook) (w3m-select-buffer-update))) (defun w3m-previous-buffer (arg) "Turn ARG pages of emacs-w3m buffers behind." (interactive "p") (w3m-next-buffer (- arg))) (defun w3m-delete-buffer (&optional force) "Delete the current emacs-w3m buffer and switch to the previous one. If there is the sole emacs-w3m buffer, it is assumed to be called for terminating the emacs-w3m session; the prefix argument FORCE will be passed to the `w3m-quit' function (which see). When `w3m-use-tab' is non-nil, it returns to the buffer that launches this buffer." (interactive "P") ;; Bind `w3m-fb-mode' to nil so that this function might not call ;; `w3m-quit' when there is only one buffer belonging to the selected ;; frame, but there are emacs-w3m buffers in other frames. (let* ((w3m-fb-mode nil) (buffers (w3m-list-buffers t)) (num (length buffers)) cur buf bufs) (if (= 1 num) (w3m-quit force) (setq cur (current-buffer)) (if (w3m-use-tab-p) (progn (select-window (or (get-buffer-window cur t) (selected-window))) (w3m-next-buffer -1 w3m-previous-session-buffer)) ;; List buffers being shown in the other windows of the current frame. (save-current-buffer (walk-windows (lambda (window) (set-buffer (setq buf (window-buffer window))) (when (and (eq major-mode 'w3m-mode) (not (eq buf cur))) (push buf bufs))) 'no-minibuf)) (cond ((= (1- num) (length bufs)) ;; All the other buffers are shown in the current frame. (select-window (get-buffer-window (prog2 (w3m-next-buffer -1) (current-buffer) (delete-window))))) (bufs ;; Look for the buffer which is not shown in the current frame. (setq buf nil) (while (progn (w3m-next-buffer -1) (unless buf (setq buf (current-buffer))) (memq (current-buffer) bufs))) (when (memq buf bufs) ;; Go to the buffer which is most suitable to be called ;; the *previous* buffer. (select-window (get-buffer-window buf)))) ((progn ;; List buffers being not shown anywhere. (setq bufs nil) (while buffers (unless (get-buffer-window (setq buf (pop buffers)) t) (push buf bufs))) bufs) (while (progn (w3m-next-buffer -1) (not (memq (current-buffer) bufs))))) ((memq (selected-frame) w3m-initial-frames) ;; Assume that this frame was created to show this buffer. (if (one-window-p t) (delete-frame) (delete-window))) (t (if (>= num 2) (w3m-next-buffer -1) (unless (one-window-p t) (delete-window)))))) (w3m-session-deleted-save (list cur)) (w3m-process-stop cur) (w3m-idle-images-show-unqueue cur) (when w3m-use-form (w3m-form-kill-buffer cur)) (let ((frame-auto-delete nil) (ignore-window-parameters t)) (kill-buffer cur)) ;; A workaround to restore the window positions correctly when ;; this command is called by a mouse event. (run-at-time 0.1 nil #'w3m-history-restore-position) (run-hooks 'w3m-delete-buffer-hook) (w3m-session-crash-recovery-save))) (w3m-select-buffer-update) (unless w3m-fb-inhibit-buffer-selection (w3m-fb-select-buffer))) (defun w3m-delete-buffer-if-empty (buffer) "Delete a newly created emacs-w3m buffer BUFFER if it seems unnecessary. Some emacs-w3m commands create a buffer for the new session first, but it may be useless if the command is invoked for visiting a local file or a mail buffer. This command will delete BUFFER if it is empty or there is only a progress message. It also deletes windows and frames related to BUFFER." (with-current-buffer buffer (unless (or w3m-current-process w3m-current-url (not (or (zerop (buffer-size)) (and (get-text-property (point-min) 'w3m-progress-message) (get-text-property (1- (point-max)) 'w3m-progress-message))))) (w3m-delete-buffer t)))) (defun w3m-pack-buffer-numbers () "Renumber suffixes of names of emacs-w3m buffers. It aligns emacs-w3m buffers in order of *w3m*, *w3m<2>, *w3m*<3>,... as if the folder command of MH performs with the -pack option." (interactive) (let ((count 1) number newname) (dolist (buffer (w3m-list-buffers)) (setq number (w3m-buffer-number buffer)) (when number (unless (eq number count) (when (and (setq newname (w3m-buffer-set-number buffer count)) w3m-use-form) (w3m-form-set-number buffer newname))) (incf count))))) (defun w3m-delete-other-buffers (&optional buffer) "Delete emacs-w3m buffers except for BUFFER or the current buffer." (interactive) (unless buffer (setq buffer (current-buffer))) (w3m-delete-frames-and-windows buffer) (let ((buffers (delq buffer (w3m-list-buffers t)))) (w3m-delete-buffers buffers))) (defun w3m-delete-left-tabs () "Delete tabs on the left side of the current tab." (interactive) (let ((cbuf (current-buffer)) bufs) (setq bufs (catch 'done (dolist (buf (w3m-list-buffers)) (if (eq cbuf buf) (throw 'done bufs) (setq bufs (cons buf bufs)))))) (when bufs (w3m-delete-buffers bufs)))) (defun w3m-delete-right-tabs () "Delete tabs on the right side of the current tab." (interactive) (let ((bufs (w3m-righttab-exist-p))) (when bufs (w3m-delete-buffers bufs)))) (defun w3m-delete-buffers (buffers) "Delete emacs-w3m buffers." (let (buffer) (when buffers (w3m-session-deleted-save buffers)) (while buffers (setq buffer (pop buffers)) (w3m-process-stop buffer) (w3m-idle-images-show-unqueue buffer) (kill-buffer buffer) (when w3m-use-form (w3m-form-kill-buffer buffer)))) (run-hooks 'w3m-delete-buffer-hook) (w3m-session-crash-recovery-save) (w3m-select-buffer-update) (w3m-force-window-update)) (defvar w3m-ctl-c-map nil "Sub-keymap used for the `C-c'-prefixed commands. Note: keys should not be alphabet since `C-c LETTER' keys are reserved for users. See Info node `(elisp)Key Binding Conventions'.") (unless w3m-ctl-c-map (let ((map (make-sparse-keymap))) (define-key map "\M-h" 'w3m-history) (define-key map "\C-@" 'w3m-history-store-position) (if (featurep 'xemacs) (define-key map [(control space)] 'w3m-history-store-position) ;; `C- ' doesn't mean `C-SPC' in XEmacs. (define-key map [?\C-\ ] 'w3m-history-store-position)) (define-key map "\C-e" 'w3m-goto-new-session-url) (define-key map "\C-v" 'w3m-history-restore-position) (define-key map "\C-t" 'w3m-copy-buffer) (define-key map "\C-p" 'w3m-previous-buffer) (define-key map "\C-n" 'w3m-next-buffer) (when (featurep 'w3m-ems) (define-key map [?\C-,] 'w3m-tab-move-left) (define-key map [?\C-<] 'w3m-tab-move-left) (define-key map [?\C-.] 'w3m-tab-move-right) (define-key map [?\C->] 'w3m-tab-move-right)) (define-key map "\C-w" 'w3m-delete-buffer) (define-key map "\M-w" 'w3m-delete-other-buffers) (define-key map "\M-l" 'w3m-delete-left-tabs) (define-key map "\M-r" 'w3m-delete-right-tabs) (define-key map "\C-s" 'w3m-select-buffer) (define-key map "\C-a" 'w3m-switch-buffer) (define-key map "\C-b" 'report-emacs-w3m-bug) (define-key map "\C-c" 'w3m-submit-form) (define-key map "\C-k" 'w3m-process-stop) (define-key map "\C-m" 'w3m-move-unseen-buffer) (setq w3m-ctl-c-map map))) (defvar w3m-redisplay-map nil "Sub-keymap used for the `C'-prefixed redisplay commands.") (unless w3m-redisplay-map (let ((map (make-sparse-keymap))) (define-key map "t" 'w3m-redisplay-with-content-type) (define-key map "c" 'w3m-redisplay-with-charset) (define-key map "C" 'w3m-redisplay-and-reset) (setq w3m-redisplay-map map))) (defvar w3m-lnum-map nil "Sub-keymap used for the `L'-prefixed link numbering commands.") (unless w3m-lnum-map (let ((map (make-sparse-keymap))) (define-key map "f" 'w3m-lnum-follow) (define-key map "F" 'w3m-lnum-goto) (define-key map "w" 'w3m-lnum-universal) (define-key map "I" 'w3m-lnum-view-image) (define-key map "\M-i" 'w3m-lnum-save-image) (define-key map "d" 'w3m-lnum-download-this-url) (define-key map "e" 'w3m-lnum-edit-this-url) (define-key map "t" 'w3m-lnum-toggle-inline-image) (define-key map "u" 'w3m-lnum-print-this-url) (define-key map "b" 'w3m-lnum-bookmark-add-this-url) (define-key map "]" 'w3m-lnum-zoom-in-image) (define-key map "[" 'w3m-lnum-zoom-out-image) (setq w3m-lnum-map map))) (defvar w3m-lynx-like-map nil "Lynx-like keymap used in emacs-w3m buffers.") ;; `C-t' is a prefix key reserved to commands that do something in all ;; emacs-w3m buffers. 2006-05-18 (unless w3m-lynx-like-map (let ((map (make-keymap))) (suppress-keymap map) (define-key map " " 'w3m-scroll-up-or-next-url) (define-key map "b" 'w3m-scroll-down-or-previous-url) (define-key map [backspace] 'w3m-scroll-down-or-previous-url) (define-key map [delete] 'w3m-scroll-down-or-previous-url) (if (featurep 'xemacs) (define-key map [(shift space)] 'w3m-scroll-down-or-previous-url) (define-key map [?\S-\ ] 'w3m-scroll-down-or-previous-url)) (define-key map "f" 'w3m-toggle-filtering) (define-key map "h" 'backward-char) (define-key map "j" 'next-line) (define-key map "k" 'previous-line) (define-key map "l" 'forward-char) (define-key map "J" 'w3m-scroll-up) (define-key map "K" 'w3m-scroll-down) (define-key map "\C-?" 'w3m-scroll-down-or-previous-url) (define-key map "\t" 'w3m-next-anchor) (define-key map [tab] 'w3m-next-anchor) (define-key map [(shift tab)] 'w3m-previous-anchor) (define-key map [(shift iso-lefttab)] 'w3m-previous-anchor) (define-key map [backtab] 'w3m-previous-anchor) (define-key map [down] 'w3m-next-anchor) (define-key map "\M-\t" 'w3m-previous-anchor) (define-key map [up] 'w3m-previous-anchor) (define-key map "\C-m" 'w3m-view-this-url) (define-key map [(shift return)] 'w3m-view-this-url-new-session) (define-key map [(shift kp-enter)] 'w3m-view-this-url-new-session) (define-key map [right] 'w3m-view-this-url) (cond ((featurep 'xemacs) (define-key map [(button3)] 'w3m-mouse-major-mode-menu)) ;; Don't use [mouse-3], which gets submenus not working in GTK Emacs. ((featurep 'gtk) (define-key map [down-mouse-3] 'w3m-mouse-major-mode-menu) (define-key map [drag-mouse-3] 'undefined) (define-key map [mouse-3] 'undefined)) (t (define-key map [mouse-3] 'w3m-mouse-major-mode-menu))) (if (featurep 'xemacs) (progn (define-key map [(button2)] 'w3m-mouse-view-this-url) (define-key map [(shift button2)] 'w3m-mouse-view-this-url-new-session)) (define-key map [mouse-2] 'w3m-mouse-view-this-url) ;; Support for mouse-1 on Emacs 22 and greater. (define-key map [follow-link] 'mouse-face) (define-key map [S-mouse-2] 'w3m-mouse-view-this-url-new-session)) (define-key map [left] 'w3m-view-previous-page) (define-key map "B" 'w3m-view-previous-page) (define-key map "N" 'w3m-view-next-page) (define-key map "^" 'w3m-view-parent-page) (define-key map "\M-d" 'w3m-download) (define-key map "d" 'w3m-download-this-url) (define-key map "u" 'w3m-print-this-url) (define-key map "I" 'w3m-view-image) (define-key map "\M-i" 'w3m-save-image) (define-key map "c" 'w3m-print-current-url) (define-key map "M" 'w3m-view-url-with-browse-url) (define-key map "G" 'w3m-goto-url-new-session) (define-key map "g" 'w3m-goto-url) (define-key map "\C-tt" 'w3m-create-empty-session) (define-key map "T" 'w3m-toggle-inline-images) (define-key map "\M-T" 'w3m-turnoff-inline-images) (define-key map "t" 'w3m-toggle-inline-image) (when (w3m-display-graphic-p) (define-key map "\M-[" 'w3m-zoom-out-image) (define-key map "\M-]" 'w3m-zoom-in-image)) (define-key map "U" 'w3m-goto-url) (define-key map "v" 'w3m-bookmark-view) (define-key map "V" 'w3m-bookmark-view-new-session) (define-key map "q" 'w3m-close-window) (define-key map "Q" 'w3m-quit) (define-key map "\M-n" 'w3m-copy-buffer) (define-key map "\M-s" 'w3m-session-select) (define-key map "\M-S" 'w3m-session-save) (define-key map "r" 'w3m-redisplay-this-page) (define-key map "R" 'w3m-reload-this-page) (define-key map "\C-tR" 'w3m-reload-all-pages) (define-key map "?" 'describe-mode) (define-key map "\M-a" 'w3m-bookmark-add-this-url) (define-key map "\M-k" 'w3m-cookie) (define-key map "a" 'w3m-bookmark-add-current-url) (define-key map "\C-ta" 'w3m-bookmark-add-all-urls) (define-key map "+" 'w3m-antenna-add-current-url) (define-key map "]" 'w3m-next-form) (define-key map "[" 'w3m-previous-form) (define-key map "}" 'w3m-next-image) (define-key map "{" 'w3m-previous-image) (define-key map "H" 'w3m-gohome) (define-key map "A" 'w3m-antenna) (define-key map "W" 'w3m-weather) (define-key map "s" 'w3m-search) (define-key map "S" 'w3m-search-new-session) (define-key map "D" 'w3m-dtree) (define-key map ">" 'w3m-scroll-left) (define-key map "<" 'w3m-scroll-right) (define-key map "." 'w3m-shift-left) (define-key map "," 'w3m-shift-right) (define-key map "\M-l" 'w3m-horizontal-recenter) (define-key map "\C-a" 'w3m-beginning-of-line) (define-key map "\C-e" 'w3m-end-of-line) (define-key map "\\" 'w3m-view-source) (define-key map "=" 'w3m-view-header) (define-key map "E" 'w3m-edit-current-url) (define-key map "e" 'w3m-edit-this-url) (define-key map "|" 'w3m-pipe-source) (define-key map "\C-c" w3m-ctl-c-map) (define-key map "C" w3m-redisplay-map) (define-key map "L" w3m-lnum-map) (define-key map "\C-x\C-s" 'w3m-save-buffer) (setq w3m-lynx-like-map map))) (defvar w3m-info-like-map nil "Info-like keymap used in emacs-w3m buffers.") ;; `C-t' is a prefix key reserved to commands that do something in all ;; emacs-w3m buffers. 2006-05-18 (unless w3m-info-like-map (let ((map (make-keymap))) (suppress-keymap map) (define-key map [backspace] 'w3m-scroll-down-or-previous-url) (define-key map [delete] 'w3m-scroll-down-or-previous-url) (define-key map "\C-?" 'w3m-scroll-down-or-previous-url) (if (featurep 'xemacs) (define-key map [(shift space)] 'w3m-scroll-down-or-previous-url) (define-key map [?\S-\ ] 'w3m-scroll-down-or-previous-url)) (define-key map "\t" 'w3m-next-anchor) (define-key map [tab] 'w3m-next-anchor) (define-key map [(shift tab)] 'w3m-previous-anchor) (define-key map [(shift iso-lefttab)] 'w3m-previous-anchor) (define-key map [backtab] 'w3m-previous-anchor) (define-key map "\M-\t" 'w3m-previous-anchor) (define-key map "\C-m" 'w3m-view-this-url) (define-key map [(shift return)] 'w3m-view-this-url-new-session) (define-key map [(shift kp-enter)] 'w3m-view-this-url-new-session) (if (featurep 'xemacs) (progn (define-key map [(button2)] 'w3m-mouse-view-this-url) (define-key map [(shift button2)] 'w3m-mouse-view-this-url-new-session)) (define-key map [mouse-2] 'w3m-mouse-view-this-url) ;; Support for mouse-1 on Emacs 22 and greater. (define-key map [follow-link] 'mouse-face) (define-key map [S-mouse-2] 'w3m-mouse-view-this-url-new-session)) (cond ((featurep 'xemacs) (define-key map [(button3)] 'w3m-mouse-major-mode-menu)) ;; Don't use [mouse-3], which gets submenus not working in GTK Emacs. ((featurep 'gtk) (define-key map [down-mouse-3] 'w3m-mouse-major-mode-menu) (define-key map [drag-mouse-3] 'undefined) (define-key map [mouse-3] 'undefined)) (t (define-key map [mouse-3] 'w3m-mouse-major-mode-menu))) (define-key map " " 'w3m-scroll-up-or-next-url) (define-key map "a" 'w3m-bookmark-add-current-url) (define-key map "\C-ta" 'w3m-bookmark-add-all-urls) (define-key map "\M-a" 'w3m-bookmark-add-this-url) (define-key map "+" 'w3m-antenna-add-current-url) (define-key map "A" 'w3m-antenna) (define-key map "b" 'w3m-scroll-down-or-previous-url) (define-key map "!" 'w3m-redisplay-with-content-type) (define-key map "d" 'w3m-download) (define-key map "D" 'w3m-download-this-url) (define-key map "e" 'w3m-edit-current-url) (define-key map "E" 'w3m-edit-this-url) (define-key map "f" 'w3m-toggle-filtering) (define-key map "g" 'w3m-goto-url) (define-key map "G" 'w3m-goto-url-new-session) (define-key map "\C-tt" 'w3m-create-empty-session) (define-key map "h" 'describe-mode) (define-key map "H" 'w3m-gohome) (define-key map "i" (if (w3m-display-graphic-p) 'w3m-toggle-inline-image 'w3m-view-image)) (define-key map "I" 'w3m-toggle-inline-images) (define-key map "\M-I" 'w3m-turnoff-inline-images) (when (w3m-display-graphic-p) (define-key map "\M-[" 'w3m-zoom-out-image) (define-key map "\M-]" 'w3m-zoom-in-image)) (define-key map "\M-i" 'w3m-save-image) (define-key map "l" 'w3m-view-previous-page) (define-key map "\C-l" 'recenter) (define-key map [(control L)] 'w3m-reload-this-page) (define-key map [(control t) (control L)] 'w3m-reload-all-pages) (define-key map "M" 'w3m-view-url-with-browse-url) (define-key map "n" 'w3m-view-next-page) (define-key map "N" 'w3m-namazu) (define-key map "\M-n" 'w3m-copy-buffer) (define-key map "\M-k" 'w3m-cookie) (define-key map "\M-s" 'w3m-session-select) (define-key map "\M-S" 'w3m-session-save) (define-key map "o" 'w3m-history) (define-key map "O" 'w3m-db-history) (define-key map "p" 'w3m-view-previous-page) (define-key map "P" 'undecided) ;; reserved for print-this-buffer. (define-key map "q" 'w3m-close-window) (define-key map "Q" 'w3m-quit) (define-key map "r" 'w3m-redisplay-this-page) (define-key map "R" 'w3m-reload-this-page) (define-key map "\C-tR" 'w3m-reload-all-pages) (define-key map "s" 'w3m-search) (define-key map "S" 'w3m-search-new-session) (define-key map "T" 'w3m-dtree) (define-key map "u" 'w3m-view-parent-page) (define-key map "v" 'w3m-bookmark-view) (define-key map "V" 'w3m-bookmark-view-new-session) (define-key map "W" 'w3m-weather) (define-key map "y" 'w3m-print-current-url) (define-key map "Y" 'w3m-print-this-url) (define-key map "=" 'w3m-view-header) (define-key map "\\" 'w3m-view-source) (define-key map "?" 'describe-mode) (define-key map ">" 'w3m-scroll-left) (define-key map "<" 'w3m-scroll-right) (define-key map [(shift right)] 'w3m-shift-left) (define-key map [(shift left)] 'w3m-shift-right) (define-key map "\M-l" 'w3m-horizontal-recenter) (define-key map "\C-a" 'w3m-beginning-of-line) (define-key map "\C-e" 'w3m-end-of-line) (define-key map "." 'beginning-of-buffer) (define-key map "^" 'w3m-view-parent-page) (define-key map "]" 'w3m-next-form) (define-key map "[" 'w3m-previous-form) (define-key map "}" 'w3m-next-image) (define-key map "{" 'w3m-previous-image) (define-key map "|" 'w3m-pipe-source) (define-key map "\C-c" w3m-ctl-c-map) (define-key map "C" w3m-redisplay-map) (define-key map "L" w3m-lnum-map) (define-key map "\C-x\C-s" 'w3m-save-buffer) (setq w3m-info-like-map map))) (defun w3m-alive-p (&optional visible) "Return a buffer in which emacs-w3m is running. If there is no emacs-w3m session, return nil. If the optional VISIBLE is non-nil, a visible emacs-w3m buffer is preferred. The last visited emacs-w3m buffer is likely to return if VISIBLE is omitted or there is no visible buffer." (let* ((buffers (w3m-list-buffers t)) (buf (car buffers))) (if visible (progn (setq visible nil) (while (and (not visible) buffers) (when (get-buffer-window (car buffers) t) (setq visible (car buffers))) (setq buffers (cdr buffers))) (or visible buf)) buf))) (defun w3m-quit (&optional force) "Quit emacs-w3m. Quit browsing immediately if the prefix argument FORCE is specified, otherwise prompt you for the confirmation. See also`w3m-close-window'. This command updates the `arrived URLs' database." (interactive "P") (let ((buffers (w3m-list-buffers t)) (all-buffers (let ((w3m-fb-mode nil)) (w3m-list-buffers t)))) (if (or (= (length buffers) (length all-buffers)) (prog1 (y-or-n-p "Kill emacs-w3m buffers on other frames? ") (message nil))) (let ((w3m-fb-mode nil)) (when (or force (prog1 (y-or-n-p "Do you want to exit emacs-w3m? ") (message nil))) (w3m-session-automatic-save) (w3m-delete-frames-and-windows) (sit-for 0) ;; Delete frames seemingly fast. (dolist (buffer all-buffers) (w3m-cancel-refresh-timer buffer) (kill-buffer buffer) (when w3m-use-form (w3m-form-kill-buffer buffer))) (when w3m-use-form (w3m-form-textarea-file-cleanup)) (w3m-select-buffer-close-window) (w3m-cache-shutdown) (w3m-arrived-shutdown) (w3m-process-shutdown) (when w3m-use-cookies (w3m-cookie-shutdown)) (w3m-kill-all-buffer))) ; starting here is condition of fb-mode active and in use (w3m-session-automatic-save) (let (buf) (while (setq buf (get-buffer " *w3m buffers*")) (delete-windows-on buf t) (kill-buffer buf))) (w3m-fb-delete-frame-buffers) (display-buffer-same-window (other-buffer) nil)))) (defun w3m-close-window () "Bury emacs-w3m buffers and close windows and frames. The buffers remain, and the sessions continue to exist, so you can return to them by either running `M-x w3m' or by switching to one of the buffers. See also `w3m-quit'." (interactive) (w3m-history-store-position) ;; `w3m-list-buffers' won't return all the emacs-w3m buffers if ;; `w3m-fb-mode' is turned on. (let* ((buffers (w3m-list-buffers t)) (bufs buffers) buf windows window) (w3m-delete-frames-and-windows) (while bufs (setq buf (pop bufs)) (w3m-cancel-refresh-timer buf) (bury-buffer buf)) (while buffers (setq buf (pop buffers) windows (get-buffer-window-list buf 'no-minibuf t)) (while windows (setq window (pop windows)) (set-window-buffer window (w3m-static-if (featurep 'xemacs) (other-buffer buf (window-frame window) nil) (other-buffer buf nil (window-frame window))))))) (w3m-select-buffer-close-window) ;; The current-buffer and displayed buffer are not necessarily the ;; same at this point; if they aren't bury-buffer will be a nop, and ;; we will infloop. (set-buffer (window-buffer (selected-window))) (while (eq major-mode 'w3m-mode) (bury-buffer))) (unless w3m-mode-map (setq w3m-mode-map (if (eq w3m-key-binding 'info) w3m-info-like-map w3m-lynx-like-map))) (defun w3m-mouse-major-mode-menu (event) "Pop up a W3M mode-specific menu of mouse commands." (interactive "e") (mouse-set-point event) (let* ((bmkitems (if w3m-bookmark-mode (cdr w3m-bookmark-menu-items) (car w3m-bookmark-menu-items))) (bmkmenu (if w3m-bookmark-menu-items-pre `(,@bmkitems "----" ,@w3m-bookmark-menu-items-pre) bmkitems))) (w3m-static-if (featurep 'xemacs) (let (menubar) (when current-menubar (run-hooks 'activate-menubar-hook)) (setq menubar (cons "w3m" (delq nil `(,@(cdr w3m-rmouse-menubar) "----" "----" ,(assoc "w3m" current-menubar) "----" ,(assoc "Bookmark" current-menubar) ,(assoc "Tab" current-menubar) ,(assoc "Session" current-menubar))))) (popup-menu menubar event)) (run-hooks 'menu-bar-update-hook) (popup-menu (delete nil `(,@w3m-rmouse-menubar "----" "----" ,w3m-menubar "----" ,(cons "Bookmark" bmkmenu) ,(when w3m-tab-menubar-make-items-preitems (cons "Tab" w3m-tab-menubar-make-items-preitems)) ,(cons "Session" (if w3m-session-menu-items-pre (append w3m-session-menu-items '("----") w3m-session-menu-items-pre) w3m-session-menu-items)))) event)))) (defvar w3m-tab-button-menu-current-buffer nil "Internal variable used by `w3m-tab-button-menu'.") (defvar w3m-tab-button-menu-commands (let ((manyp '(cdr (w3m-list-buffers))) (currentp 'w3m-tab-button-menu-current-buffer) (leftp '(and w3m-tab-button-menu-current-buffer (w3m-lefttab-exist-p w3m-tab-button-menu-current-buffer))) (rightp '(and w3m-tab-button-menu-current-buffer (w3m-righttab-exist-p w3m-tab-button-menu-current-buffer))) (many2p '(and w3m-tab-button-menu-current-buffer (cdr (w3m-list-buffers))))) `((w3m-goto-url-new-session ,(w3m-make-menu-item "$B?7$7$$%?%V(B" "New Tab") t ,w3m-new-session-in-background w3m-new-session-url) (w3m-copy-buffer ,(w3m-make-menu-item "$B%?%V$rJ#@=(B" "Copy Tab") ,currentp ,w3m-new-session-in-background) - (w3m-reload-this-page ,(w3m-make-menu-item "$B%?%V$r:FFI$_9~$_(B" "Reload Tab") ,currentp) (w3m-reload-all-pages ,(w3m-make-menu-item "$B$9$Y$F$N%?%V$r:FFI$_9~$_(B" "Reload All Tabs") ,manyp) - (w3m-delete-buffer ,(w3m-make-menu-item "$B$3$N%?%V$rJD$8$k(B" "Close This Tab") ,currentp) - (w3m-delete-other-buffers ,(w3m-make-menu-item "$BB>$N%?%V$r$9$Y$FJD$8$k(B" "Close Other Tabs") ,many2p) (w3m-delete-left-tabs ,(w3m-make-menu-item "$B:8B&$N%?%V$r$9$Y$FJD$8$k(B" "Close Left Tabs") ,leftp) (w3m-delete-right-tabs ,(w3m-make-menu-item "$B1&B&$N%?%V$r$9$Y$FJD$8$k(B" "Close Right Tabs") ,rightp) - (w3m-view-url-with-browse-url ,(w3m-make-menu-item "browse-url $B$G3+$/(B" "View with browse-url") ,currentp ,w3m-new-session-in-background w3m-current-url) - (w3m-session-save ,(w3m-make-menu-item "$B$9$Y$F$N%?%V$rJ]B8$9$k(B" "Save All Tabs...") t) (w3m-session-select ,(w3m-make-menu-item "$B%?%V%j%9%H$rA*Br$9$k(B" "Select List of Tabs...") t) (w3m-bookmark-add-current-url ,(w3m-make-menu-item "$B$3$N%?%V$r%V%C%/%^!<%/(B" "Bookmark This Tab...") ,currentp ,w3m-new-session-in-background) (w3m-bookmark-add-all-urls ,(w3m-make-menu-item "$B$9$Y$F$N%?%V$r%V%C%/%^!<%/(B" "Bookmark All Tabs..." ) ,manyp))) "List of commands invoked by the tab button menu. Each item is the symbol `-' which is a separator, or a list which consists of the following elements: 0: a function. 1: a function description. 2: a Lisp form which returns non-nil if the item is active. 3: a flag specifying whether the buffer should be selected. &rest: arguments passed to the function.") (w3m-static-unless (featurep 'xemacs) (easy-menu-define w3m-tab-button-menu w3m-tab-map "w3m tab button menu." (cons nil (w3m-make-menu-commands w3m-tab-button-menu-commands))) ;; This function must be placed after `easy-menu-define'. (defun w3m-tab-button-menu (event buffer) (select-window (posn-window (event-start event))) (setq w3m-tab-button-menu-current-buffer buffer) (popup-menu w3m-tab-button-menu)) (defun w3m-tab-button-menu2 (event buffer) (select-window (posn-window (event-start event))) (setq w3m-tab-button-menu-current-buffer nil) (popup-menu w3m-tab-button-menu))) (unless w3m-link-map (setq w3m-link-map (make-sparse-keymap)) (cond ((featurep 'xemacs) (define-key w3m-link-map [(button3)] 'w3m-link-menu)) ;; Don't use [mouse-3], which gets submenus not working in GTK Emacs. ((featurep 'gtk) (define-key w3m-link-map [down-mouse-3] 'w3m-link-menu) (define-key w3m-link-map [drag-mouse-3] 'undefined) (define-key w3m-link-map [mouse-3] 'undefined)) (t (define-key w3m-link-map [mouse-3] 'w3m-link-menu)))) (easy-menu-define w3m-link-menu w3m-link-map "w3m link menu." `("Link" ;; This cannot be omitted for at least MacOS. [,(w3m-make-menu-item "$B%j%s%/$r$3$N%;%C%7%g%s$G3+$/(B" "Open Link in This Session") w3m-view-this-url (w3m-anchor (point))] [,(w3m-make-menu-item "$B%j%s%/$r?7$7$$%;%C%7%g%s$G3+$/(B" "Open Link in New Session") w3m-view-this-url-new-session (w3m-anchor (point))] [,(w3m-make-menu-item "$B%j%s%/$r(B browse-url $B$G3+$/(B" "Open Link using browse-url") w3m-view-url-with-browse-url (w3m-anchor (point))] "-" [,(w3m-make-menu-item "$B$3$N%j%s%/$r%V%C%/%^!<%/(B..." "Bookmark This Link...") w3m-bookmark-add-this-url (w3m-anchor (point))] [,(w3m-make-menu-item "$BL>A0$rIU$1$F%j%s%/@h$rJ]B8(B..." "Save Link As...") w3m-download-this-url (w3m-anchor (point))] [,(w3m-make-menu-item "$BL>A0$rIU$1$F2hA|$rJ]B8(B..." "Save Image As...") w3m-download-this-image (w3m-image (point))] [,(w3m-make-menu-item "$B%j%s%/$N(B URL $B$r%3%T!<(B" "Copy Link Location") w3m-print-this-url (w3m-anchor (point))] [,(w3m-make-menu-item "$B2hA|$N(B URL $B$r%3%T!<(B" "Copy Image Location") w3m-print-this-image-url (w3m-image (point))])) (defun w3m-link-menu (event) "Pop up a link menu." (interactive "e") (mouse-set-point event) (popup-menu w3m-link-menu)) (defvar w3m-buffer-unseen nil) (make-variable-buffer-local 'w3m-buffer-unseen) (defun w3m-set-buffer-unseen (&optional url) (setq w3m-buffer-unseen t) (w3m-make-local-hook 'pre-command-hook) (add-hook 'pre-command-hook 'w3m-set-buffer-seen nil t)) (defun w3m-set-buffer-seen () (setq w3m-buffer-unseen nil) (remove-hook 'pre-command-hook 'w3m-set-buffer-seen t)) (defun w3m-move-unseen-buffer () "Move to the next unseen buffer." (interactive) (when (eq major-mode 'w3m-mode) (let* ((bufs (w3m-list-buffers)) (right (memq (current-buffer) bufs)) unseen) (setq unseen (catch 'unseen (dolist (buf (append right bufs)) (when (w3m-unseen-buffer-p buf) (throw 'unseen buf))))) (if (not unseen) (message "No unseen buffer.") (switch-to-buffer unseen) (run-hooks 'w3m-select-buffer-hook) (w3m-select-buffer-update))))) (defun w3m-mode () "Major mode for browsing web. \\\ \\[w3m-view-this-url] Display the page pointed to by the link under point. You may use the prefix arg `2' or\ `\\[universal-argument] \\\ \\[universal-argument-more]\\' to make a new session. \\[w3m-mouse-view-this-url] Follow the link under the mouse pointer. If w3m-use-form is t, `\\[w3m-view-this-url]' and\ `\\[w3m-mouse-view-this-url]' enable you to enter forms. You may use the prefix arg `2' or\ `\\[universal-argument] \\\ \\[universal-argument-more]\\' to make a new session. \\[w3m-view-this-url-new-session] Display the page of the link\ in a new session. If the region is active, visit all the links within the region. \\[w3m-mouse-view-this-url-new-session] Display the page of the link\ in a new session by mouse. \\[w3m-submit-form] Submit the form at point. \\[w3m-reload-this-page] Reload the current page. \\[w3m-reload-all-pages] Reload all the pages. \\[w3m-redisplay-this-page] Redisplay the current page. \\[w3m-redisplay-with-content-type] Redisplay the page, specifying\ a content type. \\[w3m-redisplay-with-charset] Redisplay the current page, specifying\ a charset. \\[w3m-redisplay-and-reset] Redisplay the current page and reset\ the user-specified charset and\n\tcontent type. \\[w3m-next-anchor] Move the point to the next anchor. \\[w3m-previous-anchor] Move the point to the previous anchor. \\[w3m-next-form] Move the point to the next form. \\[w3m-previous-form] Move the point to the previous form. \\[w3m-next-image] Move the point to the next image. \\[w3m-previous-image] Move the point to the previous image. \\[w3m-view-previous-page] Move back to the previous page in the history. \\[w3m-view-next-page] Move forward to the next page in the history. \\[w3m-view-parent-page] Attempt to move to the parent directory of\ the page. \\[w3m-goto-url] Visit the web page. \\[w3m-goto-url-new-session] Visit the web page in a new session. \\[w3m-goto-new-session-url] Open page of which url is specified by\ `w3m-new-session-url' in\n\ta new session. \\[w3m-gohome] Go to the Home page. \\[w3m-view-url-with-browse-url] Open a link using `browse-url'. \\[w3m-delete-left-tabs] Delete tabs on the left side of\ the current tab. \\[w3m-delete-right-tabs] Delete tabs on the right side of\ the current tab. \\[w3m-tab-move-left] Move this tab N (default 1) times to the left. \\[w3m-tab-move-right] Move this tab N (default 1) times to the right. \\[w3m-download] Download the URL. \\[w3m-download-this-url] Download the URL under point. \\[w3m-view-image] Display the image under point in the external viewer. \\[w3m-save-image] Save the image under point to a file. \\[w3m-toggle-inline-image] Toggle the visibility of an image under point. \\[w3m-toggle-inline-images] Toggle the visibility of all images. \\[w3m-turnoff-inline-images] Turn off to display all images. \\[w3m-zoom-out-image] Zoom in an image on the point. \\[w3m-zoom-in-image] Zoom out an image on the point. \\[w3m-print-this-url] Display the url under point and put it into\ `kill-ring'. \\[w3m-print-current-url] Display the url of the current page and put\ it into `kill-ring'. \\[w3m-view-source] Display the html source of the current page. \\[w3m-view-header] Display the header of the current page. \\[w3m-edit-current-url] Edit the local file displayed as the current\ page. \\[w3m-edit-this-url] Edit the local file which is pointed to by URL under\ point. \\[w3m-cookie] Display cookies and enable you to manage them. \\[w3m-scroll-up-or-next-url] Scroll up the current window, or go to the\ next page. \\[w3m-scroll-down-or-previous-url] Scroll down the current window, or\ go to the previous page. \\[w3m-scroll-up] Scroll the current window up one line (or lines\ of which the number\n\tyou specify by the prefix argument). \\[w3m-scroll-left] Scroll to the left. \\[w3m-scroll-right] Scroll to the right. \\[w3m-shift-left] Shift to the left. \\[w3m-shift-right] Shift to the right. \\[w3m-horizontal-recenter] Recenter horizontally. \\[w3m-beginning-of-line] Go to the entire beginning of line, may be\ accompanied by scrolling. \\[w3m-end-of-line] Go to the entire end of line, may be accompanied\ by scrolling. \\[next-line] Next line. \\[previous-line] Previous line. \\[forward-char] Forward char. \\[backward-char] Backward char. \\[goto-line] Go to the line, specifying the line number (beginning with 1). \\[w3m-history-store-position] Mark the current position. \\[w3m-history-restore-position] Go to the last marked position. \\[w3m-history] Display the history of pages you have visited in the\ session. If it is called with the prefix arg, it displays the arrived URLs. \\[w3m-antenna] Display the report of changes in web pages. If it is called with the prefix arg, it updates the report. \\[w3m-antenna-add-current-url] Add the current url to the antenna database. \\[w3m-search] Query to the search engine a word. To change the server, give any prefix argument to the command. \\[w3m-search-new-session] Query to the search engine a word in a new session. To change the server, give any prefix argument to the command. \\[w3m-weather] Display a weather report. To change the local area, give any prefix argument to the command. \\[w3m-dtree] Display a directory tree. If the prefix arg is given, display files in addition to directories. \\[w3m-namazu] Search files with Namazu. To change the index, give any prefix argument to the command. \\[w3m-pipe-source] Pipe a page source to a shell command. \\[w3m-bookmark-view] Display the bookmark. \\[w3m-bookmark-view-new-session] Display the bookmark on a new session. \\[w3m-bookmark-add-current-url] Add a url of the current page to\ the bookmark. If the prefix arg is given, the user will be prompted for the url. \\[w3m-bookmark-add-all-urls] Add urls of all pages being visited to\ the bookmark. \\[w3m-bookmark-add-this-url] Add the url under point to the bookmark. \\[w3m-create-empty-session] Create an empty page as a new session and\ visit it. \\[w3m-copy-buffer] Create a copy of the current page as a new session. \\[w3m-next-buffer] Turn the page of emacs-w3m buffers ahead. \\[w3m-previous-buffer] Turn the page of emacs-w3m buffers behind. \\[w3m-move-unseen-buffer] Move to the next unseen buffer. \\[w3m-select-buffer] Pop to the emacs-w3m buffers selection window up. \\[w3m-switch-buffer] Select one of emacs-w3m buffers at the current window. \\[w3m-delete-buffer] Delete the current emacs-w3m buffer. \\[w3m-delete-other-buffers] Delete emacs-w3m buffers except for the\ current buffer. \\[w3m] Start browsing web with emacs-w3m. \\[w3m-close-window] Close all emacs-w3m windows, without deleteing\ buffers. \\[w3m-quit] Exit browsing web. All emacs-w3m buffers will be deleted. \\[w3m-process-stop] Try to stop internal processes of a page. \\[describe-mode] describe-mode. \\[w3m-mouse-major-mode-menu] Pop up a w3m-mode specific menu of mouse\ commands. \\[report-emacs-w3m-bug] Send a bug report to the emacs-w3m team. " (kill-all-local-variables) (buffer-disable-undo) (setq major-mode 'w3m-mode) (setq mode-name "w3m") (use-local-map w3m-mode-map) ;; Force paragraph direction to be left-to-right. Don't make it ;; bound globally in old Emacsen and XEmacsen. (set (make-local-variable 'bidi-paragraph-direction) 'left-to-right) (setq truncate-lines t w3m-display-inline-images w3m-default-display-inline-images) (when w3m-auto-show (when (boundp 'auto-hscroll-mode) (set (make-local-variable 'auto-hscroll-mode) nil)) (when (boundp 'automatic-hscrolling) (set (make-local-variable 'automatic-hscrolling) nil)) (when (boundp 'auto-show-mode) (set (make-local-variable 'auto-show-mode) nil)) (when (boundp 'hscroll-mode) (set (make-local-variable 'hscroll-mode) nil))) (make-local-variable 'list-buffers-directory) (w3m-static-unless (featurep 'xemacs) (setq show-trailing-whitespace nil)) (when (boundp 'mwheel-scroll-up-function) (eval '(set (make-local-variable (quote mwheel-scroll-up-function)) (function w3m-scroll-up))) (eval '(set (make-local-variable (quote mwheel-scroll-down-function)) (function w3m-scroll-down)))) (w3m-setup-toolbar) (w3m-setup-menu) (run-hooks 'w3m-mode-setup-functions) (w3m-run-mode-hooks 'w3m-mode-hook)) (condition-case nil (define-obsolete-function-alias 'w3m-scroll-up-1 'w3m-scroll-up "2013-01-23") (wrong-number-of-arguments ;; XEmacs (define-obsolete-function-alias 'w3m-scroll-up-1 'w3m-scroll-up))) (defun w3m-scroll-up (&optional arg interactive-p) "Scroll the current window up ARG lines. When called interactively, ARG defaults to 1." (interactive (list current-prefix-arg t)) (scroll-up (or arg (and interactive-p 1)))) (defun w3m-scroll-up-or-next-url (arg) "Scroll the current window up ARG lines, or go to the next page." (interactive "P") (if (w3m-image-page-displayed-p) (image-scroll-up arg) (w3m-keep-region-active) (if (and w3m-next-url (pos-visible-in-window-p (let ((cur (point))) (goto-char (point-max)) (skip-chars-backward "\t\n\r ") (forward-line 1) (prog1 (point) (goto-char cur))))) (let ((w3m-prefer-cache t)) (w3m-history-store-position) (w3m-goto-url w3m-next-url)) (w3m-scroll-up arg)))) (defun w3m-scroll-down (&optional arg interactive-p) "Scroll the current window down ARG lines. When called interactively, ARG defaults to 1." (interactive (list current-prefix-arg t)) (scroll-down (or arg (and interactive-p 1)))) (defun w3m-scroll-down-or-previous-url (arg) "Scroll the current window down ARG lines, or go to the previous page." (interactive "P") (if (w3m-image-page-displayed-p) (image-scroll-down arg) (w3m-keep-region-active) (if (and w3m-previous-url (pos-visible-in-window-p (point-min))) (let ((w3m-prefer-cache t)) (w3m-history-store-position) (w3m-goto-url w3m-previous-url)) (w3m-scroll-down arg)))) (defvar w3m-current-longest-line nil "The length of the longest line in the window.") (defun w3m-set-current-longest-line () "Set the value of `w3m-current-longest-line'." (save-excursion (goto-char (window-start)) (end-of-line) (setq w3m-current-longest-line 0) ;; The XEmacs version of `window-end' returns the point beyond ;; `point-max' if it is visible in the window. (let ((end (min (window-end) (point-max)))) (while (progn (skip-chars-backward " ") (setq w3m-current-longest-line (max w3m-current-longest-line (current-column))) (end-of-line 2) (< (point) end)))))) (defun w3m-scroll-left (arg) "Scroll to the left. If ARG (the prefix) is a number, scroll the window ARG columns. Otherwise, it defaults to `w3m-horizontal-scroll-columns'." (interactive "P") (setq arg (if arg (prefix-numeric-value arg) w3m-horizontal-scroll-columns)) (if (w3m-image-page-displayed-p) (image-forward-hscroll arg) (when (if (memq last-command '(w3m-scroll-left w3m-shift-left)) (or (< (window-hscroll) w3m-current-longest-line) (progn (ding) nil)) (w3m-set-current-longest-line) (< (window-hscroll) w3m-current-longest-line)) (w3m-horizontal-scroll 'left arg)))) (defun w3m-scroll-right (arg) "Scroll to the right. If ARG (the prefix) is a number, scroll the window ARG columns. Otherwise, it defaults to `w3m-horizontal-scroll-columns'." (interactive "P") (setq arg (if arg (prefix-numeric-value arg) w3m-horizontal-scroll-columns)) (if (w3m-image-page-displayed-p) (image-backward-hscroll arg) (if (zerop (window-hscroll)) (when (memq last-command '(w3m-scroll-right w3m-shift-right)) (ding)) (w3m-horizontal-scroll 'right arg)))) (defun w3m-shift-left (arg) "Shift to the left. Shift means a fine level horizontal scrolling. If ARG (the prefix) is a number, scroll the window ARG columns. Otherwise, it defaults to `w3m-horizontal-shift-columns'." (interactive "P") (setq arg (if arg (prefix-numeric-value arg) w3m-horizontal-shift-columns)) (if (w3m-image-page-displayed-p) (image-forward-hscroll arg) (when (if (memq last-command '(w3m-scroll-left w3m-shift-left)) (or (< (window-hscroll) w3m-current-longest-line) (progn (ding) nil)) (w3m-set-current-longest-line) (< (window-hscroll) w3m-current-longest-line)) (w3m-horizontal-scroll 'left arg)))) (defun w3m-shift-right (arg) "Shift to the right. Shift means a fine level horizontal scrolling. If ARG (the prefix) is a number, scroll the window ARG columns. Otherwise, it defaults to `w3m-horizontal-shift-columns'." (interactive "P") (setq arg (if arg (prefix-numeric-value arg) w3m-horizontal-shift-columns)) (if (w3m-image-page-displayed-p) (image-backward-hscroll arg) (if (zerop (window-hscroll)) (when (memq last-command '(w3m-scroll-right w3m-shift-right)) (ding)) (w3m-horizontal-scroll 'right arg)))) (defvar w3m-horizontal-scroll-done nil) (make-variable-buffer-local 'w3m-horizontal-scroll-done) (defvar w3m-current-position '(-1 0 0)) (make-variable-buffer-local 'w3m-current-position) (defun w3m-auto-show () "Scroll horizontally so that the point is visible." (when (and truncate-lines w3m-auto-show (not w3m-horizontal-scroll-done) (not (and (eq last-command this-command) (or (eq (point) (point-min)) (eq (point) (point-max))))) (or (memq this-command '(beginning-of-buffer end-of-buffer)) (and (symbolp this-command) (string-match "\\`i?search-" (symbol-name this-command))) (and (markerp (nth 1 w3m-current-position)) (markerp (nth 2 w3m-current-position)) (>= (point) (marker-position (nth 1 w3m-current-position))) (<= (point) (marker-position (nth 2 w3m-current-position)))))) (w3m-horizontal-on-screen)) (setq w3m-horizontal-scroll-done nil)) ;; Ailiases to meet XEmacs bugs? (eval-and-compile (unless (fboundp 'w3m-window-hscroll) (defalias 'w3m-window-hscroll 'window-hscroll)) (unless (fboundp 'w3m-current-column) (defalias 'w3m-current-column 'current-column)) (unless (fboundp 'w3m-set-window-hscroll) (defalias 'w3m-set-window-hscroll 'set-window-hscroll))) (defun w3m-horizontal-scroll (direction ncol) "Scroll the window NCOL columns horizontally to DIRECTION. DIRECTON should be the symbol `left' which specifies to scroll to the left, or any other Lisp object meaning to scroll to the right. NCOL should be a number. This function is a subroutine called by the commands `w3m-scroll-left', `w3m-scroll-right', `w3m-shift-left' and `w3m-shift-right'." (setq w3m-horizontal-scroll-done t) (let ((inhibit-point-motion-hooks t)) (w3m-set-window-hscroll (selected-window) (max 0 (+ (w3m-window-hscroll) (if (eq direction 'left) ncol (- ncol))))) (let ((hs (w3m-window-hscroll))) (unless (and (>= (- (current-column) hs) 0) (< (- (current-column) hs) (window-width))) (move-to-column (if (eq direction 'left) hs (+ hs (window-width) (w3m-static-if (featurep 'xemacs) -3 -2)))))))) (defun w3m-horizontal-on-screen () "Scroll the window horizontally so that the current position is visible. See the documentation for the `w3m-horizontal-scroll-division' variable for details." (when w3m-auto-show (setq w3m-horizontal-scroll-done t) (let ((cc (w3m-current-column)) (hs (w3m-window-hscroll)) (ww (window-width)) (inhibit-point-motion-hooks t)) (unless (and (>= (- cc hs) 0) (< (+ (- cc hs) (if (eolp) 0 (w3m-static-if (featurep 'xemacs) 3 2))) ;; '$$' ww)) (w3m-set-window-hscroll (selected-window) (max 0 (- cc (if (> hs cc) (/ ww w3m-horizontal-scroll-division) (* (/ ww w3m-horizontal-scroll-division) (1- w3m-horizontal-scroll-division)))))))))) (defun w3m-horizontal-recenter (&optional arg) "Recenter horizontally. With ARG, put the point on the column ARG. If `truncate-lines' is nil, it does nothing besides resetting the window's hscroll." (interactive "P") (if truncate-lines (progn (cond ((< (w3m-current-column) (window-hscroll)) (move-to-column (w3m-window-hscroll)) (setq arg 0)) ((>= (w3m-current-column) (+ (window-hscroll) (window-width))) (move-to-column (+ (w3m-window-hscroll) (window-width) -2)) (setq arg -1)) ((listp arg) (setq arg (car arg)))) (w3m-set-window-hscroll (selected-window) (if (numberp arg) (if (>= arg 0) (max (- (current-column) arg) 0) (let* ((home (point)) (inhibit-point-motion-hooks t) (maxcolumn (prog2 (end-of-line) (1- (current-column)) (goto-char home)))) (max (min (- (current-column) (window-width) arg -2) maxcolumn) 0))) (max (- (current-column) (/ (window-width) 2) -1) 0)))) (set-window-hscroll (selected-window) 0))) (defun w3m-recenter () "Recenter according to `w3m-view-recenter'." (when (and w3m-view-recenter (eq (window-buffer) (current-buffer))) (recenter (if (eq t w3m-view-recenter) '(4) ;; per "C-u C-l" to recenter in middle w3m-view-recenter)))) ;; otherwise an integer (defun w3m-beginning-of-line (&optional arg) "Make the beginning of the line visible and move the point to there." (interactive "P") (if (w3m-image-page-displayed-p) (image-bol (or arg 1)) (w3m-keep-region-active) (when (listp arg) (setq arg (car arg))) (set-window-hscroll (selected-window) 0) (beginning-of-line arg))) (defun w3m-end-of-line (&optional arg) "Move the point to the end of the line and scroll the window left. It makes the ends of upper and lower three lines visible. If `truncate-lines' is nil, it works identically as `end-of-line'." (interactive "P") (if (w3m-image-page-displayed-p) (image-eol (or arg 1)) (w3m-keep-region-active) (if truncate-lines (progn (when (listp arg) (setq arg (car arg))) (forward-line (1- (or arg 1))) (let ((inhibit-point-motion-hooks t) home) (end-of-line) (setq home (point) arg (current-column)) (dolist (n '(-3 -2 -1 1 2 3)) (forward-line n) (end-of-line) (setq arg (max (current-column) arg)) (goto-char home))) (setq temporary-goal-column arg this-command 'next-line) (w3m-set-window-hscroll (selected-window) (max (- arg (window-width) -2) 0))) (set-window-hscroll (selected-window) 0) (end-of-line arg)))) (defun w3m-pattern-uri-replace (uri format) "Create a new uri from URI matched by last search according to FORMAT." (replace-match format nil nil uri)) (defun w3m-uri-replace (uri) "Return the converted URI according to `w3m-uri-replace-alist'." (catch 'found-replacement (dolist (elem w3m-uri-replace-alist uri) (when (string-match (car elem) uri) (throw 'found-replacement (cond ((consp (cdr elem)) (apply (cadr elem) uri (cddr elem))) ;; Rest conditions are inserted in order to keep ;; backward compatibility. ((functionp (cdr elem)) (funcall (cdr elem) uri)) ((stringp (cdr elem)) (w3m-pattern-uri-replace uri (cdr elem))))))))) (defun w3m-goto-mailto-url (url &optional post-data) (let ((before (nreverse (buffer-list))) comp info body buffers buffer function) (setq url (w3m-decode-entities-string (w3m-url-decode-string url))) (save-window-excursion (if (and (symbolp w3m-mailto-url-function) (fboundp w3m-mailto-url-function)) (funcall w3m-mailto-url-function url) ;; Require `mail-user-agent' setting (unless (and (boundp 'mail-user-agent) (symbol-value 'mail-user-agent)) (error "You must specify the valid value to `mail-user-agent'")) (unless (and (setq comp (get (symbol-value 'mail-user-agent) 'composefunc)) (fboundp comp)) (error "No function to compose a mail in `%s'" (symbol-value 'mail-user-agent))) (if (or (featurep 'rfc2368) (condition-case nil (require 'rfc2368) (error nil))) ;; Use rfc2368.el (progn (setq info (rfc2368-parse-mailto-url url) body (assoc "Body" info) info (delq body info) body (delq nil (list (cdr body)))) (when post-data (setq body (nconc body (list (if (consp post-data) (car post-data) post-data))))) (apply comp (append (mapcar (lambda (x) (prog1 (cdr (assoc x info)) (setq info (delq (assoc x info) info)))) '("To" "Subject")) (list info)))) ;; W/o rfc2368.el (string-match ":\\([^?]+\\)" url) (funcall comp (match-string 1 url))))) (setq buffers (nreverse (buffer-list))) (save-current-buffer (while buffers (setq buffer (car buffers) buffers (cdr buffers)) (unless (memq buffer before) (set-buffer buffer) (when (setq function (cdr (assq major-mode w3m-mailto-url-popup-function-alist))) (setq buffers nil))))) (when function (let (same-window-buffer-names same-window-regexps mod) (w3m-static-if (boundp 'display-buffer-alist) (let (display-buffer-alist) (funcall function buffer)) (let (special-display-buffer-names special-display-regexps) (funcall function buffer))) (when body (setq mod (buffer-modified-p)) (goto-char (point-min)) (search-forward (concat "\n" (regexp-quote mail-header-separator) "\n") nil 'move) (unless (bolp) (insert "\n")) (while body (insert (pop body)) (unless (bolp) (insert "\n"))) (set-buffer-modified-p mod)))))) (defun w3m-convert-ftp-url-for-emacsen (url) (or (and (string-match "^ftp://?\\([^/@]+@\\)?\\([^/]+\\)\\(?:/~/\\)?" url) (concat "/" (if (match-beginning 1) (substring url (match-beginning 1) (match-end 1)) "anonymous@") (substring url (match-beginning 2) (match-end 2)) ":" (substring url (match-end 2)))) (error "URL is strange"))) (defun w3m-file-directory-p (file) "Emulate the `file-directory-p' function for the remote file FILE." (when (file-exists-p file) (let (dirp (i 10)) (catch 'loop (while (> i 0) (setq dirp (car (file-attributes file))) (if (stringp dirp) (setq file (expand-file-name dirp (file-name-directory (directory-file-name file))) i (1- i)) (throw 'loop dirp))))))) (defun w3m-goto-ftp-url (url &optional filename) "Copy a remote file to the local system or run dired for ftp URLs. If URL looks like a file, it will perform the copy. Otherwise, it will run `dired-other-window' using `ange-ftp' or `efs'. Optional FILENAME specifies the name of a local file. If FILENAME is omitted, this function will prompt user for it." (let ((ftp (w3m-convert-ftp-url-for-emacsen url)) file) (if (or (string-equal "/" (substring ftp -1)) ;; `file-directory-p' takes a long time for remote files. ;; `file-directory-p' returns t in Emacsen, anytime. (w3m-file-directory-p ftp)) (dired-other-window ftp) (setq file (file-name-nondirectory ftp)) (unless filename (setq filename (w3m-read-file-name nil nil file))) (unless (file-writable-p (file-name-directory filename)) (error "Permission denied, %s" (file-name-directory filename))) (when (or (not (file-exists-p filename)) (if (file-writable-p filename) (and (prog1 (y-or-n-p (format "File(%s) already exists. Overwrite? " filename)) (message nil)) (progn (delete-file filename) t)) (error "Permission denied, %s" filename))) (copy-file ftp filename) (message "Wrote %s" filename))))) (unless w3m-doc-view-map (setq w3m-doc-view-map (make-sparse-keymap)) (define-key w3m-doc-view-map "q" 'w3m-doc-view-quit)) (defun w3m-doc-view (url) "View PDF/PostScript/DVI files using `doc-view-mode'. `w3m-pop-up-windows' and `w3m-pop-up-frames' control how the document window turns up." (let* ((basename (file-name-nondirectory (w3m-url-strip-query url))) (regexp (concat "\\`" (regexp-quote basename) "\\(?:<[0-9]+>\\)?\\'")) (buffers (buffer-list)) buffer data case-fold-search) (save-current-buffer (while buffers (setq buffer (pop buffers)) (if (and (string-match regexp (buffer-name buffer)) (progn (set-buffer buffer) (eq major-mode 'doc-view-mode)) (equal buffer-file-name url)) (setq buffers nil) (setq buffer nil)))) (unless (prog1 buffer (unless buffer (setq buffer (generate-new-buffer basename) data (buffer-string))) (let ((pop-up-windows w3m-pop-up-windows) (pop-up-frames w3m-pop-up-frames)) (pop-to-buffer buffer))) (set-buffer-multibyte nil) (insert data) (set-buffer-modified-p nil) (setq buffer-file-name url) (doc-view-mode) (use-local-map w3m-doc-view-map) (set-keymap-parent w3m-doc-view-map doc-view-mode-map) 'internal-view))) (defun w3m-doc-view-quit (&optional kill) "Quit the `doc-view-mode' window that emacs-w3m launches. With the prefix argument KILL, kill the buffer." (interactive "P") (cond (w3m-pop-up-frames (when (prog1 (one-window-p t) (quit-window kill)) (delete-frame (selected-frame)))) (w3m-pop-up-windows (if (fboundp 'quit-window) (quit-window kill) (if kill (progn (set-buffer-modified-p nil) (kill-buffer (current-buffer))) (bury-buffer))) (unless (eq (next-window nil 'no-mini) (selected-window)) (delete-window))))) (defun w3m-store-current-position () "Memorize the current positions whenever every command starts. The value will be held in the `w3m-current-position' variable. This function is designed as the hook function which is registered to `pre-command-hook' by `w3m-buffer-setup'." (setq w3m-current-position (list (point) (copy-marker (point-at-bol)) (copy-marker (point-at-eol))))) (defun w3m-check-current-position () "Run `w3m-after-cursor-move-hook' if the point gets away from the window. This function is designed as the hook function which is registered to `post-command-hook' by `w3m-buffer-setup'." (when (/= (point) (car w3m-current-position)) ;; To bind `deactivate-mark' to nil protects the mark from being ;; deactivated. `deactivate-mark' is set when any function modifies ;; a buffer, and it causes the deactivation of the mark. (let ((deactivate-mark nil)) (run-hooks 'w3m-after-cursor-move-hook)))) (defun w3m-buffer-setup () "Generate a new buffer, select it and set it up for emacs-w3m. When the current buffer has already been prepared, it won't bother to generate a new buffer." (unless (eq major-mode 'w3m-mode) (let ((buffer (w3m-alive-p t))) (set-buffer (or buffer (w3m-generate-new-buffer "*w3m*"))))) ;; It may have been set to nil for viewing a page source or a header. (setq truncate-lines t) (w3m-make-local-hook 'pre-command-hook) (w3m-make-local-hook 'post-command-hook) (add-hook 'pre-command-hook 'w3m-store-current-position nil t) (add-hook 'post-command-hook 'w3m-check-current-position nil t) (w3m-initialize-graphic-icons) (setq mode-line-buffer-identification `(,@(w3m-static-if (featurep 'xemacs) (list (cons modeline-buffer-id-right-extent "%b") " ") (nconc (propertized-buffer-identification "%b") '(" "))) (w3m-current-process w3m-modeline-process-status-on (w3m-current-ssl (w3m-display-inline-images w3m-modeline-ssl-image-status-on w3m-modeline-ssl-status-off) (w3m-display-inline-images w3m-modeline-image-status-on w3m-modeline-status-off))) (w3m-show-graphic-icons-in-mode-line (w3m-use-favicon (w3m-favicon-image w3m-modeline-favicon w3m-modeline-separator) w3m-modeline-separator) w3m-modeline-separator) (w3m-current-process "Loading..." ,(if (fboundp 'format-mode-line) '(:eval (w3m-modeline-title)) (if w3m-use-title-buffer-name "" 'w3m-current-title))))) (unless (assq 'w3m-current-process mode-line-process) (setq mode-line-process (cons (list 'w3m-current-process 'w3m-process-modeline-string) mode-line-process)))) (defvar w3m-modeline-title-string nil "Internal variable used to keep contents to be shown in the mode line. This is a buffer-local variable.") (make-variable-buffer-local 'w3m-modeline-title-string) (defvar w3m-modeline-title-timer nil "Say time has not gone by after the mode line was updated last time. It is used to control the `w3m-modeline-title' function running too frequently, set by the function itself and cleared by a timer.") (make-variable-buffer-local 'w3m-modeline-title-timer) (eval-when-compile (unless (fboundp 'format-mode-line) (defalias 'format-mode-line 'ignore))) (defun w3m-modeline-title () "Return a truncated title not to cut the right end of the mode line. It currently works only with Emacs 22 and newer." (if w3m-use-title-buffer-name "" (when w3m-current-title (or (and w3m-modeline-title-timer w3m-modeline-title-string) (prog2 (setq w3m-modeline-title-string w3m-current-title w3m-modeline-title-timer t) (let ((excess (- (string-width (condition-case nil (format-mode-line mode-line-format 1) (error ""))) (window-width))) (tlen (string-width w3m-current-title))) (when (and (> excess 0) (> tlen 3)) (setq w3m-modeline-title-string (concat (w3m-replace-in-string (w3m-truncate-string w3m-current-title (max (- tlen excess 3) 2)) "[\t ]+\\'" "") "..."))) w3m-modeline-title-string) (run-at-time 0.5 nil (lambda (buffer) (when (buffer-live-p buffer) (with-current-buffer buffer (setq w3m-modeline-title-timer nil)))) (current-buffer))))))) ;;;###autoload (defun w3m-goto-url (url &optional reload charset post-data referer handler element no-popup save-pos) "Visit World Wide Web pages in the current buffer. This is the primitive function of `w3m'. If the second argument RELOAD is non-nil, reload a content of URL. Except that if it is 'redisplay, re-display the page without reloading. The third argument CHARSET specifies a charset to be used for decoding a content. The fourth argument POST-DATA should be a string or a cons cell. If it is a string, it makes this function request a body as if the content-type is \"x-www-form-urlencoded\". If it is a cons cell, the car of a cell is used as the content-type and the cdr of a cell is used as the body. If the fifth argument REFERER is specified, it is used for a Referer: field for this request. The remaining HANDLER, ELEMENT[1], NO-POPUP, and SAVE-POS[2] are for the internal operations of emacs-w3m. You can also use \"quicksearch\" url schemes such as \"gg:emacs\" which would search for the term \"emacs\" with the Google search engine. See the `w3m-search' function and the variable `w3m-uri-replace-alist'. Notes for the developers: \[1] ELEMENT is a history element which has already been registered in the `w3m-history-flat' variable. It is corresponding to URL to be retrieved at this time, not for the url of the current page. \[2] SAVE-POS leads this function to save the current emacs-w3m window configuration; i.e. to run `w3m-history-store-position'. `w3m-history-store-position' should be called in a w3m-mode buffer, so this will be convenient if a command that calls this function may be invoked in other than a w3m-mode buffer." (interactive (list (if w3m-current-process (error "%s" (substitute-command-keys "Cannot run two w3m processes simultaneously \ \(Type `\\\\[w3m-process-stop]' to stop asynchronous process)")) (w3m-input-url "Open URL in current buffer" nil nil nil 'feeling-searchy 'no-initial)) current-prefix-arg (w3m-static-if (fboundp 'universal-coding-system-argument) coding-system-for-read))) (when (and (stringp url) (not (w3m-interactive-p))) (setq url (w3m-canonicalize-url url))) (set-text-properties 0 (length url) nil url) (unless (or (w3m-url-local-p url) (string-match "\\`about:" url)) (w3m-string-match-url-components url) (setq url (concat (save-match-data (w3m-url-transfer-encode-string (substring url 0 (match-beginning 8)))) (if (match-beginning 8) (concat "#" (match-string 9 url)) "")))) (cond ;; process mailto: protocol ((string-match "\\`mailto:" url) (w3m-goto-mailto-url url post-data)) ;; process ftp: protocol ((and w3m-use-ange-ftp (string-match "\\`ftps?://" url) (not (string= "text/html" (w3m-local-content-type url)))) (w3m-goto-ftp-url url)) ;; find-file directly ((condition-case nil (and (w3m-url-local-p url) w3m-local-find-file-function (let ((base-url (w3m-url-strip-fragment url)) (match (car w3m-local-find-file-regexps)) nomatch file) (and (or (not match) (string-match match base-url)) (not (and (setq nomatch (cdr w3m-local-find-file-regexps)) (string-match nomatch base-url))) (setq file (w3m-url-to-file-name base-url)) (file-exists-p file) (not (file-directory-p file)) (prog1 t (funcall (if (functionp w3m-local-find-file-function) w3m-local-find-file-function (eval w3m-local-find-file-function)) file))))) (error nil))) ;; process buffer-local url ((w3m-buffer-local-url-p url) (let (file-part fragment-part) (w3m-string-match-url-components url) (setq file-part (concat (match-string 4 url) (match-string 5 url)) fragment-part (match-string 9 url)) (cond ((and (string= file-part "") fragment-part) (w3m-search-name-anchor fragment-part)) ((not (string= file-part "")) (w3m-goto-url (w3m-expand-url (substring url (match-beginning 4)) (concat "file://" default-directory)) reload charset post-data referer handler element)) (t (w3m-message "No URL at point"))))) ((w3m-url-valid url) (w3m-buffer-setup) ; Setup buffer. (w3m-arrived-setup) ; Setup arrived database. (unless no-popup (w3m-popup-buffer (current-buffer))) (w3m-cancel-refresh-timer (current-buffer)) (when w3m-current-process (error "%s" (substitute-command-keys " Cannot run two w3m processes simultaneously \ \(Type `\\\\[w3m-process-stop]' to stop asynchronous process)"))) (w3m-process-stop (current-buffer)) ; Stop all processes retrieving images. (w3m-idle-images-show-unqueue (current-buffer)) ;; Store the current position in the history structure if SAVE-POS ;; is set or this command is called interactively. (when (or save-pos (w3m-interactive-p)) (w3m-history-store-position)) ;; Access url group (if (string-match "\\`group:" url) (let ((urls (mapcar 'w3m-url-decode-string (split-string (substring url (match-end 0)) "&"))) (w3m-async-exec (and w3m-async-exec-with-many-urls w3m-async-exec)) buffers) (w3m-process-do (type (save-window-excursion (prog1 (w3m-goto-url (pop urls)) (dotimes (i (length urls)) (push (w3m-copy-buffer nil nil nil 'empty nil t) buffers)) (dolist (url (nreverse urls)) (with-current-buffer (pop buffers) (w3m-goto-url url)))))) type)) ;; Retrieve the page. (lexical-let ((orig url) (url (w3m-url-strip-authinfo url)) (reload (and (not (eq reload 'redisplay)) reload)) (redisplay (eq reload 'redisplay)) (charset charset) (post-data post-data) (referer referer) (name) (history-position (get-text-property (point) 'history-position)) (reuse-history w3m-history-reuse-history-elements)) (when w3m-current-forms ;; Store the current forms in the history structure. (w3m-history-plist-put :forms w3m-current-forms)) (let ((w3m-current-buffer (current-buffer))) (unless element (setq element (if (and (equal referer "about://history/") history-position) (w3m-history-element history-position t) (if w3m-history-reuse-history-elements (w3m-history-assoc url))))) ;; Set current forms using the history structure. (when (setq w3m-current-forms (when (and ;; If reloading, ignore history. (not reload) ;; If post, ignore history. (null post-data) (or (w3m-cache-available-p url) (w3m-url-local-p url))) ;; Don't use `w3m-history-plist-get' here. (plist-get (nthcdr 3 element) :forms))) ;; Mark that the form is from history structure. (setq w3m-current-forms (cons t w3m-current-forms))) (when (and post-data element) ;; Remove processing url's forms from ;; the history structure. (w3m-history-set-plist (cadr element) :forms nil)) ;; local directory URL check (when (and (w3m-url-local-p url) (file-directory-p (w3m-url-to-file-name url)) (setq url (file-name-as-directory url)) (eq w3m-local-directory-view-method 'w3m-dtree) (string-match "\\`file:///" url)) (setq url (replace-match "about://dtree/" nil nil url) orig url)) ;; Split body and fragments. (w3m-string-match-url-components url) (and (match-beginning 8) (setq name (match-string 9 url) url (substring url 0 (match-beginning 8)))) (when (w3m-url-local-p url) (unless (string-match "[^\000-\177]" url) (setq url (w3m-url-decode-string url)))) (w3m-process-do (action (if (and (not reload) (not redisplay) (stringp w3m-current-url) (string= url w3m-current-url)) (progn (w3m-refontify-anchor) 'cursor-moved) (when w3m-name-anchor-from-hist (w3m-history-plist-put :name-anchor-hist (append (list 1 nil) (and (integerp (car w3m-name-anchor-from-hist)) (nthcdr (1+ (car w3m-name-anchor-from-hist)) w3m-name-anchor-from-hist))))) (setq w3m-name-anchor-from-hist (plist-get (nthcdr 3 element) :name-anchor-hist)) (setq w3m-current-process (w3m-retrieve-and-render orig reload charset post-data referer handler)))) (with-current-buffer w3m-current-buffer (setq w3m-current-process nil) (if (not action) (w3m-history-push w3m-current-url (list :title (or w3m-current-title ""))) (w3m-string-match-url-components w3m-current-url) (and (match-beginning 8) (setq name (match-string 9 w3m-current-url))) (when (and name (progn ;; Redisplay to search an anchor sure. (sit-for 0) (w3m-search-name-anchor name nil (not (eq action 'cursor-moved))))) (setf (w3m-arrived-time (w3m-url-strip-authinfo orig)) (w3m-arrived-time url))) (unless (eq action 'cursor-moved) (if (equal referer "about://history/") ;; Don't sprout a new branch for ;; the existing history element. (let ((w3m-history-reuse-history-elements t)) (w3m-history-push w3m-current-url (list :title w3m-current-title)) ;; Fix the history position pointers. (when history-position (setcar w3m-history (w3m-history-regenerate-pointers history-position)))) (let ((w3m-history-reuse-history-elements reuse-history) (position (when (eq 'reload reuse-history) (cadar w3m-history)))) (w3m-history-push w3m-current-url (list :title w3m-current-title)) (when position (w3m-history-set-current position)))) (w3m-history-add-properties (list :referer referer :post-data post-data)) (unless w3m-toggle-inline-images-permanently (setq w3m-display-inline-images w3m-default-display-inline-images)) (when (and w3m-use-form reload) (w3m-form-textarea-files-remove)) (cond ((w3m-display-inline-images-p) (and w3m-force-redisplay (sit-for 0)) (w3m-toggle-inline-images 'force reload)) ((and (w3m-display-graphic-p) (eq action 'image-page)) (and w3m-force-redisplay (sit-for 0)) (w3m-toggle-inline-image 'force reload))))) (setq buffer-read-only t) (set-buffer-modified-p nil) (setq list-buffers-directory w3m-current-title) ;; must be `w3m-current-url' (setq default-directory (w3m-current-directory w3m-current-url)) (w3m-buffer-name-add-title) (w3m-update-toolbar) (let ((real-url (if (w3m-arrived-p url) (or (w3m-real-url url) url) url))) (run-hook-with-args 'w3m-display-functions real-url) (run-hook-with-args 'w3m-display-hook real-url)) (w3m-select-buffer-update) (w3m-session-crash-recovery-save) (and w3m-current-url (stringp w3m-current-url) (or (string-match "\\`about://\\(?:header\\|source\\)/" w3m-current-url) (equal (w3m-content-type w3m-current-url) "text/plain")) (setq truncate-lines nil)) ;; restore position must call after hooks for localcgi. (when (or reload redisplay) (w3m-history-restore-position)) (w3m-set-buffer-unseen) (w3m-refresh-at-time))))))) (t (w3m-message "Invalid URL: %s" url)))) (defun w3m-current-directory (url) "Return a directory used as the current directory in a page visiting URL. See `w3m-default-directory'." (or (and url (stringp url) (let (file) (if (string-match "\\`ftp://" url) (progn (setq file (w3m-convert-ftp-url-for-emacsen url)) (file-name-as-directory (if (string-match "/\\`" file) file (file-name-directory file)))) (and (setq file (w3m-url-to-file-name url)) (file-exists-p file) (file-name-as-directory (if (file-directory-p file) file (file-name-directory file))))))) (let (directory) (file-name-as-directory (or (and (stringp w3m-default-directory) (file-directory-p w3m-default-directory) (expand-file-name w3m-default-directory)) (and (symbolp w3m-default-directory) (boundp w3m-default-directory) (setq directory (symbol-value w3m-default-directory)) (stringp directory) (file-directory-p directory) (expand-file-name directory)) (and (functionp w3m-default-directory) (stringp (setq directory (condition-case nil (funcall w3m-default-directory url) (error nil)))) (file-directory-p directory) (expand-file-name directory)) w3m-profile-directory))))) (defun w3m-refresh-at-time () (when (and w3m-use-refresh w3m-current-refresh) (let ((seconds (car w3m-current-refresh)) (url (cdr w3m-current-refresh))) (setq seconds (max seconds w3m-refresh-minimum-interval)) (if (= seconds 0) (w3m-goto-url-with-timer url (current-buffer)) (setq w3m-refresh-timer (run-at-time seconds nil 'w3m-goto-url-with-timer url (current-buffer))))))) (defun w3m-goto-url-with-timer (url buffer) "Run the `w3m-goto-url' function by the refresh timer." (when (and (w3m-url-valid url) buffer (if (stringp buffer) (get-buffer buffer) (buffer-name buffer))) (cond ((get-buffer-window buffer) (save-selected-window (pop-to-buffer buffer) (with-current-buffer buffer (w3m-cancel-refresh-timer buffer) (if (and w3m-current-url (string= url w3m-current-url)) (w3m-reload-this-page t) (w3m-goto-url url))))) ((buffer-live-p buffer) (let* ((cwin (selected-window)) (cbuf (window-buffer cwin))) (with-current-buffer buffer (w3m-cancel-refresh-timer buffer) (if (and w3m-current-url (string= url w3m-current-url)) (w3m-reload-this-page t t) (w3m-goto-url url nil nil nil nil nil nil t))) (set-window-buffer cwin cbuf))) (t (with-current-buffer buffer (w3m-cancel-refresh-timer buffer)))))) (defun w3m-goto-new-session-url (&optional reload) "Open `w3m-new-session-url' in a new session." (interactive "P") (if (not (eq major-mode 'w3m-mode)) (message "This command can be used in w3m mode only") (w3m-view-this-url-1 w3m-new-session-url reload 'new-session))) ;;;###autoload (defun w3m-goto-url-new-session (url &optional reload charset post-data referer) "Visit World Wide Web pages in a new buffer. If you invoke this command in the emacs-w3m buffer, the new buffer will be created by copying the current buffer. Otherwise, the new buffer will start afresh." (interactive (list (w3m-input-url "Open URL in new buffer" nil (or (w3m-active-region-or-url-at-point) w3m-new-session-url) nil 'feeling-searchy 'no-initial) current-prefix-arg (w3m-static-if (fboundp 'universal-coding-system-argument) coding-system-for-read) nil ;; post-data nil)) ;; referer (let (buffer) (if (not (or (eq 'w3m-mode major-mode) (and (setq buffer (w3m-alive-p)) (prog1 t (w3m-popup-buffer buffer))))) (w3m-goto-url url nil charset post-data) ;; Store the current position in the history structure. (w3m-history-store-position) (switch-to-buffer (setq buffer (w3m-copy-buffer nil "*w3m*" w3m-new-session-in-background 'empty nil t))) (w3m-display-progress-message url) (w3m-goto-url url (or reload ;; When new URL has `name' portion, we have to ;; goto the base url because generated buffer ;; has no content at this moment. (and (w3m-string-match-url-components url) (match-beginning 8) 'redisplay)) charset post-data referer) ;; Delete useless newly created buffer if it is empty. (w3m-delete-buffer-if-empty buffer)))) (defun w3m-move-point-for-localcgi (url) (when (and (w3m-url-local-p url) (file-directory-p (w3m-url-to-file-name url)) (not (eq w3m-local-directory-view-method 'w3m-dtree)) (= (point-min) (point)) (w3m-search-name-anchor "current" 'quiet)) (recenter (/ (window-height) 5)))) ;;;###autoload (defun w3m-gohome () "Go to the Home page." (interactive) (unless w3m-home-page (error "You have to specify the value of `w3m-home-page'")) (w3m-goto-url w3m-home-page t nil nil nil nil nil nil t)) ;;;###autoload (defun w3m-create-empty-session () "Create an empty page as a new session and visit it." (interactive) (w3m-goto-url-new-session "about:blank")) (defun w3m-user-agent-site-specific (url) "Return a site-specific user-agent string. Compares URL against the regexps of `w3m-user-agent-site-specific-alist' and returns the corresponding user-agent string of the first match, or NIL if none match." (let ((check-list w3m-user-agent-site-specific-alist) result entry) (while (and (not result) (setq entry (pop check-list))) (when (string-match (car entry) url) (setq result (cdr entry)))) result)) (defun w3m-user-agent-change (&optional ua-string) "Return a user-agent string. Prompt the user to select from entries in `w3m-user-agent-default-alist', `w3m-user-agent-alist', or the user may manually enter a custom user-agent string. When called interactively, variables `w3m-user-agent' and `w3m-add-user-agent' are updated, ie. the changes are permanent." (interactive "P") (when (not ua-string) (let ((ua-list (append w3m-user-agent-default-alist w3m-user-agent-alist))) (setq ua-string (or (cdr (assoc (setq ua-string (completing-read "Select a user-agent: " ua-list)) ua-list)) ua-string)))) (when (string-equal ua-string "") (setq ua-string nil)) (when (called-interactively-p 'interactive) ; Does not work because we use temporary work buffers when ; constructing the GET header (eg. `w3m-header-arguments') ; (if (y-or-n-p "For this buffer only? ") ; (progn ; (make-local-variable 'w3m-add-user-agent) ; (make-local-variable 'w3m-user-agent)) ; (kill-local-variable 'w3m-add-user-agent) ; (kill-local-variable 'w3m-user-agent)) (if (not ua-string) (setq w3m-add-user-agent nil) (setq w3m-add-user-agent t) (setq w3m-user-agent ua-string))) ua-string) (defun w3m-reload-this-page (&optional arg no-popup) "Reload the current page, disregarding the cached contents. If the prefix arg ARG is given, it also clears forms and post data. If the prefix arg is given twice, prompt the user to change the user-agent string to be sent for the reload. If the prefix arg is given three times, do both, ie. clear forms and post data, AND prompt the user to change the user-agent string to be sent for the reload." (interactive "P") (if w3m-current-url (let* (;; Don't move the history position. (w3m-history-reuse-history-elements 'reload) (w3m-user-agent (if (or (equal arg '(16)) (equal arg '(64))) (w3m-user-agent-change) w3m-user-agent)) (w3m-add-user-agent (if (or (equal arg '(16)) (equal arg '(64))) w3m-user-agent w3m-add-user-agent)) post-data) (if (or (equal arg '(4)) (equal arg '(64))) (progn (w3m-history-remove-properties '(:forms nil :post-data nil)) (setq w3m-current-forms nil)) (when (and (setq post-data (w3m-history-plist-get :post-data)) (not (y-or-n-p "Repost form data? "))) (setq post-data nil))) (w3m-history-store-position) (w3m-goto-url w3m-current-url 'reload nil post-data (w3m-history-plist-get :referer) nil (w3m-history-element (cadar w3m-history) t) no-popup) (w3m-history-restore-position)) (w3m-message "Can't reload this page"))) (defun w3m-reload-all-pages (&optional arg) "Reload all pages, disregarding the cached contents. If the prefix arg ARG is given, it also clears forms and post data." (interactive "P") (if arg (save-window-excursion (dolist (buffer (w3m-list-buffers)) (switch-to-buffer buffer) (w3m-reload-this-page))) (dolist (buffer (w3m-list-buffers)) (save-window-excursion (switch-to-buffer buffer) (w3m-reload-this-page))))) (defun w3m-redisplay-this-page (&optional arg) "Redisplay the current page. If the prefix arg ARG is given, it toggles the visibility of images." (interactive "P") (if (null w3m-current-url) (w3m-message "Can't redisplay this page") (when arg (setq w3m-display-inline-images (not w3m-display-inline-images))) (let ((w3m-prefer-cache t) (w3m-history-reuse-history-elements ;; Don't move the history position. 'reload)) (w3m-history-store-position) (w3m-goto-url w3m-current-url 'redisplay) (w3m-history-restore-position)))) (defun w3m-redisplay-and-reset (&optional arg) "Redisplay the current page and reset the user-specified values. This function clears the charset and the content type which the user specified for overriding the values of what the page requires. The prefix argument ARG is passed to the `w3m-redisplay-this-page' function (which see)." (interactive "P") (if (null w3m-current-url) (w3m-message "Can't execute this page") (setf (w3m-arrived-content-type w3m-current-url) nil) (setf (w3m-arrived-content-charset (if (string-match "\\`about://source/" w3m-current-url) (substring w3m-current-url (match-end 0)) w3m-current-url)) nil) (w3m-redisplay-this-page arg))) (defun w3m-redisplay-with-charset (&optional arg) "Redisplay the current page, specifying a charset. If the user enters the empty string, the value which once was used for decoding the page is used. The prefix argument ARG is passed to the `w3m-redisplay-this-page' function (which see)." (interactive "P") (if (null w3m-current-url) (w3m-message "Can't execute the command") (setf (w3m-arrived-content-charset (if (string-match "\\`about://source/" w3m-current-url) (substring w3m-current-url (match-end 0)) w3m-current-url)) (w3m-read-content-charset (format "Content-charset (current %s, default reset): " w3m-current-coding-system))) (w3m-redisplay-this-page arg))) (defun w3m-redisplay-with-content-type (&optional arg) "Redisplay the current page, specifying a content type. If the user enters the empty string, it uses the value which was specified by the page's contents itself. The prefix argument ARG is passed to the `w3m-redisplay-this-page' function (which see)." (interactive "P") (if (null w3m-current-url) (w3m-message "Can't execute this page") (setf (w3m-arrived-content-type w3m-current-url) (let ((type (completing-read (format "Content-type (current %s, default reset): " (or (w3m-arrived-content-type w3m-current-url) (w3m-content-type w3m-current-url))) w3m-content-type-alist nil t))) (unless (string= type "") type))) (w3m-redisplay-this-page arg))) (defun w3m-examine-command-line-args () "Return a url when the `w3m' command is invoked from the command line. The `w3m' Lisp command can be invoked even in the batch mode, e.g., ``emacs -f w3m'' or ``emacs -f w3m url''. This function is used in the very case, it extracts a url string from the command line arguments and passes it to the `w3m' command. If a url is omitted, it defaults to the value of `w3m-home-page' or \"about:\"." (let ((url (car command-line-args-left)) (directives '("-f" "-funcall" "--funcall" "-e")) args) (if (and url (not (string-match "\\`-" url))) (progn (setq command-line-args-left (cdr command-line-args-left)) (when (string-match "\\`[\t ]*\\'" url) ;; emacs -f w3m '' ... (setq url (or w3m-home-page "about:")))) (setq args (nthcdr (max (- (length command-line-args) (length command-line-args-left) 2) 1) command-line-args)) (when (and (equal (cadr args) "w3m") (member (car args) directives)) (setq url (or w3m-home-page "about:")))) (unless (and command-line-args-left (progn (setq args (reverse command-line-args-left)) (while (and args (not (and (setq args (cdr (member "w3m" args))) (member (car args) directives))))) args)) (defalias 'w3m-examine-command-line-args (lambda nil))) ;; Inhibit the startup screen. (when (and url ;; Since XEmacs provides `inhibit-startup-message' as ;; a constant, we don't modify the value. (not (featurep 'xemacs))) (let ((var (cond ((boundp 'inhibit-startup-screen) 'inhibit-startup-screen) ((boundp 'inhibit-startup-message) 'inhibit-startup-message))) fn) (when (and var (not (symbol-value var))) (set var t) (setq fn (make-symbol "w3m-inhibit-startup-screen")) (fset fn `(lambda nil (set ',var nil) (remove-hook 'window-setup-hook ',fn) (fmakunbound ',fn))) (add-hook 'window-setup-hook fn)))) url)) ;;;###autoload (defun w3m (&optional url new-session interactive-p) "Visit World Wide Web pages using the external w3m command. When you invoke this command interactively for the first time, it will visit a page which is pointed to by a string like url around the cursor position or the home page specified by the `w3m-home-page' variable, but you will be prompted for a URL if `w3m-quick-start' is nil (default t) or `w3m-home-page' is nil. The variables `w3m-pop-up-windows' and `w3m-pop-up-frames' control whether this command should pop to a window or a frame up for the session. When an emacs-w3m session has already been opened, this command will pop to an existing window or frame, but if `w3m-quick-start' is nil, (default t), you will be prompted for a URL (which defaults to `popup' meaning to pop to an existing emacs-w3m buffer up). In addition, if the prefix argument is given or you enter the empty string for the prompt, this command will visit a url at the point, or the home page the `w3m-home-page' variable specifies, or the \"about:\" page. You can also run this command in the batch mode as follows: emacs -f w3m http://emacs-w3m.namazu.org/ & In that case, or if this command is called non-interactively, the variables `w3m-pop-up-windows' and `w3m-pop-up-frames' will be ignored \(treated as nil) and it will run emacs-w3m at the current (or the initial) window. If the optional NEW-SESSION is non-nil, this function makes a new emacs-w3m buffer. Besides that, it also makes a new emacs-w3m buffer if `w3m-make-new-session' is non-nil and a user specifies a url string. The optional INTERACTIVE-P is for the internal use; it is mainly used to check whether Emacs 22 or later calls this function as an interactive command in the batch mode." (interactive (let ((url ;; Emacs 22 or later calls a Lisp command interactively even ;; if it is in the batch mode. If the following function ;; returns non-nil value, it means this function is called in ;; the batch mode, and we don't treat it as what it is called ;; to interactively. (w3m-examine-command-line-args)) new) (list ;; url (or url (let ((default (or (w3m-url-at-point) (if (w3m-alive-p) 'popup w3m-home-page)))) (setq new (if current-prefix-arg default (w3m-input-url nil nil default w3m-quick-start 'feeling-searchy 'no-initial))))) ;; new-session (and w3m-make-new-session (w3m-alive-p) (not (eq new 'popup))) ;; interactive-p (not url)))) (let ((nofetch (eq url 'popup)) (alived (w3m-alive-p)) (buffer (unless new-session (w3m-alive-p t))) (w3m-pop-up-frames (and interactive-p w3m-pop-up-frames)) (w3m-pop-up-windows (and interactive-p w3m-pop-up-windows))) (unless (and (stringp url) (> (length url) 0)) (if buffer (setq nofetch t) ;; This command was possibly be called non-interactively or as ;; the batch mode. (setq url (or (w3m-examine-command-line-args) ;; Unlikely but this function was called with no url. "about:") nofetch nil))) (unless buffer ;; It means `new-session' is non-nil or there's no emacs-w3m buffer. ;; At any rate, we create a new emacs-w3m buffer in this case. (setq buffer (w3m-generate-new-buffer "*w3m*"))) (w3m-popup-buffer buffer) (unless nofetch ;; `unwind-protect' is needed since a process may be terminated by C-g. (unwind-protect (let* ((crash (and (not alived) (w3m-session-last-crashed-session))) (last (and (not alived) (not crash) (w3m-session-last-autosave-session)))) (w3m-goto-url url) (when (or crash last) (w3m-session-goto-session (or crash last)))) ;; Delete useless newly created buffer if it is empty. (w3m-delete-buffer-if-empty buffer))))) (eval-when-compile (autoload 'browse-url-interactive-arg "browse-url")) ;;;###autoload (defun w3m-browse-url (url &optional new-session) "Ask emacs-w3m to browse URL. NEW-SESSION specifies whether to create a new emacs-w3m session. URL defaults to the string looking like a url around the cursor position. Pop to a window or a frame up according to `w3m-pop-up-windows' and `w3m-pop-up-frames'." (interactive (progn (require 'browse-url) (browse-url-interactive-arg "Emacs-w3m URL: "))) (when (stringp url) (setq url (w3m-canonicalize-url url)) (if new-session (w3m-goto-url-new-session url) (w3m-goto-url url nil nil nil nil nil nil nil t)))) ;;;###autoload (defun w3m-find-file (file) "Function used to open FILE whose name is expressed in ordinary format. The file name will be converted into the file: scheme." (interactive "fFilename: ") (w3m-goto-url (w3m-expand-file-name-as-url file) nil (w3m-static-if (fboundp 'universal-coding-system-argument) coding-system-for-read) nil nil nil nil nil t)) (defun w3m-cygwin-path (path) "Convert PATH in the win32 style into the cygwin format. ex. c:/dir/file => //c/dir/file" (if (string-match "^\\([A-Za-z]\\):" path) (replace-match "//\\1" nil nil path) path)) ;;;###autoload (defun w3m-region (start end &optional url charset) "Render the region of the current buffer between START and END. URL specifies the address where the contents come from. It can be omitted or nil when the address is not identified. CHARSET is used for decoding the contents. If it is nil, this function attempts to parse the meta tag to extract the charset." (interactive (list (region-beginning) (region-end) (w3m-expand-file-name-as-url (or (buffer-file-name) default-directory)))) (save-restriction (w3m-process-stop (current-buffer)) (narrow-to-region start end) (w3m-clear-local-variables) (let ((w3m-current-buffer (current-buffer))) (unless charset (setq charset (w3m-correct-charset (w3m-detect-meta-charset)))) (setq url (or url w3m-buffer-local-url) w3m-current-url url w3m-current-base-url url w3m-current-coding-system (if charset (w3m-charset-to-coding-system charset) w3m-coding-system) w3m-current-title (let (w3m-use-refresh) (w3m-rendering-buffer charset))) (w3m-fontify) (when (w3m-display-inline-images-p) (and w3m-force-redisplay (sit-for 0)) (w3m-toggle-inline-images 'force))))) ;;;###autoload (defun w3m-buffer (&optional url charset) "Render the current buffer. See `w3m-region' for the optional arguments." (interactive (list (w3m-expand-file-name-as-url (or (buffer-file-name) default-directory)))) (w3m-region (point-min) (point-max) url charset)) ;;; About: (defun w3m-about (url &rest args) (insert " About emacs-w3m
Welcome to \ \"emacs-w3m\"!

emacs-w3m is an interface program of w3m, works on Emacs.
") "text/html") (defun w3m-view-source (&optional arg) "Display an html source of a page visited in the current buffer. ARG should be a number (a non-numeric value is treated as `1') which controls how much to decode a source. A number larger than or equal to 4 (which the `C-u' prefix produces) means don't decode. The number 2 or 3 means decode normal text. The number 1 means decodes `&#nnn;' entities in 128..159 and 160 in addition to normal text (the default). A number less than or equal to zero means also encode urls containing non-ASCII characters." (interactive "p") (if w3m-current-url (let ((w3m-prefer-cache t) (w3m-view-source-decode-level (if (numberp arg) arg 0)) (w3m-history-reuse-history-elements t)) (w3m-history-store-position) (cond ((string-match "\\`about://source/" w3m-current-url) (w3m-goto-url (substring w3m-current-url (match-end 0)))) ((string-match "\\`about://header/" w3m-current-url) (w3m-goto-url (concat "about://source/" (substring w3m-current-url (match-end 0))))) (t (w3m-goto-url (concat "about://source/" w3m-current-url)))) (w3m-history-restore-position) t) ; <-- an improvement, but wrong if the above failed (BORUCH) (w3m-message "Can't view page source"))) (defun w3m-make-separator () (if (string= w3m-language "Japanese") (make-string (/ (w3m-display-width) 2) (make-char 'japanese-jisx0208 40 44)) (make-string (w3m-display-width) ?-))) (defun w3m-about-header (url &optional no-uncompress no-cache &rest args) (when (string-match "\\`about://header/" url) (setq url (substring url (match-end 0))) (insert "Page Information\n" "\nTitle: " (or (w3m-arrived-title (w3m-url-strip-authinfo url)) "") "\nURL: " url "\nDocument Type: " (or (w3m-content-type url) "") "\nLast Modified: " (let ((time (w3m-last-modified url))) (if time (current-time-string time) ""))) (let (anchor anchor-title image-url image-alt image-size) (with-current-buffer w3m-current-buffer (when (equal url w3m-current-url) (setq anchor (w3m-anchor) anchor-title (w3m-anchor-title) image-url (w3m-image) image-alt (w3m-image-alt) image-size (w3m-get-text-property-around 'w3m-image-size)))) (if anchor (insert "\nCurrent Anchor: " anchor)) (if anchor-title (insert "\nAnchor Title: " anchor-title)) (if image-url (insert "\nImage: " image-url)) (if image-alt (insert "\nImage Alt: " image-alt)) (if image-size (insert (format "\nImage Size: %sx%s" (car image-size) (cdr image-size))))) (let ((ct (w3m-arrived-content-type url)) (charset (w3m-arrived-content-charset url)) (separator (w3m-make-separator)) (case-fold-search t) header ssl beg) (when (or ct charset) (insert "\n\n" separator "\n\nModifier Information\n") (insert "\nDocument Content-Type: " (or ct "")) (insert "\nDocument Charset: " (or charset ""))) (when (and (not (w3m-url-local-p url)) (setq header (condition-case nil (or (unless no-cache (w3m-cache-request-header url)) (w3m-process-with-wait-handler (w3m-w3m-dump-head url handler))) (w3m-process-timeout nil)))) (insert "\n\n" separator "\n\nHeader Information\n\n" header) (goto-char (point-min)) (when (re-search-forward "^w3m-ssl-certificate: " nil t) (setq beg (match-end 0)) (forward-line) (while (and (not (eobp)) (looking-at "^[ \t]")) (forward-line)) (setq ssl (buffer-substring beg (point))) (delete-region beg (point)) (goto-char beg) (insert "SSL\n") (goto-char (point-max)) (insert separator "\n\nSSL Information\n\n") (setq beg (point)) (insert ssl) (goto-char beg) (while (re-search-forward "^\t" nil t) (delete-char -1) (when (looking-at "Certificate:") (insert "\n")))))) "text/plain")) (defun w3m-view-header () "Display the header of the current page." (interactive) (if w3m-current-url (let ((w3m-prefer-cache t) (w3m-history-reuse-history-elements t) (url (cond ((string-match "\\`about://header/" w3m-current-url) (substring w3m-current-url (match-end 0))) ((string-match "\\`about://source/" w3m-current-url) (let ((real-url (substring w3m-current-url (match-end 0)))) (unless (string-match "\\`about:" real-url) (concat "about://header/" real-url)))) ((string-match "\\`about:" w3m-current-url) nil) (t (concat "about://header/" w3m-current-url))))) (if url (progn (w3m-history-store-position) (w3m-goto-url url) (w3m-history-restore-position)) (w3m-message "Can't load a header for %s" w3m-current-url))) (w3m-message "Can't view page header"))) (defvar w3m-about-history-max-indentation '(/ (* (window-width) 2) 3) "*Number used to limit the identation level when showing a history. This value is evaluated whenever a history page is displayed by the `w3m-about-history' command. So, it can be any s-expression returning a number.") (defvar w3m-about-history-indent-level 4 "*Number used to specify the indentation level when showing a history. A history page is invoked by the `w3m-about-history' command.") (defun w3m-about-history (&rest args) "Show a tree-structured history." (let (start history current) (with-current-buffer w3m-current-buffer (setq history w3m-history-flat current (cadar w3m-history))) (insert "\ URL history

List of all the links you have visited in this tab.

\n")
    (setq start (point))
    (when history
      (let ((form
	     (format
	      "%%0%dd"
	      (length
	       (number-to-string
		(apply 'max
		       (apply 'append
			      (mapcar
			       ;; Don't use `caddr' here, since it won't
			       ;; be substituted by the compiler macro.
			       (lambda (e)
				 (car (cdr (cdr e))))
			       history)))))))
	    (cur (current-buffer))
	    (margin (if (> w3m-about-history-indent-level 1)
			1
		      0))
	    (max-indent (condition-case nil
			    ;; Force the value to be a number or nil.
			    (+ 0 (eval w3m-about-history-max-indentation))
			  (error nil)))
	    (last-indent -1)
	    (sub-indent 0)
	    element url about title position bol indent)
	(while history
	  (setq element (pop history)
		url (car element)
		;; FIXME: an ad-hoc workaround to avoid illegal-type errors.
		about (or (not (stringp url))
			  (string-match w3m-history-ignored-regexp url))
		title (plist-get (cadr element) :title)
		position (caddr element))
	  (when url
	    (insert (format "h%s %d %d %s%s%s %s\n"
			    (mapconcat (lambda (d) (format form d))
				       position
				       "-")
			    (/ (1- (length position)) 2)
			    (if (equal current position) 1 0)
			    url
			    (if about "<" "")
			    (if (or (not title)
				    (string-equal "" title)
				    (string-match "^[\t $B!!(B]*$" title))
				url
			      (w3m-encode-specials-string title))
			    (if about ">" "")
			    position))))
	(sort-fields 0 start (point-max))
	(goto-char start)
	(while (not (eobp))
	  (setq bol (point))
	  (skip-chars-forward "^ ")
	  (setq indent (read cur)
		sub-indent (if (= indent last-indent)
			       (1+ sub-indent)
			     0)
		last-indent indent
		indent (+ (* w3m-about-history-indent-level indent)
			  sub-indent))
	  (when (prog1
		    (= (read cur) 1)
		  (delete-region bol (point))
		  (insert-char ?\  (+ margin (if max-indent
						 (min max-indent indent)
					       indent))))
	    (beginning-of-line)
	    (delete-char 1)
	    (insert ">"))
	  (forward-line 1))))
    (insert "
") "text/html")) (defun w3m-about-db-history (url &rest args) (let ((start 0) (size nil) (width (- (w3m-display-width) 18)) (now (current-time)) title time alist prev next page total) (when (string-match "\\`about://db-history/\\?" url) (dolist (s (split-string (substring url (match-end 0)) "&")) (when (string-match "\\`\\(?:start\\|\\(size\\)\\)=" s) (set (if (match-beginning 1) 'size 'start) (string-to-number (substring s (match-end 0))))))) (when w3m-arrived-db (mapatoms (lambda (sym) (and sym (setq url (symbol-name sym)) (not (string-match "#" url)) (not (string-match w3m-history-ignored-regexp url)) (push (cons url (w3m-arrived-time url)) alist))) w3m-arrived-db) (setq alist (sort alist (lambda (a b) (w3m-time-newer-p (cdr a) (cdr b)))))) (setq total (length alist)) (setq alist (nthcdr start alist)) (when size (when (> start 0) (setq prev (format "about://db-history/?start=%d&size=%d" (max 0 (- start size)) size))) (when (> (length alist) size) (setq next (format "about://db-history/?start=%d&size=%d" (+ start size) size))) (when (> total 0) (setq total (+ (/ total size) (if (> (% total size) 0) 1 0))) (setq page (1+ (/ start size))))) (insert "URL history in DataBase" (if prev (format "\n" prev) "") (if next (format "\n" next) "") (format "\n\n

Arrived URL history in DataBase%s

\n" (if (and page total) (format " (%d/%d)" page total) ""))) (setq prev (if (or prev next) (setq next (concat "

" (if prev (format "[Prev History]" prev) "") (if next (format "[Next History]" next) "") "

\n")) "")) (if (null alist) (insert "Nothing in DataBase.\n") (insert prev "\n") (while (and alist (or (not size) (>= (decf size) 0))) (setq url (car (car alist)) time (cdr (car alist)) alist (cdr alist) title (w3m-arrived-title url)) (if (or (null title) (string= "" title)) (setq title (concat "<" (w3m-truncate-string url width) ">")) (when (>= (string-width title) width) (setq title (concat (w3m-truncate-string title width) "...")))) (insert (format "" url (w3m-encode-specials-string title))) (when time (insert "")) (insert "\n")) (insert "

Title/URL

Time/Date

%s" (if (<= (w3m-time-lapse-seconds time now) 64800) ;; = (* 60 60 18) 18hours. (format-time-string "%H:%M:%S" time) (format-time-string "%Y-%m-%d" time)) "
" (if next "\n
\n
\n" "") prev)) (insert "\n")) "text/html") (defun w3m-history-highlight-current-url (url) "Highlight the current url if it is a page for the history. It does manage history position data as well." (when (string-equal "about://history/" url) (let ((inhibit-read-only t) (buffer (current-buffer)) start) ;; Make history position data invisible. (goto-char (point-min)) (w3m-next-anchor) (while (progn (setq start (point)) ;; Extend href anchor. (put-text-property (point-at-bol) start 'w3m-href-anchor (get-text-property start 'w3m-href-anchor)) (re-search-forward " (\\(?:[0-9]+ \\)*[0-9]+)$" nil t)) (goto-char (match-beginning 0)) (put-text-property start (match-beginning 0) 'history-position (read buffer)) (add-text-properties (match-beginning 0) (match-end 0) '(invisible t intangible t)) (forward-char 2) (skip-chars-forward "\t ")) ;; Highlight the current url. (goto-char (point-min)) (when (search-forward "\n>" nil t) (w3m-next-anchor) (setq start (point)) (end-of-line) (w3m-add-face-property start (point) 'w3m-history-current-url) (goto-char start))) (set-buffer-modified-p nil))) (defcustom w3m-db-history-display-size (and (> w3m-keep-arrived-urls 500) 500) "*Maximum number of arrived URLs which are displayed per page." :group 'w3m :type '(radio (const :tag "All entries are displayed in single page." nil) (integer :format "%t: %v\n"))) (defun w3m-db-history (&optional start size) "Display arrived URLs." (interactive (list nil w3m-db-history-display-size)) (w3m-goto-url (concat (format "about://db-history/?start=%d" (or start 0)) (if size (format "&size=%d" size) "")) nil nil nil nil nil nil nil t)) (defun w3m-history (&optional arg) "Display the history of all the links you have visited in the session. If it is called with the prefix argument, display the arrived URLs." (interactive "P") (if (null arg) (w3m-goto-url "about://history/" nil nil nil nil nil nil nil t) (w3m-db-history nil w3m-db-history-display-size))) (defun w3m-w32-browser-with-fiber (url) (let ((proc (start-process "w3m-w32-browser-with-fiber" (current-buffer) "fiber.exe" "-s" (if (w3m-url-local-p url) (w3m-url-to-file-name url) url)))) (set-process-filter proc 'ignore) (set-process-sentinel proc 'ignore))) (defun w3m-pipe-source (&optional url command) "Pipe the page source of url URL in binary to a shell command COMMAND. For the interactive use, URL defaults to that of a link at the point; if there are both a link to a page and a link to an image at the point, the link to a page is preferred unless the prefix argument is given." (interactive (let ((url (or (if current-prefix-arg (or (w3m-image) (w3m-anchor)) (or (w3m-anchor) (w3m-image))) (and w3m-current-url (prog1 (y-or-n-p (format "Pipe <%s> ? " w3m-current-url)) (message nil)) w3m-current-url))) command) (if (and (w3m-url-valid url) (progn (setq command (read-string "Command: ")) (not (string-match "\\`[\000-\040]*\\'" command)))) (list url command) (list 'none nil)))) (cond ((eq url 'none) nil) ((and (stringp url) (w3m-url-valid url) (stringp command) (not (string-match "\\`[\000-\040]*\\'" command))) (w3m-message "Pipe <%s> to \"| %s\"..." url command) (with-temp-buffer (set-buffer-multibyte nil) (w3m-process-with-wait-handler (w3m-retrieve (cond ((string-match "\\`about://source/" url) url) ((string-match "\\`about://header/" url) (concat "about://source/" (substring url (match-end 0)))) (t (concat "about://source/" url))))) (shell-command-on-region (point-min) (point-max) command nil) (w3m-message "Pipe <%s> to \"| %s\"...done" url command) (let ((buffer (get-buffer "*Shell Command Output*"))) (when (and buffer (not (zerop (buffer-size buffer)))) (display-buffer buffer))))) (t (error "Can't pipe page source")))) ;;; Interactive select buffer. (defcustom w3m-select-buffer-horizontal-window t "*Non-nil means split windows horizontally to open the selection window." :group 'w3m :type 'boolean) (defcustom w3m-select-buffer-window-ratio '(18 . 12) "*The percentage of the selection window to the whole frame. The car is used when splitting windows horizontally and the cdr is for splitting windows vertically." :group 'w3m :type '(cons (integer :format "H: %v[%%] ") (integer :format "V: %v[%%]\n"))) (defvar w3m-select-buffer-window nil) (defconst w3m-select-buffer-message "n: next buffer, p: previous buffer, q: quit." "Help message used when the emacs-w3m buffers selection window is open.") ;; Why this function is here abruptly is because of `w-s-b-horizontal-window'. (defun w3m-display-width () "Return the maximum width which should display lines within the value." (if (< 0 w3m-fill-column) w3m-fill-column (+ (if (and w3m-select-buffer-horizontal-window (get-buffer-window w3m-select-buffer-name)) ;; Show pages as if there is no buffers selection window. (frame-width) (window-width)) (or w3m-fill-column -1)))) (defun w3m-select-buffer (&optional toggle nomsg) "Pop to the emacs-w3m buffers selection window up. It provides the feature for switching emacs-w3m buffers using the buffer list. The following command keys are available: \\{w3m-select-buffer-mode-map}" (interactive "P") (when toggle (setq w3m-select-buffer-horizontal-window (not w3m-select-buffer-horizontal-window)) (when (get-buffer-window w3m-select-buffer-name) (delete-windows-on w3m-select-buffer-name))) (unless (or (eq major-mode 'w3m-mode) (eq major-mode 'w3m-select-buffer-mode)) (let ((buffer (w3m-alive-p t))) (if buffer (w3m-popup-buffer buffer) (w3m-goto-url (or w3m-home-page "about:"))))) (let ((selected-window (selected-window)) (current-buffer (current-buffer))) (set-buffer (w3m-get-buffer-create w3m-select-buffer-name)) (unless (eq nomsg 'update) (setq w3m-select-buffer-window selected-window)) (let ((w (or (get-buffer-window w3m-select-buffer-name) (split-window selected-window (w3m-select-buffer-window-size) w3m-select-buffer-horizontal-window)))) (set-window-buffer w (current-buffer)) (select-window w)) (w3m-select-buffer-generate-contents current-buffer)) (w3m-select-buffer-mode) (or nomsg (w3m-message w3m-select-buffer-message))) (defun w3m-select-buffer-update (&rest args) (when (get-buffer-window w3m-select-buffer-name) (save-selected-window (w3m-select-buffer nil 'update))) (when w3m-use-tab (w3m-force-window-update))) (defun w3m-select-buffer-generate-contents (current-buffer) (let ((i 0) (inhibit-read-only t)) (delete-region (point-min) (point-max)) (dolist (buffer (w3m-list-buffers)) (put-text-property (point) (progn (insert (format "%d:%s %s\n" (incf i) (if (w3m-unseen-buffer-p buffer) "(u)" " ") (w3m-buffer-title buffer))) (point)) 'w3m-select-buffer buffer)) (skip-chars-backward " \t\r\f\n") (delete-region (point) (point-max)) (set-buffer-modified-p nil) (goto-char (or (text-property-any (point-min) (point-max) 'w3m-select-buffer current-buffer) (point-min))))) (defvar w3m-select-buffer-mode-map nil) (unless w3m-select-buffer-mode-map (let ((map (make-keymap))) (suppress-keymap map) (substitute-key-definition 'next-line 'w3m-select-buffer-next-line map global-map) (substitute-key-definition 'previous-line 'w3m-select-buffer-previous-line map global-map) (substitute-key-definition 'w3m-copy-buffer 'w3m-select-buffer-copy-buffer map w3m-mode-map) (substitute-key-definition 'w3m-next-buffer 'w3m-select-buffer-next-line map w3m-mode-map) (substitute-key-definition 'w3m-previous-buffer 'w3m-select-buffer-previous-line map w3m-mode-map) (substitute-key-definition 'w3m-delete-buffer 'w3m-select-buffer-delete-buffer map w3m-mode-map) (substitute-key-definition 'w3m-delete-other-buffers 'w3m-select-buffer-delete-other-buffers map w3m-mode-map) (substitute-key-definition 'w3m-scroll-up-or-next-url 'w3m-select-buffer-show-this-line map w3m-mode-map) (substitute-key-definition 'w3m-scroll-down-or-previous-url 'w3m-select-buffer-show-this-line-and-down map w3m-mode-map) (substitute-key-definition 'w3m-select-buffer 'w3m-select-buffer-toggle-style map w3m-mode-map) (define-key map " " 'w3m-select-buffer-show-this-line) (define-key map "g" 'w3m-select-buffer-recheck) (define-key map "j" 'w3m-select-buffer-next-line) (define-key map "k" 'w3m-select-buffer-previous-line) (define-key map "n" 'w3m-select-buffer-next-line) (define-key map "p" 'w3m-select-buffer-previous-line) (define-key map "q" 'w3m-select-buffer-quit) (define-key map "h" 'w3m-select-buffer-show-this-line-and-switch) (define-key map "w" 'w3m-select-buffer-show-this-line-and-switch) (define-key map "\C-m" 'w3m-select-buffer-show-this-line-and-quit) (define-key map "\C-c\C-c" 'w3m-select-buffer-show-this-line-and-quit) (define-key map "\C-c\C-k" 'w3m-select-buffer-quit) (define-key map "\C-c\C-q" 'w3m-select-buffer-quit) (define-key map "\C-g" 'w3m-select-buffer-quit) (define-key map "?" 'describe-mode) (setq w3m-select-buffer-mode-map map))) (defun w3m-select-buffer-mode () "Major mode for switching emacs-w3m buffers using the buffer list. \\\ \\[w3m-select-buffer-next-line]\ Next buffer. \\[w3m-select-buffer-previous-line]\ Previous buffer. \\[w3m-select-buffer-show-this-line]\ Show the buffer on the current menu line or scroll it up. \\[w3m-select-buffer-show-this-line-and-down]\ Show the buffer on the current menu line or scroll it down. \\[w3m-select-buffer-show-this-line-and-switch]\ Show the buffer on the menu and switch to the buffer. \\[w3m-select-buffer-show-this-line-and-quit]\ Show the buffer on the menu and quit the buffers selection. \\[w3m-select-buffer-copy-buffer]\ Create a copy of the buffer on the menu, and show it. \\[w3m-select-buffer-delete-buffer]\ Delete the buffer on the current menu line. \\[w3m-select-buffer-delete-other-buffers]\ Delete emacs-w3m buffers except for the buffer on the menu. \\[w3m-select-buffer-toggle-style]\ Toggle the style of the selection between horizontal and vertical. \\[w3m-select-buffer-recheck]\ Do the roll call to all emacs-w3m buffers. \\[w3m-select-buffer-quit]\ Quit the buffers selection. " (setq major-mode 'w3m-select-buffer-mode mode-name "w3m buffers" truncate-lines t buffer-read-only t) (use-local-map w3m-select-buffer-mode-map) (w3m-run-mode-hooks 'w3m-select-buffer-mode-hook)) (defun w3m-select-buffer-recheck () "Do the roll call to all emacs-w3m buffers and regenerate the menu." (interactive) (let ((inhibit-read-only t)) (erase-buffer)) (w3m-select-buffer-generate-contents (window-buffer w3m-select-buffer-window)) (w3m-select-buffer-show-this-line)) (defmacro w3m-select-buffer-current-buffer () '(get-text-property (point-at-bol) 'w3m-select-buffer)) (defun w3m-select-buffer-show-this-line (&optional interactive-p) "Show the buffer on the current menu line or scroll it up." (interactive (list t)) (forward-line 0) (let ((obuffer (and (window-live-p w3m-select-buffer-window) (window-buffer w3m-select-buffer-window))) (buffer (w3m-select-buffer-current-buffer))) (unless buffer (error "No buffer at point")) (cond ((get-buffer-window buffer) (setq w3m-select-buffer-window (get-buffer-window buffer))) ((window-live-p w3m-select-buffer-window) ()) ((one-window-p t) (setq w3m-select-buffer-window (selected-window)) (select-window (split-window nil (w3m-select-buffer-window-size) w3m-select-buffer-horizontal-window))) (t (setq w3m-select-buffer-window (get-largest-window)))) (set-window-buffer w3m-select-buffer-window buffer) (when (and interactive-p (eq obuffer buffer)) (save-selected-window (pop-to-buffer buffer) (w3m-scroll-up-or-next-url nil))) (w3m-force-window-update w3m-select-buffer-window) (w3m-message w3m-select-buffer-message) buffer)) (defun w3m-select-buffer-show-this-line-and-down () "Show the buffer on the current menu line or scroll it down." (interactive) (let ((obuffer (and (window-live-p w3m-select-buffer-window) (window-buffer w3m-select-buffer-window))) (buffer (w3m-select-buffer-show-this-line))) (when (eq obuffer buffer) (save-selected-window (pop-to-buffer buffer) (w3m-scroll-down-or-previous-url nil))))) (defun w3m-select-buffer-next-line (&optional n) "Move cursor vertically down N lines and show the buffer on the menu." (interactive "p") (forward-line n) (prog1 (w3m-select-buffer-show-this-line) (w3m-static-when (featurep 'xemacs) (save-window-excursion ;; Update gutter tabs. (select-window w3m-select-buffer-window))))) (defun w3m-select-buffer-previous-line (&optional n) "Move cursor vertically up N lines and show the buffer on the menu." (interactive "p") (w3m-select-buffer-next-line (- n))) (defun w3m-select-buffer-copy-buffer () "Create a copy of the buffer on the current menu line, and show it." (interactive) (w3m-select-buffer-show-this-line) (let ((window (selected-window))) (select-window (get-buffer-window (w3m-select-buffer-current-buffer))) ;; The selection buffer will be updated automatically because ;; `w3m-copy-buffer' calls `w3m-select-buffer-update' by way of ;; `w3m-goto-url'. (w3m-copy-buffer) (select-window window))) (defun w3m-select-buffer-delete-buffer (&optional force) "Delete the buffer on the current menu line. If only one emacs-w3m buffer exists, it is assumed that the function was called to terminate the emacs-w3m session. In this case, the optional prefix argument FORCE can be set non-nil to exit the session without prompting for confirmation." (interactive "P") (let ((pos (point)) (buffer (w3m-select-buffer-show-this-line))) (if (= 1 (count-lines (point-min) (point-max))) (w3m-quit force) (w3m-process-stop buffer) (w3m-idle-images-show-unqueue buffer) (kill-buffer buffer) (when w3m-use-form (w3m-form-kill-buffer buffer)) (run-hooks 'w3m-delete-buffer-hook) (w3m-select-buffer-generate-contents (w3m-select-buffer-current-buffer)) (w3m-select-buffer-show-this-line) (goto-char (min pos (point-max))) (beginning-of-line)))) (defun w3m-select-buffer-delete-other-buffers () "Delete emacs-w3m buffers except for the buffer on the current menu." (interactive) (w3m-select-buffer-show-this-line) (w3m-delete-other-buffers (w3m-select-buffer-current-buffer))) (defun w3m-select-buffer-quit () "Quit the buffers selection." (interactive) (if (one-window-p t) (set-window-buffer (selected-window) (or (w3m-select-buffer-current-buffer) (w3m-alive-p))) (let ((buf (or (w3m-select-buffer-current-buffer) (w3m-alive-p))) pop-up-frames) (pop-to-buffer buf) (and (get-buffer-window w3m-select-buffer-name) (delete-windows-on w3m-select-buffer-name))))) (defun w3m-select-buffer-show-this-line-and-switch () "Show the buffer on the menu and switch to the buffer." (interactive) (pop-to-buffer (w3m-select-buffer-show-this-line)) (message nil)) (defun w3m-select-buffer-show-this-line-and-quit () "Show the buffer on the menu and quit the buffers selection." (interactive) (w3m-select-buffer-show-this-line-and-switch) (and (get-buffer-window w3m-select-buffer-name) (delete-windows-on w3m-select-buffer-name))) (defun w3m-select-buffer-close-window () "Close the window which displays the buffers selection." (let ((window (get-buffer-window w3m-select-buffer-name))) (when window (if (one-window-p t) (set-window-buffer window (other-buffer)) (delete-window window))))) (defun w3m-select-buffer-toggle-style() "Toggle the style of the selection between horizontal and vertical." (interactive) (w3m-select-buffer t)) (defun w3m-select-buffer-window-size () (if w3m-select-buffer-horizontal-window (- (window-width) (/ (* (frame-width) (car w3m-select-buffer-window-ratio)) 100)) (- (window-height) (/ (* (frame-height) (cdr w3m-select-buffer-window-ratio)) 100)))) ;;; Header line (defcustom w3m-use-header-line t "*Non-nil means display the header line." :group 'w3m :type 'boolean) (defcustom w3m-use-header-line-title nil "Non-nil means display the current title at the header line. This variable is effective only when `w3m-use-tab' is nil." :group 'w3m :type 'boolean) (defface w3m-header-line-location-title '((((class color) (background light)) (:foreground "Blue" :background "Gray90")) (((class color) (background dark)) (:foreground "Cyan" :background "Gray20"))) "Face used to highlight title when displaying location in the header line." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-header-line-location-title-face 'face-alias 'w3m-header-line-location-title) (defface w3m-header-line-location-content '((((class color) (background light)) (:foreground "DarkGoldenrod" :background "Gray90")) (((class color) (background dark)) (:foreground "LightGoldenrod" :background "Gray20"))) "Face used to highlight url when displaying location in the header line." :group 'w3m-face) ;; backward-compatibility alias (put 'w3m-header-line-location-content-face 'face-alias 'w3m-header-line-location-content) (defface w3m-error '((((class color) (background light)) (:foreground "Red1" :bold t)) (((class color) (background dark)) (:foreground "Pink" :bold t)) (t (:inverse-video t :bold t))) "Face used to highlight errors and to denote failure." :group 'w3m-face) (when (featurep 'xemacs) (when (featurep 'tty) (set-face-reverse-p 'w3m-error t 'global '(default tty)))) (defvar w3m-header-line-map nil) (unless w3m-header-line-map (let ((map (make-sparse-keymap))) (set-keymap-parent map w3m-mode-map) (define-key map [mouse-2] 'w3m-goto-url) ;; Prevent tool-bar from being doubled under GNU Emacs. (define-key map [tool-bar] 'undefined) (setq w3m-header-line-map map))) (defun w3m-header-line-insert () "Put the header line into the current buffer." (when (and (or (featurep 'xemacs) (w3m-use-tab-p)) w3m-use-header-line w3m-current-url (eq 'w3m-mode major-mode)) (goto-char (point-min)) (let ((ct (w3m-arrived-content-type w3m-current-url)) (charset (w3m-arrived-content-charset w3m-current-url))) (insert (format "Location%s: " (cond ((and ct charset) " [TC]") (ct " [T]") (charset " [C]") (t ""))))) (w3m-add-face-property (point-min) (point) 'w3m-header-line-location-title) (let ((start (point))) (insert (w3m-puny-decode-url (if (string-match "[^\000-\177]" w3m-current-url) w3m-current-url (w3m-url-decode-string w3m-current-url w3m-current-coding-system "%\\([2-9a-f][0-9a-f]\\)")))) (w3m-add-face-property start (point) 'w3m-header-line-location-content) (w3m-add-text-properties start (point) `(mouse-face highlight keymap ,w3m-header-line-map ,@(if (featurep 'xemacs) '(help-echo "button2 prompts to input URL" balloon-help "button2 prompts to input URL") '(help-echo "mouse-2 prompts to input URL")))) (setq start (point)) (insert-char ?\ (max 0 (- (if (and w3m-select-buffer-horizontal-window (get-buffer-window w3m-select-buffer-name)) (frame-width) (window-width)) (current-column) 1))) (w3m-add-face-property start (point) 'w3m-header-line-location-content) (unless (eolp) (insert "\n"))))) ;;; w3m-minor-mode (defcustom w3m-goto-article-function nil "Function used to visit an article pointed to by a given URL in `w3m-minor-mode' buffer. Normally, this option is used only when you follow a link in an html article. A function set to this variable must take one argument URL, and should display the specified page. It may return the symbol `w3m-goto-url' when it fails displaying the page. In this case, either `w3m-goto-url' or `w3m-goto-url-new-session' is employed to display the page." :group 'w3m :type '(radio (const :tag "Use emacs-w3m" nil) (function :value browse-url))) (defun w3m-safe-view-this-url (&optional force) "View the URL of the link under point. This command is quite similar to `w3m-view-this-url' except for the four differences: [1]don't handle forms, [2]don't consider URL-like string under the cursor, [3]compare URL with `w3m-safe-url-regexp' first to check whether it is safe, and [4]the arguments list differs; the optional FORCE, if it is non-nil, specifies URL is safe. You should use this command rather than `w3m-view-this-url' when viewing doubtful pages that might contain vicious forms. This command makes a new emacs-w3m buffer if `w3m-make-new-session' is non-nil and a user invokes this command in a buffer not being running the `w3m-mode', otherwise use an existing emacs-w3m buffer." (interactive "P") (let ((w3m-pop-up-windows nil) (url (w3m-url-valid (w3m-anchor))) safe-regexp) (cond (url (setq safe-regexp (get-text-property (point) 'w3m-safe-url-regexp)) (if (or (not safe-regexp) (w3m-buffer-local-url-p url) (string-match safe-regexp url) force) (unless (and (functionp w3m-goto-article-function) (not (eq 'w3m-goto-url (funcall w3m-goto-article-function url)))) (if (and w3m-make-new-session (not (eq major-mode 'w3m-mode))) (w3m-goto-url-new-session url) (w3m-goto-url url))) (when (w3m-interactive-p) (w3m-message "\ This link is considered to be unsafe; use the prefix arg to view anyway")))) ((w3m-url-valid (w3m-image)) (if (w3m-display-graphic-p) (if (w3m-interactive-p) (call-interactively 'w3m-toggle-inline-image) (w3m-toggle-inline-image force)) (w3m-view-image))) (t (w3m-message "No URL at point"))))) (defun w3m-mouse-safe-view-this-url (event) "Perform the command `w3m-safe-view-this-url' by the mouse event." ;; Note: a command invoked by [mouse-N] cannot accept the prefix ;; argument since [down-mouse-N] eats it. (interactive "e") (mouse-set-point event) (let ((url (w3m-url-valid (or (w3m-anchor) (w3m-image))))) (if url (let ((safe-regexp (get-text-property (point) 'w3m-safe-url-regexp)) (use-dialog-box t)) (when (or (not safe-regexp) (w3m-buffer-local-url-p url) (string-match safe-regexp url) (y-or-n-p "\ This link is considered to be unsafe; continue? ")) (w3m-safe-view-this-url t))) (w3m-message "No URL at point")))) (defconst w3m-minor-mode-command-alist '((w3m-next-anchor) (w3m-previous-anchor) (w3m-next-image) (w3m-previous-image) (w3m-toggle-inline-image) (w3m-toggle-inline-images) (w3m-view-this-url . w3m-safe-view-this-url) (w3m-mouse-view-this-url . w3m-mouse-safe-view-this-url) (w3m-print-this-url)) "Alist of commands and commands to be defined in `w3m-minor-mode-map'. Each element looks like (FROM-COMMAND . TO-COMMAND); those keys which are defined as FROM-COMMAND in `w3m-mode-map' are redefined as TO-COMMAND in `w3m-minor-mode-map'. When TO-COMMAND is nil, FROM-COMMAND is defined in `w3m-minor-mode-map' with the same key in `w3m-mode-map'.") (defun w3m-make-minor-mode-keymap () "Return a keymap used for `w3m-minor-mode'." (let ((keymap (make-sparse-keymap))) (dolist (pair w3m-minor-mode-command-alist) (substitute-key-definition (car pair) (or (cdr pair) (car pair)) keymap w3m-mode-map)) (unless (featurep 'xemacs) ;; Inhibit the `widget-button-click' command when ;; `w3m-imitate-widget-button' is activated. (define-key keymap [down-mouse-2] 'undefined)) keymap)) (defvar w3m-minor-mode-map (w3m-make-minor-mode-keymap) "*Keymap used when `w3m-minor-mode' is active.") (defcustom w3m-minor-mode-hook nil "*Hook run after `w3m-minor-mode' initialization." :group 'w3m :type 'hook) (defvar w3m-minor-mode nil "Non-nil if w3m minor mode is enabled.") (make-variable-buffer-local 'w3m-minor-mode) (unless (assq 'w3m-minor-mode minor-mode-alist) (push (list 'w3m-minor-mode " w3m") minor-mode-alist)) (unless (assq 'w3m-minor-mode minor-mode-map-alist) (push (cons 'w3m-minor-mode w3m-minor-mode-map) minor-mode-map-alist)) (defun w3m-minor-mode (&optional arg) "Minor mode to view text/html parts in articles." (interactive "P") (when (setq w3m-minor-mode (if arg (> (prefix-numeric-value arg) 0) (not w3m-minor-mode))) (run-hooks 'w3m-minor-mode-hook))) (defcustom w3m-do-cleanup-temp-files nil "*Whether to clean up temporary files when emacs-w3m shutdown." :group 'w3m :type 'boolean) (defun w3m-cleanup-temp-files () (when w3m-do-cleanup-temp-files (dolist (f (directory-files w3m-profile-directory)) (when (string-match "^w3m\\(el\\|src\\)" f) (delete-file (expand-file-name f w3m-profile-directory)))))) (defun w3m-show-form-hint () "Show sending form hint when the cursor is in a form." (when w3m-use-form (w3m-form-unexpand-form)) (let ((keys (where-is-internal 'w3m-submit-form))) (when (and (w3m-submit (point)) keys) (if (get-text-property (point) 'w3m-form-readonly) (if (memq (car (w3m-action)) '(w3m-form-input w3m-form-input-textarea)) (progn (w3m-form-expand-form) (w3m-message "This form is not editable; type `c' to copy the contents")) (w3m-message "This form is not accessible")) (w3m-message "Press %s to send the current form" (key-description (car keys))))))) (provide 'w3m) (unless noninteractive (when w3m-init-file (if (string-match "\\.el\\'" w3m-init-file) (or (load (concat w3m-init-file "c") t t t) (load w3m-init-file t t t)) (load w3m-init-file t t)))) (run-hooks 'w3m-load-hook) ;;; w3m.el ends here