From: Kevin M. Rosenberg Date: Mon, 16 Sep 2002 08:38:36 +0000 (+0000) Subject: r2706: Auto commit for Debian build X-Git-Tag: v2.5.5~173 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=711232053c56eb646c584a1758c359553990c70c r2706: Auto commit for Debian build --- diff --git a/doc/readme.html b/doc/readme.html index 07d97c4..0c4e13b 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -1,4 +1,4 @@ - +version="1.0" encoding="iso-8859-1" standalone="yes"?> LML README

LML Documentation

Overview

LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by Kevin Rosenberg. The home page for LML is http://www.b9.com/.

Installation

The easiest way to install LML is to use the Debian GNU/Linux operating system. You can then use the command apt-get install cl-lml to automatically download and install the LML package.

On a non-Debian system, you need to have either ASDF or mk-defsystem installed to load the system definition file. You will need to change the source pathname in the system file to match the location where you have installed LML.

Usage

Currently, there is no documentation on the functions provided by LML. However, the source code is instructive and there are example files included in the LML package.

Examples

Iteration
(i "The square of the first five integers are)"
  (b
diff --git a/utils.cl b/utils.cl
index 78e3714..dd86f0c 100644
--- a/utils.cl
+++ b/utils.cl
@@ -1,4 +1,4 @@
-;;; $Id: utils.cl,v 1.3 2002/09/16 02:37:35 kevin Exp $
+;;; $Id: utils.cl,v 1.4 2002/09/16 08:38:36 kevin Exp $
 ;;;;
 ;;;; General purpose utilities
 
@@ -58,7 +58,7 @@
     #+gcl (lisp:bye code)
     #+lispworks (lw:quit :status code)
     #+lucid (lcl:quit code)
-    #+sbcl (sb-ext:quit :unix-code (typecase code (number code) (null 0) (t 1)))
+    #+sbcl (sb-ext:quit :unix-status (typecase code (number code) (null 0) (t 1)))
     #-(or allegro clisp cmu cormanlisp gcl lispworks lucid sbcl)
     (error 'not-implemented :proc (list 'quit code)))