<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="index" title="Text File" newcontext="true">
<p>
;; forms-passwd -- demo for forms-mode	-*-emacs-lisp-*-
;; SCCS Status     : @(#)@ forms-passwd	1.1.2
;; Author          : Johan Vromans
;; Created On      : 1989
;; Last Modified By: Johan Vromans
;; Last Modified On: Tue Jul  2 15:12:45 1991
;; Update Count    : 2
;; Status          : OK
;;
;;
;; This demo visits your passwd file.
</p>
<p>;; use yp if present
(or (file-exists-p (setq forms-file &quot;/var/yp/src/passwd&quot;))
    (setq forms-file &quot;/etc/passwd&quot;))
</p>
<p>(setq forms-read-only t)		; to make sure
(setq forms-field-sep &quot;:&quot;)
(setq forms-number-of-fields 7)
</p>
<p>(setq forms-format-list
      (list
       &quot;====== Visiting &quot; forms-file &quot; ======\n\n&quot;
       &quot;User : &quot;	1
       &quot;   Uid: &quot;	3
       &quot;   Gid: &quot;	4
       &quot;\n\n&quot;
       &quot;Name : &quot;	5
       &quot;\n\n&quot;
       &quot;Home : &quot;	6
       &quot;\n\n&quot;
       &quot;Shell: &quot;	7
       &quot;\n&quot;))
</p>
</card>
</wml>
