annotate lisp/gnus/gnus-scomo.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus-scomo.el --- mode for editing Gnus score files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1996 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news, mail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (require 'easymenu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (require 'timezone)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (eval-when-compile (require 'cl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (defvar gnus-score-mode-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 "*Hook run in score mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defvar gnus-score-menu-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 "*Hook run after creating the score mode menu.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (defvar gnus-score-edit-exit-function nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 "Function run on exit from the score buffer.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (defvar gnus-score-mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (unless gnus-score-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (setq gnus-score-mode-map (copy-keymap emacs-lisp-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (define-key gnus-score-mode-map "\C-c\C-c" 'gnus-score-edit-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (define-key gnus-score-mode-map "\C-c\C-d" 'gnus-score-edit-insert-date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (define-key gnus-score-mode-map "\C-c\C-p" 'gnus-score-pretty-print))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (defun gnus-score-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 "Mode for editing Gnus score files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 This mode is an extended emacs-lisp mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 \\{gnus-score-mode-map}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (use-local-map gnus-score-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (when menu-bar-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (gnus-score-make-menu-bar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (set-syntax-table emacs-lisp-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (setq major-mode 'gnus-score-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (setq mode-name "Score")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (lisp-mode-variables nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (make-local-variable 'gnus-score-edit-exit-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (run-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (defun gnus-score-make-menu-bar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (unless (boundp 'gnus-score-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (easy-menu-define
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 gnus-score-menu gnus-score-mode-map ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 '("Score"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ["Exit" gnus-score-edit-exit t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ["Insert date" gnus-score-edit-insert-date t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ["Format" gnus-score-pretty-print t]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (run-hooks 'gnus-score-menu-hook)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (defun gnus-score-edit-insert-date ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 "Insert date in numerical format."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (princ (gnus-score-day-number (current-time)) (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (defun gnus-score-pretty-print ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 "Format the current score file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (let ((form (read (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (pp form (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (defun gnus-score-edit-exit ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 "Stop editing the score file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (unless (file-exists-p (file-name-directory (buffer-file-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (make-directory (file-name-directory (buffer-file-name)) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (save-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (bury-buffer (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (let ((buf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (when gnus-score-edit-exit-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (funcall gnus-score-edit-exit-function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (when (eq buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (switch-to-buffer (other-buffer (current-buffer))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (defun gnus-score-day-number (time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (let ((dat (decode-time time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (timezone-absolute-from-gregorian
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (nth 4 dat) (nth 3 dat) (nth 5 dat))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (provide 'gnus-scomo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ;;; gnus-scomo.el ends here