[elephant-cvs] CVS update: elephant/src/elephant.lisp

blee at common-lisp.net blee at common-lisp.net
Sun Aug 29 20:38:44 UTC 2004


Update of /project/elephant/cvsroot/elephant/src
In directory common-lisp.net:/tmp/cvs-serv7815/src

Modified Files:
	elephant.lisp 
Log Message:
new license, non-interned exports

Date: Sun Aug 29 22:38:43 2004
Author: blee

Index: elephant/src/elephant.lisp
diff -u elephant/src/elephant.lisp:1.5 elephant/src/elephant.lisp:1.6
--- elephant/src/elephant.lisp:1.5	Sun Aug 29 09:53:27 2004
+++ elephant/src/elephant.lisp	Sun Aug 29 22:38:43 2004
@@ -12,6 +12,10 @@
 ;;; Copyright (c) 2004 by Andrew Blumberg and Ben Lee
 ;;; <ablumberg at common-lisp.net> <blee at common-lisp.net>
 ;;;
+;;; This program is released under the following license
+;;; ("GPL").  For differenct licensing terms, contact the
+;;; copyright holders.
+;;;
 ;;; This program is free software; you can redistribute it
 ;;; and/or modify it under the terms of the GNU General
 ;;; Public License as published by the Free Software
@@ -39,22 +43,22 @@
 (defpackage elephant
   (:nicknames ele :ele)
   (:use common-lisp sleepycat)
-  (:shadow with-transaction)
-  (:export *store-controller* *current-transaction* *auto-commit*
-	   open-store close-store
-	   store-controller open-controller close-controller 
-	   with-open-controller controller-path controller-environment
-	   controller-db controller-root add-to-root get-from-root	   
-	   persistent persistent-object persistent-metaclass
-	   persistent-collection btree get-value remove-kv
-	   db-transaction-begin db-transaction-abort db-transaction-commit
-	   with-transaction
-	   db-env-set-lock-detect db-env-get-lock-detect
-	   db-transaction-id db-env-lock-id db-env-lock-id-free
-	   db-env-lock-get db-env-lock-put with-lock
-	   db-env-set-timeout db-env-get-timeout
-	   db-env-set-flags db-env-get-flags
-	   run-elephant-thread
+  (:shadow #:with-transaction)
+  (:export #:*store-controller* #:*current-transaction* #:*auto-commit*
+	   #:open-store #:close-store
+	   #:store-controller #:open-controller #:close-controller 
+	   #:with-open-controller #:controller-path #:controller-environment
+	   #:controller-db #:controller-root #:add-to-root #:get-from-root
+	   #:persistent #:persistent-object #:persistent-metaclass
+	   #:persistent-collection #:btree #:get-value #:remove-kv
+	   #:db-transaction-begin #:db-transaction-abort 
+	   #:db-transaction-commit #:with-transaction
+	   #:db-env-set-lock-detect #:db-env-get-lock-detect
+	   #:db-transaction-id #:db-env-lock-id #:db-env-lock-id-free
+	   #:db-env-lock-get #:db-env-lock-put #:with-lock
+	   #:db-env-set-timeout #:db-env-get-timeout
+	   #:db-env-set-flags #:db-env-get-flags
+	   #:run-elephant-thread
 	   )
   #+cmu  
   (:import-from :pcl





More information about the Elephant-cvs mailing list