From sscholl at common-lisp.net Fri Nov 12 14:00:51 2004 From: sscholl at common-lisp.net (Stefan Scholl) Date: Fri, 12 Nov 2004 15:00:51 +0100 Subject: [cl-emb-devel] Gentoo Package Message-ID: <4194C213.50703@common-lisp.net> Matthew Kennedy made a Gentoo package for CL-EMB: http://www.gentoo-portage.com/dev-lisp/cl-emb Thanks to mkennedy! $ emerge cl-emb From sscholl at common-lisp.net Tue Nov 16 01:08:26 2004 From: sscholl at common-lisp.net (Stefan Scholl) Date: Tue, 16 Nov 2004 02:08:26 +0100 Subject: [cl-emb-devel] New release CL-EMB 0.2.1 Message-ID: <41995309.9030008@common-lisp.net> New release CL-EMB 0.2.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> (require :asdf-install) CL-USER> (asdf-install:install :cl-emb) Changes: - New functions CLEAR-EMB, CLEAR-EMB-ALL, and CLEAR-EMB-ALL-FILES clear registered emb code. By name, all or just all emb code from files. Maybe you want to start debugging a running project. Setting CL-EMB:*DEBUG* allows you to see the generated code with CL-EMB:PPRINT-EMB-FUNCTION for code that gets registered after that. If you clear the registered code with CL-EMB:CLEAR-EMB-ALL-FILES all files get registered again when called with CL-EMB:EXECUTE-EMB. (Or just touch all the files.)