Revert last bug-reference-url-format change.
[bpt/emacs.git] / lisp / progmodes / bug-reference.el
CommitLineData
871968ca
GM
1;; bug-reference.el --- buttonize bug references
2
114f9c96 3;; Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
871968ca
GM
4
5;; Author: Tom Tromey <tromey@redhat.com>
6;; Created: 21 Mar 2007
7;; Keywords: tools
8
9;; This file is part of GNU Emacs.
10
b1fc2b50 11;; GNU Emacs is free software: you can redistribute it and/or modify
871968ca 12;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
871968ca
GM
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b1fc2b50 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
871968ca
GM
23
24;;; Commentary:
25
26;; This file provides minor modes for putting clickable overlays on
27;; references to bugs. A bug reference is text like "PR foo/29292";
28;; this is mapped to a URL using a user-supplied format.
29
30;; Two minor modes are provided. One works on any text in the buffer;
31;; the other operates only on comments and strings.
32
33(defvar bug-reference-map
34 (let ((map (make-sparse-keymap)))
315eb96d 35 (define-key map [mouse-2] 'bug-reference-push-button)
871968ca
GM
36 (define-key map (kbd "C-c RET") 'bug-reference-push-button)
37 map)
38 "Keymap used by bug reference buttons.")
39
40;; E.g., "http://gcc.gnu.org/PR%s"
41(defvar bug-reference-url-format nil
42 "Format used to turn a bug number into a URL.
43The bug number is supplied as a string, so this should have a single %s.
dbb5e44a
SS
44This can also be a function designator; it is called without arguments
45 and should return a string.
46It can use `match-string' to get parts matched against
47`bug-reference-bug-regexp', specifically:
48 1. issue kind (bug, patch, rfe &c)
49 2. issue number.
50
871968ca
GM
51There is no default setting for this, it must be set per file.")
52
bffc6559 53;;;###autoload
36045ff3 54(put 'bug-reference-url-format 'safe-local-variable 'stringp)
bffc6559 55
871968ca 56(defconst bug-reference-bug-regexp
dbb5e44a 57 "\\([Bb]ug ?#\\|[Pp]atch ?#\\|RFE ?#\\|PR [a-z-+]+/\\)\\([0-9]+\\)"
871968ca
GM
58 "Regular expression which matches bug references.")
59
60(defun bug-reference-set-overlay-properties ()
61 "Set properties of bug reference overlays."
62 (put 'bug-reference 'evaporate t)
63 (put 'bug-reference 'face 'link)
64 (put 'bug-reference 'mouse-face 'highlight)
65 (put 'bug-reference 'help-echo "mouse-1, C-c RET: visit this bug")
66 (put 'bug-reference 'keymap bug-reference-map)
67 (put 'bug-reference 'follow-link t))
68
69(bug-reference-set-overlay-properties)
70
71(defun bug-reference-unfontify (start end)
72 "Remove bug reference overlays from region."
73 (dolist (o (overlays-in start end))
74 (when (eq (overlay-get o 'category) 'bug-reference)
75 (delete-overlay o))))
76
d4296db3
GM
77(defvar bug-reference-prog-mode)
78
871968ca
GM
79(defun bug-reference-fontify (start end)
80 "Apply bug reference overlays to region."
81 (save-excursion
82 (let ((beg-line (progn (goto-char start) (line-beginning-position)))
83 (end-line (progn (goto-char end) (line-end-position))))
84 ;; Remove old overlays.
85 (bug-reference-unfontify beg-line end-line)
86 (goto-char beg-line)
321d9c42
GM
87 (while (and (< (point) end-line)
88 (re-search-forward bug-reference-bug-regexp end-line 'move))
89 (when (or (not bug-reference-prog-mode)
90 ;; This tests for both comment and string syntax.
91 (nth 8 (syntax-ppss)))
92 (let ((overlay (make-overlay (match-beginning 0) (match-end 0)
93 nil t nil)))
94 (overlay-put overlay 'category 'bug-reference)
1cec8b5f
JL
95 ;; Don't put a link if format is undefined
96 (when bug-reference-url-format
dbb5e44a
SS
97 (overlay-put overlay 'bug-reference-url
98 (if (stringp bug-reference-url-format)
99 (format bug-reference-url-format
100 (match-string-no-properties 2))
101 (funcall bug-reference-url-format))))))))))
871968ca
GM
102
103;; Taken from button.el.
104(defun bug-reference-push-button (&optional pos use-mouse-action)
105 "Open URL corresponding to the bug reference at POS."
106 (interactive
107 (list (if (integerp last-command-event) (point) last-command-event)))
108 (if (and (not (integerp pos)) (eventp pos))
109 ;; POS is a mouse event; switch to the proper window/buffer
110 (let ((posn (event-start pos)))
111 (with-current-buffer (window-buffer (posn-window posn))
112 (bug-reference-push-button (posn-point posn) t)))
113 ;; POS is just normal position.
114 (dolist (o (overlays-at pos))
115 ;; It should only be possible to have one URL overlay.
116 (let ((url (overlay-get o 'bug-reference-url)))
117 (when url
118 (browse-url url))))))
119
120;;;###autoload
121(define-minor-mode bug-reference-mode
1cec8b5f 122 "Minor mode to buttonize bugzilla references in the current buffer."
871968ca
GM
123 nil
124 ""
125 nil
126 (if bug-reference-mode
1cec8b5f 127 (jit-lock-register #'bug-reference-fontify)
871968ca
GM
128 (jit-lock-unregister #'bug-reference-fontify)
129 (save-restriction
130 (widen)
131 (bug-reference-unfontify (point-min) (point-max)))))
132
133;;;###autoload
134(define-minor-mode bug-reference-prog-mode
135 "Like `bug-reference-mode', but only buttonize in comments and strings."
136 nil
137 ""
138 nil
139 (if bug-reference-prog-mode
1cec8b5f 140 (jit-lock-register #'bug-reference-fontify)
871968ca
GM
141 (jit-lock-unregister #'bug-reference-fontify)
142 (save-restriction
143 (widen)
144 (bug-reference-unfontify (point-min) (point-max)))))
145
146;; arch-tag: b138abce-e5c3-475e-bd58-7afba40387ea
147;;; bug-reference.el ends here