emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40157: closed ([PATCH] hydra: Display the IRC logs in reverse chrono


From: GNU bug Tracking System
Subject: bug#40157: closed ([PATCH] hydra: Display the IRC logs in reverse chronological order.)
Date: Sun, 22 Mar 2020 17:42:01 +0000

Your message dated Sun, 22 Mar 2020 13:41:30 -0400
with message-id <address@hidden>
and subject line Re: [PATCH] hydra: Display the IRC logs in reverse 
chronological order.
has caused the debbugs.gnu.org bug report #40157,
regarding [PATCH] hydra: Display the IRC logs in reverse chronological order.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
40157: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=40157
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] hydra: Display the IRC logs in reverse chronological order. Date: Fri, 20 Mar 2020 17:43:49 -0400
I think that people usually want to read the latest logs, which
currently requires a lot of scrolling.

* hydra/goggles.scm (index): Reverse the list of log files.
---
 hydra/goggles.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hydra/goggles.scm b/hydra/goggles.scm
index 169b3c3..884c8df 100644
--- a/hydra/goggles.scm
+++ b/hydra/goggles.scm
@@ -181,9 +181,9 @@ freenode." channel))
      (ul
       ,@(map (lambda (file)
                `(li (a (@ (href ,(string-append "/" channel "/" file))) 
,file)))
-             (or (scandir (string-append %log-root "/#" channel "/")
-                          (lambda (name)
-                           (not (member name '("." ".." "index.html")))))
+             (or (reverse (scandir (string-append %log-root "/#" channel "/")
+                                   (lambda (name)
+                                    (not (member name '("." ".." 
"index.html"))))))
                  '()))))))
 
 (define %controller
-- 
2.25.1




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] hydra: Display the IRC logs in reverse chronological order. Date: Sun, 22 Mar 2020 13:41:30 -0400
On Sun, Mar 22, 2020 at 12:43:43PM +0100, Ricardo Wurmus wrote:
> > I think that people usually want to read the latest logs, which
> > currently requires a lot of scrolling.
> >
> > * hydra/goggles.scm (index): Reverse the list of log files.
> 
> Looks good, thank you.  I’ve applied it.  We’ll have to wait for the
> next reconfiguration to see the effects on logs.guix.gnu.org.

Thanks!


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]