2017-06-28 10:44:18 -04:00
|
|
|
;;; url-history.el --- Global history tracking for URL package -*- lexical-binding:t -*-
|
2004-04-12 04:04:10 +00:00
|
|
|
|
2023-01-01 05:31:12 -05:00
|
|
|
;; Copyright (C) 1996-1999, 2004-2023 Free Software Foundation, Inc.
|
2004-04-12 04:04:10 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
;; Keywords: comm, data, processes, hypermedia
|
|
|
|
|
2004-04-12 04:04:10 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
2008-05-06 04:29:13 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2004-04-12 04:04:10 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
2004-04-12 04:04:10 +00:00
|
|
|
;; GNU Emacs 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.
|
2008-05-06 04:29:13 +00:00
|
|
|
|
2004-04-12 04:04:10 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2004-04-12 04:04:10 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
;; This can get a recursive require.
|
|
|
|
;;(require 'url)
|
|
|
|
(require 'url-parse)
|
|
|
|
(autoload 'url-do-setup "url")
|
|
|
|
|
|
|
|
(defgroup url-history nil
|
2005-07-04 01:09:34 +00:00
|
|
|
"History variables in the URL package."
|
2004-04-04 01:21:46 +00:00
|
|
|
:prefix "url-history"
|
|
|
|
:group 'url)
|
|
|
|
|
|
|
|
(defcustom url-history-track nil
|
2010-09-10 18:58:42 -07:00
|
|
|
"Controls whether to keep a list of all the URLs being visited.
|
2005-12-01 19:15:13 +00:00
|
|
|
If non-nil, the URL package will keep track of all the URLs visited.
|
2005-07-04 01:09:34 +00:00
|
|
|
If set to t, then the list is saved to disk at the end of each Emacs
|
2004-04-04 01:21:46 +00:00
|
|
|
session."
|
2021-04-01 22:04:21 +02:00
|
|
|
:set (lambda (var val)
|
|
|
|
(set-default var val)
|
|
|
|
(and (bound-and-true-p url-setup-done)
|
|
|
|
(url-history-setup-save-timer)))
|
2005-12-01 19:15:13 +00:00
|
|
|
:type '(choice (const :tag "off" nil)
|
|
|
|
(const :tag "on" t)
|
2013-12-27 17:24:15 -08:00
|
|
|
(other :tag "within session" session))
|
2004-04-04 01:21:46 +00:00
|
|
|
:group 'url-history)
|
|
|
|
|
|
|
|
(defcustom url-history-file nil
|
2010-09-10 18:58:42 -07:00
|
|
|
"The global history file for the URL package.
|
2004-04-04 01:21:46 +00:00
|
|
|
This file contains a list of all the URLs you have visited. This file
|
|
|
|
is parsed at startup and used to provide URL completion."
|
|
|
|
:type '(choice (const :tag "Default" :value nil) file)
|
|
|
|
:group 'url-history)
|
|
|
|
|
|
|
|
(defcustom url-history-save-interval 3600
|
2010-09-10 18:58:42 -07:00
|
|
|
"The number of seconds between automatic saves of the history list.
|
2004-04-04 01:21:46 +00:00
|
|
|
Default is 1 hour. Note that if you change this variable outside of
|
|
|
|
the `customize' interface after `url-do-setup' has been run, you need
|
|
|
|
to run the `url-history-setup-save-timer' function manually."
|
2021-04-01 22:04:21 +02:00
|
|
|
:set (lambda (var val)
|
|
|
|
(set-default var val)
|
|
|
|
(if (bound-and-true-p url-setup-done)
|
|
|
|
(url-history-setup-save-timer)))
|
Make some defcustom types more restrictive
* lisp/abbrev.el (abbrev-suggest-hint-threshold):
* lisp/bookmark.el (bookmark-bmenu-file-column)
(bookmark-menu-length):
* lisp/buff-menu.el (Buffer-menu-size-width)
(Buffer-menu-mode-width):
* lisp/calendar/calendar.el (calendar-week-start-day)
(calendar-intermonth-spacing, calendar-column-width)
(calendar-day-digit-width):
* lisp/calc/calc.el (calc-undo-length):
* lisp/calendar/timeclock.el (timeclock-workday):
* lisp/comint.el (comint-buffer-maximum-size)
(comint-input-ring-size):
* lisp/doc-view.el (doc-view-resolution, doc-view-image-width):
* lisp/emacs-lisp/bytecomp.el (byte-compile-docstring-max-column):
* lisp/emacs-lisp/comp.el (native-comp-debug)
(native-comp-verbose, native-comp-async-jobs-number):
* lisp/emacs-lisp/package.el (package-name-column-width)
(package-version-column-width, package-status-column-width)
(package-archive-column-width):
* lisp/eshell/esh-mode.el (eshell-buffer-maximum-lines):
* lisp/frame.el (blink-cursor-blinks):
* lisp/info.el (Info-breadcrumbs-depth):
* lisp/jit-lock.el (jit-lock-chunk-size):
* lisp/kmacro.el (kmacro-ring-max):
* lisp/menu-bar.el (yank-menu-length, yank-menu-max-items):
* lisp/midnight.el (clean-buffer-list-delay-general)
(clean-buffer-list-delay-special):
* lisp/net/dictionary.el (dictionary-port)
(dictionary-proxy-port):
* lisp/net/ldap.el (ldap-default-port):
* lisp/net/pop3.el (pop3-port, pop3-stream-length):
* lisp/net/rcirc.el (rcirc-default-port):
* lisp/net/sieve-manage.el (sieve-manage-default-port):
* lisp/play/spook.el (spook-phrase-default-count):
* lisp/play/tetris.el (tetris-buffer-width)
(tetris-buffer-height, tetris-width, tetris-height)
(tetris-top-left-x, tetris-top-left-y):
* lisp/profiler.el (profiler-sampling-interval):
* lisp/progmodes/sql.el (sql-port):
* lisp/recentf.el (recentf-max-menu-items):
* lisp/strokes.el (strokes-grid-resolution):
* lisp/tab-bar.el (tab-bar-tab-name-truncated-max):
* lisp/term/xterm.el (xterm-max-cut-length):
* lisp/time.el (display-time-interval, world-clock-timer-second):
* lisp/url/url-cache.el (url-cache-expire-time):
* lisp/url/url-cookie.el (url-cookie-save-interval):
* lisp/url/url-history.el (url-history-save-interval):
* lisp/url/url-queue.el (url-queue-parallel-processes)
(url-queue-timeout):
* lisp/url/url-vars.el (url-max-password-attempts)
(url-max-redirections):
* lisp/vc/emerge.el (emerge-min-visible-lines):
* lisp/vc/vc.el (vc-log-show-limit):
* lisp/window.el (window-min-height, window-min-width):
* lisp/winner.el (winner-ring-size): Use :type natnum.
* lisp/savehist.el (savehist-file-modes): Fix setting to nil value and
use :type natnum.
2022-07-05 16:26:45 +02:00
|
|
|
:type 'natnum
|
2004-04-04 01:21:46 +00:00
|
|
|
:group 'url-history)
|
|
|
|
|
|
|
|
(defvar url-history-timer nil)
|
|
|
|
|
|
|
|
(defvar url-history-changed-since-last-save nil
|
|
|
|
"Whether the history list has changed since the last save operation.")
|
|
|
|
|
2006-01-05 22:28:16 +00:00
|
|
|
(defvar url-history-hash-table (make-hash-table :size 31 :test 'equal)
|
2004-04-04 01:21:46 +00:00
|
|
|
"Hash table for global history completion.")
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2004-04-12 04:04:10 +00:00
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(defun url-history-setup-save-timer ()
|
|
|
|
"Reset the history list timer."
|
|
|
|
(interactive)
|
2007-12-02 18:05:36 +00:00
|
|
|
(condition-case nil
|
|
|
|
(cancel-timer url-history-timer)
|
|
|
|
(error nil))
|
2004-04-12 04:04:10 +00:00
|
|
|
(setq url-history-timer nil)
|
2005-12-01 19:15:13 +00:00
|
|
|
(if (and (eq url-history-track t) url-history-save-interval)
|
2005-12-04 17:53:13 +00:00
|
|
|
(setq url-history-timer (run-at-time url-history-save-interval
|
|
|
|
url-history-save-interval
|
|
|
|
'url-history-save-history))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(defun url-history-parse-history (&optional fname)
|
|
|
|
"Parse a history file stored in FNAME."
|
|
|
|
;; Parse out the mosaic global history file for completions, etc.
|
|
|
|
(or fname (setq fname (expand-file-name url-history-file)))
|
|
|
|
(cond
|
|
|
|
((not (file-exists-p fname))
|
2006-01-05 22:07:30 +00:00
|
|
|
;; It's completely normal for this file not to exist, so don't complain.
|
|
|
|
;; (message "%s does not exist." fname)
|
|
|
|
)
|
2004-04-04 01:21:46 +00:00
|
|
|
((not (file-readable-p fname))
|
|
|
|
(message "%s is unreadable." fname))
|
|
|
|
(t
|
|
|
|
(condition-case nil
|
|
|
|
(load fname nil t)
|
2006-01-05 22:28:16 +00:00
|
|
|
(error (message "Could not load %s" fname))))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(defun url-history-update-url (url time)
|
|
|
|
(setq url-history-changed-since-last-save t)
|
2017-06-14 20:23:29 -04:00
|
|
|
(puthash (if (url-p url) (url-recreate-url url) url) time
|
2006-01-05 22:28:16 +00:00
|
|
|
url-history-hash-table))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
2007-12-11 05:49:36 +00:00
|
|
|
(autoload 'url-make-private-file "url-util")
|
|
|
|
|
2004-04-04 01:21:46 +00:00
|
|
|
(defun url-history-save-history (&optional fname)
|
|
|
|
"Write the global history file into `url-history-file'.
|
|
|
|
The type of data written is determined by what is in the file to begin
|
|
|
|
with. If the type of storage cannot be determined, then prompt the
|
|
|
|
user for what type to save as."
|
|
|
|
(interactive)
|
2007-12-11 05:49:36 +00:00
|
|
|
(when url-history-changed-since-last-save
|
|
|
|
(or fname (setq fname (expand-file-name url-history-file)))
|
|
|
|
(if (condition-case nil
|
|
|
|
(progn
|
|
|
|
(url-make-private-file fname)
|
|
|
|
nil)
|
|
|
|
(error t))
|
|
|
|
(message "Error accessing history file `%s'" fname)
|
|
|
|
(let ((make-backup-files nil)
|
|
|
|
(version-control nil)
|
|
|
|
(require-final-newline t)
|
|
|
|
(count 0))
|
|
|
|
(with-temp-buffer
|
|
|
|
(maphash (lambda (key value)
|
2006-01-05 22:28:16 +00:00
|
|
|
(while (string-match "[\r\n]+" key)
|
|
|
|
(setq key (concat (substring key 0 (match-beginning 0))
|
|
|
|
(substring key (match-end 0) nil))))
|
|
|
|
(setq count (1+ count))
|
|
|
|
(insert "(puthash \"" key "\""
|
|
|
|
(if (not (stringp value)) " '" "")
|
|
|
|
(prin1-to-string value)
|
|
|
|
" url-history-hash-table)\n"))
|
|
|
|
url-history-hash-table)
|
|
|
|
;; We used to add this in the file, but it just makes the code
|
|
|
|
;; more complex with no benefit. Worse: it makes it harder to
|
|
|
|
;; preserve preexisting history when loading the history file.
|
|
|
|
;; (goto-char (point-min))
|
|
|
|
;; (insert (format
|
|
|
|
;; "(setq url-history-hash-table (make-hash-table :size %d :test 'equal))\n"
|
|
|
|
;; (/ count 4)))
|
|
|
|
;; (goto-char (point-max))
|
2004-04-04 01:21:46 +00:00
|
|
|
(insert "\n")
|
2007-12-11 05:49:36 +00:00
|
|
|
(write-file fname)))
|
|
|
|
(setq url-history-changed-since-last-save nil))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(defun url-have-visited-url (url)
|
|
|
|
(url-do-setup)
|
2006-01-05 22:28:16 +00:00
|
|
|
(gethash url url-history-hash-table nil))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(defun url-completion-function (string predicate function)
|
2017-06-28 10:44:18 -04:00
|
|
|
(declare (obsolete url-history-hash-table "26.1"))
|
2006-01-05 22:28:16 +00:00
|
|
|
;; Completion function to complete urls from the history.
|
|
|
|
;; This is obsolete since we can now pass the hash-table directly as a
|
|
|
|
;; completion table.
|
2004-04-04 01:21:46 +00:00
|
|
|
(url-do-setup)
|
|
|
|
(cond
|
|
|
|
((eq function nil)
|
|
|
|
(let ((list nil))
|
2017-06-28 10:44:18 -04:00
|
|
|
(maphash (lambda (key _) (push key list))
|
2006-01-05 22:28:16 +00:00
|
|
|
url-history-hash-table)
|
|
|
|
;; Not sure why we bother reversing the list. --Stef
|
2004-04-04 01:21:46 +00:00
|
|
|
(try-completion string (nreverse list) predicate)))
|
|
|
|
((eq function t)
|
2006-01-05 22:28:16 +00:00
|
|
|
(let ((stub (concat "\\`" (regexp-quote string)))
|
2004-04-04 01:21:46 +00:00
|
|
|
(retval nil))
|
|
|
|
(maphash
|
2017-06-28 10:44:18 -04:00
|
|
|
(lambda (url _)
|
2006-01-05 22:28:16 +00:00
|
|
|
(if (string-match stub url) (push url retval)))
|
2004-04-04 01:21:46 +00:00
|
|
|
url-history-hash-table)
|
|
|
|
retval))
|
|
|
|
((eq function 'lambda)
|
2006-01-05 22:28:16 +00:00
|
|
|
(and (gethash string url-history-hash-table) t))
|
2004-04-04 01:21:46 +00:00
|
|
|
(t
|
2005-06-14 15:07:56 +00:00
|
|
|
(error "url-completion-function very confused"))))
|
2004-04-04 01:21:46 +00:00
|
|
|
|
|
|
|
(provide 'url-history)
|
2004-04-04 04:44:10 +00:00
|
|
|
|
2004-04-12 04:04:10 +00:00
|
|
|
;;; url-history.el ends here
|