* riece-300.el (riece-handle-317-message): Format idle seconds in
authorueno <ueno>
Sun, 27 Feb 2005 01:52:22 +0000 (01:52 +0000)
committerueno <ueno>
Sun, 27 Feb 2005 01:52:22 +0000 (01:52 +0000)
human readable form.

lisp/ChangeLog
lisp/riece-300.el

index 10abc6c..fdbb7ff 100644 (file)
@@ -1,5 +1,8 @@
 2005-02-27  Daiki Ueno  <ueno@unixuser.org>
 
+       * riece-300.el (riece-handle-317-message): Format idle seconds in
+       human readable form.
+
        * riece-ctcp.el (riece-handle-ctcp-action-request): Prepend target.
        (riece-command-ctcp-action): Ditto.
 
index 0f3d717..52f7eba 100644 (file)
   (if (string-match
        (concat "^\\(" riece-user-regexp "\\) \\([0-9]+\\) ")
        string)
-      (let ((user (match-string 1 string))
-           (idle (match-string 2 string)))
+      (let* ((user (match-string 1 string))
+            (seconds (string-to-number (match-string 2 string)))
+            (units (list (cons (/ seconds 60 60 24) "days")
+                         (cons (mod (/ seconds 60 60) 24) "hours")
+                         (cons (mod (/ seconds 60) 60) "minutes")
+                         (cons (mod seconds 60) "seconds"))))
        (riece-insert-info
         (list riece-dialogue-buffer riece-others-buffer)
         (concat
          (riece-concat-server-name
-          (format "%s is %s seconds idle"
+          (format "%s is %s idle"
                   (riece-format-identity
                    (riece-make-identity user riece-server-name)
                    t)
-                  idle))
+                  (mapconcat #'identity
+                             (delq nil
+                                   (mapcar
+                                    (lambda (unit)
+                                      (if (/= (car unit) 0)
+                                          (format "%d %s"
+                                                  (car unit) (cdr unit))))
+                                    units))
+                             ", ")))
          "\n")))))
 
 (defun riece-handle-319-message (prefix number name string)