Mercurial > emacs
annotate lisp/forms-d2.el @ 72649:ea0f13c83847
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Tue, 05 Sep 2006 03:39:19 +0000 |
parents | 24c6e1c8e0cb |
children | 829062b6492b 187d6a1f84f7 |
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 |
3 ;; Author: Johan Vromans <jvromans@squirrel.nl> | |
4 ;; Created: 1989 | |
5 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
6 ;; This file is part of GNU Emacs. |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
7 |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
8 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
9 |
25867 | 10 ;; This sample forms exploit most of the features of forms mode. |
11 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
12 ;;; Code: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
13 |
25867 | 14 ;; Set the name of the data file. |
15 (setq forms-file "forms-d2.dat") | |
16 | |
17 ;; Use 'forms-enumerate' to set field names and number thereof. | |
18 (setq forms-number-of-fields | |
19 (forms-enumerate | |
20 '(arch-newsgroup ; 1 | |
21 arch-volume ; 2 | |
22 arch-issue ; and ... | |
23 arch-article ; ... so | |
24 arch-shortname ; ... ... on | |
25 arch-parts | |
26 arch-from | |
27 arch-longname | |
28 arch-keywords | |
29 arch-date | |
30 arch-remarks))) | |
31 | |
32 ;; The following functions are used by this form for layout purposes. | |
33 ;; | |
34 (defun arch-tocol (target &optional fill) | |
64542
24c6e1c8e0cb
(arch-rj): Fix typo in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
35 "Produces a string to skip to column TARGET. Prepends newline if needed. |
25867 | 36 The optional FILL should be a character, used to fill to the column." |
37 (if (null fill) | |
64542
24c6e1c8e0cb
(arch-rj): Fix typo in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
38 (setq fill ?\s)) |
25867 | 39 (if (< target (current-column)) |
40 (concat "\n" (make-string target fill)) | |
41 (make-string (- target (current-column)) fill))) | |
42 ;; | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47726
diff
changeset
|
43 (defun arch-rj (target field &optional fill) |
25867 | 44 "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
|
45 Prepends newline if needed. The optional FILL should be a character, |
25867 | 46 used to fill to the column." |
47 (arch-tocol (- target (length (nth field forms-fields))) fill)) | |
48 | |
49 ;; Record filters. | |
50 ;; | |
51 (defun arch-new-record-filter (the-record) | |
52 "Form a new record with some defaults." | |
53 (aset the-record arch-from (user-full-name)) | |
54 (aset the-record arch-date (current-time-string)) | |
55 the-record ; return it | |
56 ) | |
57 (setq forms-new-record-filter 'arch-new-record-filter) | |
58 | |
59 ;; The format list. | |
60 (setq forms-format-list | |
61 (list | |
62 "====== Public Domain Software Archive ======\n\n" | |
63 arch-shortname | |
64 " - " arch-longname | |
65 "\n\n" | |
66 "Article: " arch-newsgroup | |
67 "/" arch-article | |
68 " " | |
69 '(arch-tocol 40) | |
70 "Issue: " arch-issue | |
71 " " | |
72 '(arch-rj 73 10) | |
73 "Date: " arch-date | |
74 "\n\n" | |
75 "Submitted by: " arch-from | |
76 "\n" | |
77 '(arch-tocol 79 ?-) | |
78 "\n" | |
79 "Keywords: " arch-keywords | |
80 "\n\n" | |
81 "Parts: " arch-parts | |
82 "\n\n====== Remarks ======\n\n" | |
83 arch-remarks | |
84 )) | |
85 | |
86 ;; That's all, folks! | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25867
diff
changeset
|
87 |
52401 | 88 ;;; 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
|
89 ;;; forms-d2.el ends here |