summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2009-11-26 14:36:53 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2009-11-26 14:36:53 +0100
commitad442c66a7a1304b219e518289f9e0051d0d31c5 (patch)
treeadeba59647c529f27d188d48f89f032373da18f5
parent8041ba1dc7e6b1401444ff3c8b99854c94b209f3 (diff)
MAKE-NEW-REVISION: New function.
-rw-r--r--logikorr.lisp17
1 files changed, 15 insertions, 2 deletions
diff --git a/logikorr.lisp b/logikorr.lisp
index 5104369..ddf4fbd 100644
--- a/logikorr.lisp
+++ b/logikorr.lisp
@@ -30,6 +30,16 @@
(files-by-write-date (sort files #'> :key #'file-write-date)))
(setq *database* (first files-by-write-date))))
+(defun make-new-revision ()
+ (find-and-initialise-database)
+ (let* ((name (pathname-name *database*))
+ (number (parse-integer name))
+ (new-path (merge-pathnames (make-pathname :name (format nil "~D" (1+ number)))
+ *database*)))
+ (find-students)
+ (write-database-to-file new-path)
+ (setq *database* new-path)))
+
(defmacro with-authentication (() &body body)
`(call-with-authentication (lambda () ,@body)))
@@ -232,10 +242,13 @@ div.autocomplete ul li {
(defun write-database ()
(find-and-initialise-database)
+ (write-database-to-file *database*))
+
+(defun write-database-to-file (file)
(with-data-lock ()
(unless *students*
- (return-from write-database))
- (with-open-file (out *database* :external-format :utf-8 :direction :output :if-exists :new-version #+(or) :supersede)
+ (return-from write-database-to-file))
+ (with-open-file (out file :external-format :utf-8 :direction :output :if-exists :new-version #+(or) :supersede)
(dolist (student *students*)
(if (student-last-name student)
(format out "~&~A, ~A" (student-last-name student) (student-first-name student))