X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base.lisp;h=5a51d4f31cb694ce04a98839510ef1248be17e6a;hb=8c4ce88a9dcd9ed4b4fa8f5032683ea6bffc0a28;hp=5944405fc11a78e0f37ec63403ca7bc51d1c7ff7;hpb=5151ac10e8472126199e05ff8e5ab382ecba3c68;p=lml.git diff --git a/base.lisp b/base.lisp index 5944405..5a51d4f 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.16 2003/06/06 21:59:30 kevin Exp $ +;;;; $Id: base.lisp,v 1.23 2003/06/20 08:35:22 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,7 +16,7 @@ ;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* -(in-package lml) +(in-package #:lml) (defun html4-prologue-string () "") @@ -25,7 +25,7 @@ "") (defun xhtml-prologue-string () - "") + "") (defvar *print-spaces* nil) (defvar *indent* 0) @@ -185,6 +185,10 @@ `(let ((,bound-keyargs ,(macroexpand `(bind-all-keyargs ,keyargs)))) ,(macroexpand `(with-no-endtag-keyargs ,tag ,bound-keyargs))))) +(defmacro jscript (&body body) + `(with script :language "JavaScript" :type "text/javascript" + ,@body)) + (defmacro xhtml-prologue () `(progn (lml-format "~A~%" (xml-prologue-string)) @@ -229,9 +233,11 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (defparameter *macro-list* - '(a div span h1 h2 h3 h4 h5 h6 i b p li ul ol table tbody td th tr body head - html title pre tt u dl dt dd kbd code form textarea)) - (export '(alink alink br hr img input meta link meta-key)) + '(a div span h1 h2 h3 h4 h5 h6 i b p li ul ol table tbody td th tr body + head html title pre tt u dl dt dd kbd code form textarea blockquote + var strong small samp big cite address dfn em q area del ins + object param caption col colgroup script noscript)) + (export '(jscript alink alink-c br hr img input meta link meta-key)) (export *macro-list*)) (loop for i in *macro-list*