Mercurial > emacs
annotate lisp/forms-d2.el @ 81955:33a7b634c4b4
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 18 Jul 2007 11:55:44 +0000 |
parents | e3694f1cb928 |
children | 8b0dabde9595 95d0cdf160ea |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
1 ;;; forms-d2.el --- demo forms-mode -*- no-byte-compile: t -*- |
25867 | 2 |
74679
829062b6492b
Copy copyright header from forms.el (at rms instruction).
Glenn Morris <rgm@gnu.org>
parents:
64542
diff
changeset
|
3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997, 2001, 2002, 2003, |
75347 | 4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
74679
829062b6492b
Copy copyright header from forms.el (at rms instruction).
Glenn Morris <rgm@gnu.org>
parents:
64542
diff
changeset
|
5 |
25867 | 6 ;; Author: Johan Vromans <jvromans@squirrel.nl> |
7 ;; Created: 1989 | |
8 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
10 |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
11 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
12 |
25867 | 13 ;; This sample forms exploit most of the features of forms mode. |
14 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
15 ;;; Code: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
16 |
25867 | 17 ;; Set the name of the data file. |
18 (setq forms-file "forms-d2.dat") | |
19 | |
20 ;; Use 'forms-enumerate' to set field names and number thereof. | |
21 (setq forms-number-of-fields | |
22 (forms-enumerate | |
23 '(arch-newsgroup ; 1 | |
24 arch-volume ; 2 | |
25 arch-issue ; and ... | |
26 arch-article ; ... so | |
27 arch-shortname ; ... ... on | |
28 arch-parts | |
29 arch-from | |
30 arch-longname | |
31 arch-keywords | |
32 arch-date | |
33 arch-remarks))) | |
34 | |
35 ;; The following functions are used by this form for layout purposes. | |
36 ;; | |
37 (defun arch-tocol (target &optional fill) | |
64542
24c6e1c8e0cb
(arch-rj): Fix typo in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
38 "Produces a string to skip to column TARGET. Prepends newline if needed. |
25867 | 39 The optional FILL should be a character, used to fill to the column." |
40 (if (null fill) | |
64542
24c6e1c8e0cb
(arch-rj): Fix typo in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
41 (setq fill ?\s)) |
25867 | 42 (if (< target (current-column)) |
43 (concat "\n" (make-string target fill)) | |
44 (make-string (- target (current-column)) fill))) | |
45 ;; | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
46 (defun arch-rj (target field &optional fill) |
25867 | 47 "Produces a string to skip to column TARGET minus the width of field FIELD. |
64542
24c6e1c8e0cb
(arch-rj): Fix typo in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
48 Prepends newline if needed. The optional FILL should be a character, |
25867 | 49 used to fill to the column." |
50 (arch-tocol (- target (length (nth field forms-fields))) fill)) | |
51 | |
52 ;; Record filters. | |
53 ;; | |
54 (defun arch-new-record-filter (the-record) | |
55 "Form a new record with some defaults." | |
56 (aset the-record arch-from (user-full-name)) | |
57 (aset the-record arch-date (current-time-string)) | |
58 the-record ; return it | |
59 ) | |
60 (setq forms-new-record-filter 'arch-new-record-filter) | |
61 | |
62 ;; The format list. | |
63 (setq forms-format-list | |
64 (list | |
65 "====== Public Domain Software Archive ======\n\n" | |
66 arch-shortname | |
67 " - " arch-longname | |
68 "\n\n" | |
69 "Article: " arch-newsgroup | |
70 "/" arch-article | |
71 " " | |
72 '(arch-tocol 40) | |
73 "Issue: " arch-issue | |
74 " " | |
75 '(arch-rj 73 10) | |
76 "Date: " arch-date | |
77 "\n\n" | |
78 "Submitted by: " arch-from | |
79 "\n" | |
80 '(arch-tocol 79 ?-) | |
81 "\n" | |
82 "Keywords: " arch-keywords | |
83 "\n\n" | |
84 "Parts: " arch-parts | |
85 "\n\n====== Remarks ======\n\n" | |
86 arch-remarks | |
87 )) | |
88 | |
89 ;; That's all, folks! | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
90 |
52401 | 91 ;;; arch-tag: 8e5d5dac-7abf-4722-ab5e-03eb749beaca |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
92 ;;; forms-d2.el ends here |