12 Mar 01:21
New release CL-EMB 0.3.0 (API CHANGES!)
From: Stefan Scholl <sscholl@...>
Subject: New release CL-EMB 0.3.0 (API CHANGES!)
Newsgroups: gmane.lisp.cl-emb.devel
Date: 2005-03-12 00:25:03 GMT
Subject: New release CL-EMB 0.3.0 (API CHANGES!)
Newsgroups: gmane.lisp.cl-emb.devel
Date: 2005-03-12 00:25:03 GMT
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)
RSS Feed