X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=datetime.lisp;h=51167a92444fae02ef97aab81809da28f4e6337c;hp=ac71fa472841a383ca62ea89a24aebe2062d0eec;hb=e96b017d2a09ffd9c9279cb4c2341c53f0581022;hpb=ffa469ca8554ae12f2a5e297e8a0880d784b1f12 diff --git a/datetime.lisp b/datetime.lisp index ac71fa4..51167a9 100644 --- a/datetime.lisp +++ b/datetime.lisp @@ -74,6 +74,35 @@ (defun posix-time-to-utime (time) (+ time +posix-epoch+)) +(defun utime-to-posix-time (utime) + (- utime +posix-epoch+)) + +;; Monthnames taken from net-telent-date to support lml2 + +(defvar *monthnames* + '((1 . "January") + (2 . "February") + (3 . "March") + (4 . "April") + (5 . "May") + (6 . "June") + (7 . "July") + (8 . "August") + (9 . "September") + (10 . "October") + (11 . "November") + (12 . "December"))) + +(defun monthname (stream arg colon-p at-p &optional width (mincol 0) (colinc 1) (minpad 0) (padchar #\Space)) + "Print the name of the month (1=January) corresponding to ARG on STREAM. This is intended for embedding in a FORMAT directive: WIDTH governs the number of characters of text printed, MINCOL, COLINC, MINPAD, PADCHAR work as for ~A" + (let ((monthstring (cdr (assoc arg *monthnames*)))) + (if (not monthstring) (return-from monthname nil)) + (let ((truncate (if width (min width (length monthstring)) nil))) + (format stream + (if at-p "~V,V,V,V@A" "~V,V,V,VA") + mincol colinc minpad padchar + (subseq monthstring 0 truncate))))) + ;;;; Daylight Saving Time calculations ;; Daylight Saving Time begins for most of the United States at 2 @@ -106,3 +135,4 @@ ;; 2007 April 1 October 28 March 25 October 28 ;; 2008 April 6 October 26 March 30 October 26 +