From a172835de847276a772b8f980fb2866d0a715e30 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 24 Jan 2003 08:51:41 +0000 Subject: [PATCH] r3858: *** empty log message *** --- downloads.lisp | 30 +++++++++++++++--------------- stdsite.lisp | 4 ++-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/downloads.lisp b/downloads.lisp index affe2c6..4223820 100644 --- a/downloads.lisp +++ b/downloads.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: downloads.lisp,v 1.6 2002/10/31 18:52:23 kevin Exp $ +;;;; $Id: downloads.lisp,v 1.7 2003/01/24 08:51:41 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -53,28 +53,28 @@ (when (plusp (length basename)) (with-open-file (strm file :direction :input) (setq size (round (/ (file-length strm) 1024)))) - (lml-print "~A" *ftp-url* ftp-name basename) - (lml-print "") - (lml-print " (~A, ~:D KB)" modtime size) + (lml-format "~A" *ftp-url* ftp-name basename) + (lml-princ "") + (lml-format " (~A, ~:D KB)" modtime size) (when (probe-file sig-path) (setq *signed* t) - (lml-print " [Signature]" *ftp-url* ftp-name)) + (lml-format " [Signature]" *ftp-url* ftp-name)) (br)))) (defun display-header (name url) - (lml-print "

Download

") - (lml-print "
") - (lml-print "

Browse ~A FTP Site

" name) - (lml-print "~A" url url)) + (lml-princ "

Download

") + (lml-princ "
") + (lml-format "

Browse ~A FTP Site

" name) + (lml-format "~A" url url)) (defun display-footer () (when *signed* - (lml-print "

GPG Public Key

") - (lml-print "Use this key to verify file signtatures")) - (lml-print "
")) + (lml-princ "

GPG Public Key

") + (lml-princ "Use this key to verify file signtatures")) + (lml-princ "
")) (defun print-sect-title (title) - (lml-print "~A" *section-indent* title *section-indent*)) + (lml-format "~A" *section-indent* title *section-indent*)) (defun match-base-name? (name) (let ((len-base-name (length *base-name*))) @@ -102,9 +102,9 @@ (let ((files (filter-against-base (directory pat)))) (when files (print-sect-title title) - (lml-print "
") + (lml-princ "
") (list-files files) - (lml-print"
")))) + (lml-princ "
")))) (defun display-sections (sects) diff --git a/stdsite.lisp b/stdsite.lisp index d36c83e..a0e9984 100644 --- a/stdsite.lisp +++ b/stdsite.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: stdsite.lisp,v 1.2 2002/10/18 06:34:05 kevin Exp $ +;;;; $Id: stdsite.lisp,v 1.3 2003/01/24 08:51:41 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -42,7 +42,7 @@ :name (pathname-name file)))) (when (probe-file src-file) (div-c "lastmod" - (lml-print "Last modified: ~A" (date-string (file-write-date src-file)))))) + (lml-format "Last modified: ~A" (date-string (file-write-date src-file)))))) (lml-load "footer.lml_")) (values)) -- 2.34.1