Mercurial > emacs
annotate lisp/eshell/em-banner.el @ 95147:5d23775277d2
*** empty log message ***
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Tue, 20 May 2008 23:37:27 +0000 |
parents | b5b0801a7637 |
children | ad5d26b1d5d1 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
32526
diff
changeset
|
1 ;;; em-banner.el --- sample module that displays a login banner |
29876 | 2 |
74509 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
79707 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
29876 | 5 |
32526 | 6 ;; Author: John Wiegley <johnw@gnu.org> |
7 | |
29876 | 8 ;; This file is part of GNU Emacs. |
9 | |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
29876 | 11 ;; it under the terms of the GNU General Public License as published by |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; (at your option) any later version. |
29876 | 14 |
15 ;; GNU Emacs 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 | |
94661
b5b0801a7637
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
29876 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; There is nothing to be done or configured in order to use this | |
26 ;; module, other than to select it by customizing the variable | |
27 ;; `eshell-modules-list'. It will then display a version information | |
28 ;; message whenever Eshell is loaded. | |
29 ;; | |
30 ;; This code is only an example of a how to write a well-formed | |
31 ;; extension module for Eshell. The better way to display login text | |
32 ;; is to use the `eshell-script' module, and to echo the desired | |
33 ;; strings from the user's `eshell-login-script' file. | |
34 ;; | |
35 ;; There is one configuration variable, which demonstrates how to | |
36 ;; properly define a customization variable in an extension module. | |
37 ;; In this case, it allows the user to change the string which | |
38 ;; displays at login time. | |
39 | |
87063
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
40 ;;; Code: |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
41 |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
42 (eval-when-compile |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
43 (require 'cl) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
44 (require 'esh-mode) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
45 (require 'eshell)) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
46 |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
47 (require 'esh-util) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
48 |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
49 (defgroup eshell-banner nil |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
50 "This sample module displays a welcome banner at login. |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
51 It exists so that others wishing to create their own Eshell extension |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
52 modules may have a simple template to begin with." |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
53 :tag "Login banner" |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
54 ;; :link '(info-link "(eshell)Login banner") |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
55 :group 'eshell-module) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
56 |
29876 | 57 ;;; User Variables: |
58 | |
59 (defcustom eshell-banner-message "Welcome to the Emacs shell\n\n" | |
60 "*The banner message to be displayed when Eshell is loaded. | |
61 This can be any sexp, and should end with at least two newlines." | |
62 :type 'sexp | |
63 :group 'eshell-banner) | |
64 | |
65 (put 'eshell-banner-message 'risky-local-variable t) | |
66 | |
67 (defcustom eshell-banner-load-hook '(eshell-banner-initialize) | |
68 "*A list of functions to run when `eshell-banner' is loaded." | |
69 :type 'hook | |
70 :group 'eshell-banner) | |
71 | |
72 (defun eshell-banner-initialize () | |
73 "Output a welcome banner on initialization." | |
74 ;; it's important to use `eshell-interactive-print' rather than | |
75 ;; `insert', because `insert' doesn't know how to interact with the | |
76 ;; I/O code used by Eshell | |
77 (unless eshell-non-interactive-p | |
78 (assert eshell-mode) | |
79 (assert eshell-banner-message) | |
80 (let ((msg (eval eshell-banner-message))) | |
81 (assert msg) | |
82 (eshell-interactive-print msg)))) | |
83 | |
84 (eshell-deftest banner banner-displayed | |
85 "Startup banner is displayed at point-min" | |
86 (assert eshell-banner-message) | |
87 (let ((msg (eval eshell-banner-message))) | |
88 (assert msg) | |
89 (goto-char (point-min)) | |
90 (looking-at msg))) | |
91 | |
87063
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
92 (provide 'em-banner) |
fbd20b5beb80
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
93 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
94 ;; arch-tag: e738b4ef-8671-42ae-a757-291779b92491 |
29876 | 95 ;;; em-banner.el ends here |