$Header: /home/gene/library/articles/html-templates-lisp/stover-code/RCS/README,v 1.2 2004/02/25 07:59:36 gene Exp $

To load the library, make sure this directory is your
current directory & fire-up your Lisp.

Then evaluate (load "loadall.lisp").  That will load all of
the library's source files in the proper order, plus
"test.lisp", which contains test programs.

To run the test programs, evaluate (check).  If it prints
nothing and returns, T, all the tests worked.  (If you want
to see the names of the test programs as they run, evaluate
(check t).)

There are some CGI programs which use this library at
<http://lisp-p.org/lahte/>.

HOW TO RUN THE EXAMPLES

* SHOWDIR

    SHOWDIR is a function that's created when examples.lisp
    uses DEF-ALL-TEMPLATES to load the template files in the
    examples/ directory.  After loading examples.lisp into
    your Lisp (by loading "loadall.lisp"), try this:

    > (setq pattern (make-pathname :directory '(:relative)
                                   :name :wild :type :wild))
    > (with-open-file (f "output.html" :direction :output)
        (showdir f pattern))

    Now view the "output.html" file in your web browser.

### --- end of file ---
