[version 0.11.1 ediware**20080328060011] { hunk ./CHANGELOG 1 +Version 0.11.1 +2008-03-28 +Replaced T with t to be friendly to AllegroCL's "modern" mode (thanks to John Maraist) + hunk ./cl-who.asd 2 -;;; $Header: /usr/local/cvsrep/cl-who/cl-who.asd,v 1.18 2007/08/24 08:01:37 edi Exp $ +;;; $Header: /usr/local/cvsrep/cl-who/cl-who.asd,v 1.20 2008/03/27 23:17:55 edi Exp $ hunk ./cl-who.asd 4 -;;; Copyright (c) 2003-2007, Dr. Edmund Weitz. All rights reserved. +;;; Copyright (c) 2003-2008, Dr. Edmund Weitz. All rights reserved. hunk ./cl-who.asd 31 - :version "0.11.0" + :version "0.11.1" hunk ./doc/index.html 51 -HTML generation facilities by John Foderaro of Franz Inc. where +HTML generation facilities by John Foderaro of Franz Inc. were hunk ./doc/index.html 77 -CL-WHO is used by clutu, ERGO, and Heike Stephan. +CL-WHO is for example used by clutu and Heike Stephan. hunk ./doc/index.html 259 -current version is 0.11.0. +current version is 0.11.1. hunk ./doc/index.html 261 -The preferred method to compile and load Hunchentoot is via ASDF. +The preferred method to compile and load CL-WHO is via ASDF. hunk ./doc/index.html 441 -
-This is the main macro of CL-WHO. It will transform its body by the transformation rules described in Syntax and Semantics such that the output generated is sent to the stream denoted byvar
andstream
.var
must be a symbol. Ifstream
isNIL
it is assumed thatvar
is already bound to a stream, ifstream
is notNIL
var
will be bound to the formstream
which will be evaluated at run time.prologue
should be a string (orNIL
for the empty string which is the default) which is guaranteed to be the first thing sent to the stream from within the body of this macro. Ifprologue
isT
the prologue string is the value of*PROLOGUE*
. CL-WHO will usually try not to insert any unnecessary whitespace in order to save bandwidth. However, ifindent
is true line breaks will be inserted and nested tags will be intended properly. The value ofindent
- if it is an integer - will be taken as the initial indentation. If it is not an integer it is assumed to mean0
. Theresults
are the values returned by theforms
. +
This is the main macro of CL-WHO. It will transform +its body by the transformation rules described +in Syntax and Semantics such that the +output generated is sent to the stream denoted +byvar
+andstream
.var
must be a +symbol. Ifstream
isNIL
it is +assumed thatvar
is already bound to a stream, +ifstream
is +notNIL
var
will be bound to the +formstream
which will be evaluated at run +time.prologue
should be a string +(orNIL
for the empty string which is the default) which +is guaranteed to be the first thing sent to the stream from within the +body of this macro. Ifprologue
isT
+the prologue string is the value +of*PROLOGUE*
. CL-WHO will +usually try not to insert any unnecessary whitespace in order to save +bandwidth. However, ifindent
is true +line breaks will be inserted and nested tags will be indented +properly. The value ofindent
- if it is an +integer - will be taken as the initial indentation. If it is not an +integer it is assumed to mean0
. (But note that +indentation might change the semantics of the generated HTML. This is +for example the case for thePRE
+andTEXTAREA
tags, and in certain situations additional +whitespace might also change the layout of tables.) +Theresults
are the values returned by +theforms
. hunk ./doc/index.html 830 -$Header: /usr/local/cvsrep/cl-who/doc/index.html,v 1.58 2007/08/24 08:01:40 edi Exp $ +$Header: /usr/local/cvsrep/cl-who/doc/index.html,v 1.63 2008/03/27 23:16:49 edi Exp $ hunk ./packages.lisp 2 -;;; $Header: /usr/local/cvsrep/cl-who/packages.lisp,v 1.17 2007/08/24 08:01:37 edi Exp $ +;;; $Header: /usr/local/cvsrep/cl-who/packages.lisp,v 1.18 2008/03/27 23:17:55 edi Exp $ hunk ./packages.lisp 4 -;;; Copyright (c) 2003-2007, Dr. Edmund Weitz. All rights reserved. +;;; Copyright (c) 2003-2008, Dr. Edmund Weitz. All rights reserved. hunk ./specials.lisp 2 -;;; $Header: /usr/local/cvsrep/cl-who/specials.lisp,v 1.2 2007/08/24 08:01:37 edi Exp $ +;;; $Header: /usr/local/cvsrep/cl-who/specials.lisp,v 1.4 2008/03/27 23:17:55 edi Exp $ hunk ./specials.lisp 4 -;;; Copyright (c) 2003-2007, Dr. Edmund Weitz. All rights reserved. +;;; Copyright (c) 2003-2008, Dr. Edmund Weitz. All rights reserved. hunk ./specials.lisp 99 -(defvar *html-empty-tag-aware-p* T +(defvar *html-empty-tag-aware-p* t hunk ./who.lisp 2 -;;; $Header: /usr/local/cvsrep/cl-who/who.lisp,v 1.35 2007/08/24 08:01:37 edi Exp $ +;;; $Header: /usr/local/cvsrep/cl-who/who.lisp,v 1.36 2008/03/27 23:17:55 edi Exp $ hunk ./who.lisp 4 -;;; Copyright (c) 2003-2007, Dr. Edmund Weitz. All rights reserved. +;;; Copyright (c) 2003-2008, Dr. Edmund Weitz. All rights reserved. }