Variable: url-honor-refresh-requests

url-honor-refresh-requests is a customizable variable defined in url-vars.el.gz.

Value

t

Documentation

Whether to do automatic page reloads.

These are done at the request of the document author or the server via the Refresh header in an HTTP response. If nil, no refresh requests will be honored. If t, all refresh requests will be honored. If non-nil and not t, the user will be asked for each refresh request.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-vars.el.gz
(defcustom url-honor-refresh-requests t
  "Whether to do automatic page reloads.
These are done at the request of the document author or the server via
the `Refresh' header in an HTTP response.  If nil, no refresh
requests will be honored.  If t, all refresh requests will be honored.
If non-nil and not t, the user will be asked for each refresh request."
  :type '(choice (const :tag "off" nil)
		 (const :tag "on" t)
		 (other :tag "ask" ask))
  :group 'url-hairy)