* riece-filter.el (riece-sentinel): Don't clear
[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 ;;; Commentary:
26
27 ;; To use, add the following line to your ~/.riece/init.el:
28 ;; (add-to-list 'riece-addons 'riece-url)
29
30 ;;; Code:
31
32 (require 'riece-options)
33
34 (defvar browse-url-browser-function)
35
36 (defgroup riece-url nil
37   "URL Browsing in IRC buffer."
38   :group 'riece-vars)
39
40 (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_=#$@~`%&*+|\\/]"
41   "Regular expression that matches URLs."
42   :group 'riece-url
43   :type 'regexp)
44
45 (defvar riece-urls nil
46   "A list of URL which appears in Riece buffers.")
47
48 (autoload 'widget-convert-button "wid-edit")
49
50 (defun riece-url-scan-region (start end)
51   (save-excursion
52     (goto-char start)
53     (while (re-search-forward riece-url-regexp end t)
54       (let ((url (match-string 0)))
55         (if (memq 'riece-highlight riece-addons)
56             (widget-convert-button
57              'url-link (match-beginning 0) (match-end 0) url))
58         (unless (member url riece-urls)
59           (setq riece-urls (cons url riece-urls)))))))
60
61 (defun riece-command-browse-url (&optional url)
62   (interactive
63    (list (completing-read "Open URL: " (mapcar #'list riece-urls))))
64   (browse-url url))
65
66 (defvar riece-dialogue-mode-map)
67
68 (defun riece-url-requires ()
69   (if (memq 'riece-highlight riece-addons)
70       '(riece-highlight)))
71
72 (defun riece-url-insinuate ()
73   (add-hook 'riece-after-insert-functions 'riece-url-scan-region)
74   (define-key riece-dialogue-mode-map "U" 'riece-command-browse-url))
75
76 (provide 'riece-url)
77
78 ;;; riece-url.el ends here