1 ;;; forms-d2.el --- demo forms-mode -*- no-byte-compile: t -*-
3 ;; Copyright (C) 1991, 1994, 1995, 1996, 1997, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Johan Vromans <jvromans@squirrel.nl>
9 ;; This file is part of GNU Emacs.
13 ;; This sample forms exploit most of the features of forms mode.
17 ;; Set the name of the data file.
18 (setq forms-file
"forms-d2.dat")
20 ;; Use 'forms-enumerate' to set field names and number thereof.
21 (setq forms-number-of-fields
27 arch-shortname
; ... ... on
35 ;; The following functions are used by this form for layout purposes.
37 (defun arch-tocol (target &optional fill
)
38 "Produces a string to skip to column TARGET. Prepends newline if needed.
39 The optional FILL should be a character, used to fill to the column."
42 (if (< target
(current-column))
43 (concat "\n" (make-string target fill
))
44 (make-string (- target
(current-column)) fill
)))
46 (defun arch-rj (target field
&optional fill
)
47 "Produces a string to skip to column TARGET minus the width of field FIELD.
48 Prepends newline if needed. The optional FILL should be a character,
49 used to fill to the column."
50 (arch-tocol (- target
(length (nth field forms-fields
))) fill
))
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
60 (setq forms-new-record-filter
'arch-new-record-filter
)
63 (setq forms-format-list
65 "====== Public Domain Software Archive ======\n\n"
69 "Article: " arch-newsgroup
78 "Submitted by: " arch-from
82 "Keywords: " arch-keywords
85 "\n\n====== Remarks ======\n\n"
91 ;;; arch-tag: 8e5d5dac-7abf-4722-ab5e-03eb749beaca
92 ;;; forms-d2.el ends here