From sscholl at common-lisp.net Sun Feb 19 00:09:14 2006 From: sscholl at common-lisp.net (Stefan Scholl) Date: Sun, 19 Feb 2006 01:09:14 +0100 Subject: [cl-emb-announce] New release CL-EMB 0.4.3 Message-ID: <20060219000913.GA4907@parsec.no-spoon.de> New release CL-EMB 0.4.3 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: - Faster file reading (fast slurping from ) - New template tag @insert for inserting (text) files. Example: CL-USER> (emb:register-emb "test13" "The file:
<% @insert textfile %>
") # CL-USER> (emb:execute-emb "test13" :env '(:textfile "/etc/gentoo-release")) "The file:
Gentoo Base System version 1.6.14
    
"