Stefan Scholl | 6 Mar 2005 16:57

New release CL-EMB 0.2.2 (minor bugfix)

New release CL-EMB 0.2.2

CL-EMB is a library to embed Common Lisp and special template
tags into normal text files. Can be used for dynamically
generated HTML pages.

You can download it from
http://common-lisp.net/project/cl-emb/
or install with ASDF-Install.

CL-USER> (asdf:operate 'asdf:load-op :asdf-install)
CL-USER> (asdf-install:install :cl-emb)

Changes:
- Minor bugfix. Declared ENV ignorable in the generated code.
  Should prevent warnings/errors regarding the defined but
  unused variable CL-EMB-INTERN::ENV

Stefan Scholl | 12 Mar 2005 01:25

New release CL-EMB 0.3.0 (API CHANGES!)

New release CL-EMB 0.3.0

CL-EMB is a library to embed Common Lisp and special template
tags into normal text files. Can be used for dynamically
generated HTML pages.

You can download it from
http://common-lisp.net/project/cl-emb/
or install with ASDF-Install.

CL-USER> (asdf:operate 'asdf:load-op :asdf-install)
CL-USER> (asdf-install:install :cl-emb)

Changes:
- API change: EXECUTE-EMB's optional parameters are now keyword
  parameters. You have to change your calls like this:

  OLD:   (emb:execute-emb "foo" '(:language "Common Lisp"))

  NEW:   (emb:execute-emb "foo" :env '(:language "Common Lisp"))

  See the added keyword :ENV before the plist.

- Generator loops.
  The additional keyword parameter GENERATOR-MAKER to EXECUTE-EMB
  lets you supply a function, which returns a generator function.
  Generator functions are described on
  http://www.cs.northwestern.edu/academics/courses/325/readings/graham/generators.html

  Basically these are functions which answer to command codes
(Continue reading)

Stefan Scholl | 12 Mar 2005 01:34

New release CL-EMB 0.3.0 (API CHANGES!)

Hi!

0.3.1 will come next week. I have to remove one important new
entry from the TODO list:

  - Locking mechanism for threaded/multiprocessing programs.

Until then: Be careful if you use threads/multiprocessing!

Regards,
Stefan

Stefan Scholl | 18 Mar 2005 17:09

New release CL-EMB 0.3.1

New release CL-EMB 0.3.1

CL-EMB is a library to embed Common Lisp and special template
tags into normal text files. Can be used for dynamically
generated HTML pages.

You can download it from
http://common-lisp.net/project/cl-emb/
or install with ASDF-Install.

CL-USER> (asdf:operate 'asdf:load-op :asdf-install)
CL-USER> (asdf-install:install :cl-emb)

Changes:
- Bugfix regarding the template tags  <at> include and  <at> call
  The generated code wasn't correct after the API changes
  in 0.3.0


Gmane