* riece-server.el (riece-quit-server-process): Use riece-run-at-time.
[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 (require 'riece-menu)                   ;riece-menu-items
34
35 (defvar browse-url-browser-function)
36
37 (defgroup riece-url nil
38   "URL Browsing in IRC buffer."
39   :group 'riece-vars)
40
41 (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_=#$@~`%&*+|\\/]"
42   "Regular expression that matches URLs."
43   :group 'riece-url
44   :type 'regexp)
45
46 (defvar riece-urls nil
47   "A list of URL which appears in Riece buffers.")
48
49 (autoload 'widget-convert-button "wid-edit")
50
51 (defun riece-url-scan-region (start end)
52   (save-excursion
53     (goto-char start)
54     (while (re-search-forward riece-url-regexp end t)
55       (let ((url (match-string 0)))
56         (if (memq 'riece-highlight riece-addons)
57             (widget-convert-button
58              'url-link (match-beginning 0) (match-end 0) url))
59         (unless (member url riece-urls)
60           (setq riece-urls (cons url riece-urls)))))))
61
62 (defun riece-command-browse-url (&optional url)
63   (interactive
64    (list (completing-read "Open URL: " (mapcar #'list riece-urls))))
65   (browse-url url))
66
67 (defun riece-url-create-menu (menu)
68   (mapcar (lambda (url)
69             (vector url (list 'browse-url url)))
70           riece-urls))
71             
72 (defvar riece-dialogue-mode-map)
73
74 (defun riece-url-requires ()
75   (append (if (memq 'riece-highlight riece-addons)
76               '(riece-highlight))
77           (if (memq 'riece-menu riece-addons)
78               '(riece-menu))))
79
80 (defun riece-url-insinuate ()
81   (add-hook 'riece-after-insert-functions 'riece-url-scan-region)
82   (define-key riece-dialogue-mode-map "U" 'riece-command-browse-url)
83   (if (memq 'riece-menu riece-addons)
84       (add-hook 'riece-command-mode-hook
85                 (lambda ()
86                   (easy-menu-add-item
87                    nil (list (car riece-menu-items))
88                    '("Open URL..." :filter riece-url-create-menu)))
89                 t)))
90
91 (provide 'riece-url)
92
93 ;;; riece-url.el ends here