X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base.lisp;h=4d7a5f4fda3462b1596177aca662187a3626c206;hb=c3bc141aaa4c8e0e0c4c39b09a4a1a5c1982fc3d;hp=c662fe54e7ca271e8d1598aa5babb0b429d34a7e;hpb=a36054fe8c5ffb7b053f769a4bb3b9090c462362;p=lml.git diff --git a/base.lisp b/base.lisp index c662fe5..4d7a5f4 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.19 2003/06/12 11:10:38 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -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)) @@ -231,9 +235,9 @@ (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 blockquote - var strong small samp big cite address dfn em q area del ins i + var strong small samp big cite address dfn em q area del ins object param caption col colgroup script noscript)) - (export '(alink alink br hr img input meta link meta-key)) + (export '(jscript alink alink-c br hr img input meta link meta-key)) (export *macro-list*)) (loop for i in *macro-list* @@ -249,7 +253,7 @@ (defmacro page (out-file &body body) `(with-open-file (*html-output* - (lml-file-name ,out-file :output) + (lml-file-name ',out-file :output) :direction :output :if-exists :supersede) (xhtml-prologue)