[clhp-cvs] CVS update: clhp/clhp.lisp clhp/clhp.asd clhp/TODO clhp/NEWS clhp/Makefile

Anthony Ventimiglia aventimiglia at common-lisp.net
Fri Nov 14 22:32:21 UTC 2003


Update of /project/clhp/cvsroot/clhp
In directory common-lisp.net:/tmp/cvs-serv31678

Modified Files:
	clhp.lisp clhp.asd TODO NEWS Makefile 
Log Message:
Changes for 0.2.1alpha release

Date: Fri Nov 14 17:32:20 2003
Author: aventimiglia

Index: clhp/clhp.lisp
diff -u clhp/clhp.lisp:1.21 clhp/clhp.lisp:1.22
--- clhp/clhp.lisp:1.21	Thu Nov 13 14:37:41 2003
+++ clhp/clhp.lisp	Fri Nov 14 17:32:10 2003
@@ -1,5 +1,5 @@
 (ext:file-comment
- "$Id: clhp.lisp,v 1.21 2003/11/13 19:37:41 aventimiglia Exp $")
+ "$Id: clhp.lisp,v 1.22 2003/11/14 22:32:10 aventimiglia Exp $")
 ;;
 ;; CLHP the Common Lisp Hypertext Preprocessor
 ;; (C) 2003 Anthony J Ventimiglia
@@ -28,8 +28,8 @@
 ;; by changing the NIL in the first part of the OR, a release number
 ;; will override the CVS keyword
 (defconstant *CLHP-VERSION*
-  #.(or nil				; Set this for releases
-	(let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 19:37:41 $"))
+  #.(or "0.2.1alpha"				; Set this for releases
+	(let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:32:10 $"))
 	       (date (subseq trimmed 0 (search " " trimmed))))
 	  (concatenate 'string
 		       (subseq date 0 4)


Index: clhp/clhp.asd
diff -u clhp/clhp.asd:1.4 clhp/clhp.asd:1.5
--- clhp/clhp.asd:1.4	Thu Nov 13 00:10:40 2003
+++ clhp/clhp.asd	Fri Nov 14 17:32:10 2003
@@ -1,4 +1,4 @@
-#+cmu (ext:file-comment "$Id: clhp.asd,v 1.4 2003/11/13 05:10:40 aventimiglia Exp $")
+#+cmu (ext:file-comment "$Id: clhp.asd,v 1.5 2003/11/14 22:32:10 aventimiglia Exp $")
 ;; 
 ;; CLHP the Common Lisp Hypertext Preprocessor
 ;; (C) 2003 Anthony J Ventimiglia
@@ -30,8 +30,8 @@
   :name "net.common-lisp.aventimiglia.clhp"
   :author "Anthony Ventimiglia <anthony at ventimiglia.org>"
   :maintainer "Anthony Ventimiglia <anthony at ventimiglia.org>"
-  :version  #.(or nil
-		  (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/13 05:10:40 $"))
+  :version  #.(or "0.2.1alpha"
+		  (let* ((trimmed (string-trim "$ Date:" "$Date: 2003/11/14 22:32:10 $"))
 			 (date (subseq trimmed 0 (search " " trimmed))))
 		    (concatenate 'string
 				 (subseq date 0 4)


Index: clhp/TODO
diff -u clhp/TODO:1.13 clhp/TODO:1.14
--- clhp/TODO:1.13	Wed Nov 12 23:57:44 2003
+++ clhp/TODO	Fri Nov 14 17:32:11 2003
@@ -1,4 +1,6 @@
-$Id: TODO,v 1.13 2003/11/13 04:57:44 aventimiglia Exp $ -*- outline -*-
+$Id: TODO,v 1.14 2003/11/14 22:32:11 aventimiglia Exp $ -*- outline -*-
+
+* Turn Header printing over to CLHP
 
 * Make a new installation method, more lisp based.
   part of this should do automatic versioning, or at least make


Index: clhp/NEWS
diff -u clhp/NEWS:1.4 clhp/NEWS:1.5
--- clhp/NEWS:1.4	Wed Nov 12 23:57:44 2003
+++ clhp/NEWS	Fri Nov 14 17:32:12 2003
@@ -1,4 +1,11 @@
-$Id: NEWS,v 1.4 2003/11/13 04:57:44 aventimiglia Exp $ -*- outline -*-
+$Id: NEWS,v 1.5 2003/11/14 22:32:12 aventimiglia Exp $ -*- outline -*-
+
+* Fri Nov 14 17:27:53 EST 2003 -- 0.2.1alpha release
+**  Fixed a Header problem 
+    In the last release CLHP was generating Headers improperly. Now
+    Apache generates and sends the headers, which means that you can't
+    control the headers from inside a CLHP program. This will be fixed
+    in a later version.
 
 * Wed Nov 12 23:52:02 EST 2003 -- 0.2.0alpha release
 **  mod_clhp 


Index: clhp/Makefile
diff -u clhp/Makefile:1.22 clhp/Makefile:1.23
--- clhp/Makefile:1.22	Thu Nov 13 00:10:40 2003
+++ clhp/Makefile	Fri Nov 14 17:32:13 2003
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.22 2003/11/13 05:10:40 aventimiglia Exp $
+# $Id: Makefile,v 1.23 2003/11/14 22:32:13 aventimiglia Exp $
 #
 # CLHP the Common Lisp Hypertext Preprocessor
 # (C) 2003 Anthony J Ventimiglia
@@ -84,11 +84,11 @@
 # makefile most likeley will not match the cvs version ID in
 # clhp.lisp, since they depend on their own file's cvs date keyword.
 
-CVSID=$(shell echo $Date: 2003/11/13 05:10:40 $ | \
+CVSID=$(shell echo $Date: 2003/11/14 22:32:13 $ | \
 	awk '{print $$2}'| sed s/\\///g )cvs
 
-VERSION=$(CVSID)
-#VERSION=0.2.0alpha
+#VERSION=$(CVSID)
+VERSION=0.2.1alpha
 TARROOT=clhp-$(VERSION)
 TARBALL=$(TARROOT).tar.gz
 





More information about the Clhp-cvs mailing list