1 ;;; log-view.el --- Major mode for browsing RCS/CVS/SCCS log output
3 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
6 ;; Keywords: rcs sccs cvs log version-control
7 ;; Revision: $Id: log-view.el,v 1.5 2000/12/06 19:49:40 fx Exp $
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
30 ;; - add compatibility with cvs-log.el
31 ;; - add ability to modify a log-entry (via cvs-mode-admin ;-)
32 ;; - remove references to cvs-*
36 (eval-when-compile (require 'cl
))
40 (defgroup log-view nil
41 "Major mode for browsing log output of RCS/CVS/SCCS."
45 (easy-mmode-defmap log-view-mode-map
46 '(("n" . log-view-msg-next
)
47 ("p" . log-view-msg-prev
)
48 ("N" . log-view-file-next
)
49 ("P" . log-view-file-prev
)
50 ("M-n" . log-view-file-next
)
51 ("M-p" . log-view-file-prev
))
54 ;; Here I really need either buffer-local keymap-inheritance
55 ;; or a minor-mode-map with lower precedence than the local map.
56 :inherit
(if (boundp 'cvs-mode-map
) cvs-mode-map
))
58 (defvar log-view-mode-hook nil
59 "Hook run at the end of `log-view-mode'.")
61 (defface log-view-file-face
62 '((((class color
) (background light
))
63 (:background
"grey70" :bold t
))
65 "Face for the file header line in `log-view-mode'."
67 (defvar log-view-file-face
'log-view-file-face
)
69 (defface log-view-message-face
70 '((((class color
) (background light
))
71 (:background
"grey85"))
73 "Face for the message header line in `log-view-mode'."
75 (defvar log-view-message-face
'log-view-message-face
)
77 (defconst log-view-file-re
79 "Working file: \\(.+\\)"
80 "\\|SCCS/s\\.\\(.+\\):"
82 (defconst log-view-message-re
"^\\(revision \\([.0-9]+\\)\\|D \\([.0-9]+\\) .*\\)$")
84 (defconst log-view-font-lock-keywords
86 (2 (if (boundp 'cvs-filename-face
) cvs-filename-face
) nil t
)
87 (3 (if (boundp 'cvs-filename-face
) cvs-filename-face
) nil t
)
88 (0 log-view-file-face append
))
89 (,log-view-message-re . log-view-message-face
)))
90 (defconst log-view-font-lock-defaults
91 '(log-view-font-lock-keywords t nil nil nil
))
98 (define-derived-mode log-view-mode fundamental-mode
"Log-View"
99 "Major mode for browsing CVS log output."
100 (set (make-local-variable 'font-lock-defaults
) log-view-font-lock-defaults
)
101 (set (make-local-variable 'cvs-minor-wrap-function
) 'log-view-minor-wrap
))
107 ;; define log-view-{msg,file}-{next,prev}
108 (easy-mmode-define-navigation log-view-msg log-view-message-re
"log message")
109 (easy-mmode-define-navigation log-view-file log-view-file-re
"file")
111 (defun log-view-goto-rev (rev)
112 (goto-char (point-min))
114 (while (not (equal rev
(log-view-current-tag)))
119 ;;;; Linkage to PCL-CVS (mostly copied from cvs-status.el)
122 (defconst log-view-dir-re
"^cvs[.ex]* [a-z]+: Logging \\(.+\\)$")
124 (defun log-view-current-file ()
127 (or (re-search-backward log-view-file-re nil t
)
128 (re-search-forward log-view-file-re
))
129 (let* ((file (or (match-string 2) (match-string 3)))
130 (cvsdir (and (re-search-backward log-view-dir-re nil t
)
132 (pcldir (and (boundp 'cvs-pcl-cvs-dirchange-re
)
133 (re-search-backward cvs-pcl-cvs-dirchange-re nil t
)
136 (let ((default-directory ""))
137 (when pcldir
(setq dir
(expand-file-name pcldir dir
)))
138 (when cvsdir
(setq dir
(expand-file-name cvsdir dir
)))
139 (expand-file-name file dir
)))))
141 (defun log-view-current-tag ()
145 (when (re-search-backward log-view-message-re nil t
)
146 (let ((rev (or (match-string 2) (match-string 3))))
147 (unless (re-search-forward log-view-file-re pt t
)
150 (defun log-view-minor-wrap (buf f
)
151 (let ((data (with-current-buffer buf
153 (cons (log-view-current-file)
154 (log-view-current-tag))
158 (cons (log-view-current-file)
159 (log-view-current-tag))))))))
160 (let ((cvs-branch-prefix (cdar data
))
161 (cvs-secondary-branch-prefix (and (cdar data
) (cddr data
)))
162 (cvs-minor-current-files
164 (when (and (cadr data
) (not (equal (caar data
) (cadr data
))))
165 (list (cadr data
)))))
166 ;; FIXME: I need to force because the fileinfos are UNKNOWN
167 (cvs-force-command "/F"))
173 ;; $Log: log-view.el,v $
174 ;; Revision 1.5 2000/12/06 19:49:40 fx
175 ;; Fix copyright years.
177 ;; Revision 1.4 2000/05/21 02:12:34 monnier
178 ;; Fix file description.
179 ;; (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
181 ;; (log-view-font-lock-keywords): Only use cvs-filename-face if present.
182 ;; (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
184 ;; Revision 1.3 2000/05/10 22:22:21 monnier
185 ;; (log-view-goto-rev): New function for the new VC.
186 ;; (log-view-minor-wrap): Use mark-active.
188 ;; Revision 1.2 2000/03/22 01:10:09 monnier
189 ;; (log-view-(msg|file)-(prev|next)): Rename from
190 ;; log-view-*-(message|file) and use easy-mmode-define-navigation.
191 ;; (log-view-message-re): Match SCCS format as well.
192 ;; And match the revision line rather than the dashed separator line.
193 ;; (log-view-mode): Use the new define-derived-mode.
194 ;; (log-view-current-tag): Fill in with an actual implementation.
197 ;;; log-view.el ends here