* riece-url.el: New add-on.
[riece] / lisp / riece-url.el
1 ;;; riece-url.el --- URL collector add-on
2 ;; Copyright (C) 1998-2003 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 1998-09-28
6 ;; Keywords: IRC, riece
7
8 ;; This file is part of Riece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (defvar browse-url-browser-function)
28
29 (defgroup riece-url nil
30   "URL Browsing in IRC buffer."
31   :group 'riece-vars)
32
33 (defcustom riece-url-regexp  "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|telnet\\|wais\\|mailto\\):\\(//[-a-zA-Z0-9_.]+:[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*[-a-zA-Z0-9_=#$@~`%&*+|\\/]"
34   "Regular expression that matches URLs."
35   :group 'riece-url
36   :type 'regexp)
37
38 (defvar riece-urls nil
39   "A list of URL which appears in Riece buffers.")
40
41 (autoload 'widget-convert-button "wid-edit")
42
43 (defun riece-url-add-buttons (start end)
44   (save-excursion
45     (goto-char start)
46     (while (re-search-forward riece-url-regexp end t)
47       (let ((url (match-string 0)))
48         (widget-convert-button
49          'url-link (match-beginning 0) (match-end 0) url)
50         (unless (member url riece-urls)
51           (setq riece-urls (cons url riece-urls)))))))
52
53 (defun riece-command-browse-url (&optional url)
54   (interactive
55    (list (completing-read "Open URL:" (mapcar #'list riece-urls))))
56   (browse-url url))
57
58 (defvar riece-dialogue-mode-map)
59
60 (defun riece-url-requires ()
61   '(riece-highlight))
62
63 (defun riece-url-insinuate ()
64   (add-hook 'riece-after-insert-functions 'riece-url-add-buttons)
65   (define-key riece-dialogue-mode-map "U" 'riece-command-browse-url))
66
67 (provide 'riece-url)
68
69 ;;; riece-url.el ends here