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

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

[debbugs-tracker] bug#32869: closed ([PATCH cuirass] Provide link to bui


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32869: closed ([PATCH cuirass] Provide link to build log in build table row.)
Date: Sat, 29 Sep 2018 11:38:03 +0000

Your message dated Sat, 29 Sep 2018 13:37:28 +0200
with message-id <address@hidden>
and subject line Re: [bug#32869] [PATCH cuirass] Provide link to build log in 
build table row.
has caused the debbugs.gnu.org bug report #32869,
regarding [PATCH cuirass] Provide link to build log in build table row.
to be marked as done.

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


-- 
32869: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32869
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH cuirass] Provide link to build log in build table row. Date: Sat, 29 Sep 2018 00:18:31 +0200
* src/cuirass/templates.scm (build-eval-table): Provide link to build log.
---
 src/cuirass/templates.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
index 7ee579c..9a7bf45 100644
--- a/src/cuirass/templates.scm
+++ b/src/cuirass/templates.scm
@@ -189,7 +189,8 @@
                           ""))))
       (th (@ (scope "row")),(assq-ref build #:id))
       (td ,(assq-ref build #:jobset))
-      (td ,(strftime "%c" (localtime (assq-ref build #:stoptime))))
+      (td (a (@ href "/build/" ,(assq-ref build #:id) "/log/raw")
+             ,(strftime "%c" (localtime (assq-ref build #:stoptime)))))
       (td ,(assq-ref build #:job))
       (td ,(assq-ref build #:nixname))
       (td ,(assq-ref build #:system))))



--- End Message ---
--- Begin Message --- Subject: Re: [bug#32869] [PATCH cuirass] Provide link to build log in build table row. Date: Sat, 29 Sep 2018 13:37:28 +0200 User-agent: mu4e 1.0; emacs 26.1
Hi Danny,

Thank you for this patch!  But it doesn't work because 'href' isn't an
attribute.  But don't worry about it: Tatiana already did a patch that
contains this change, I'll try to push it soon.

Cheers,
Clément

Danny Milosavljevic <address@hidden> writes:

> * src/cuirass/templates.scm (build-eval-table): Provide link to build log.
> ---
>  src/cuirass/templates.scm | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
> index 7ee579c..9a7bf45 100644
> --- a/src/cuirass/templates.scm
> +++ b/src/cuirass/templates.scm
> @@ -189,7 +189,8 @@
>                            ""))))
>        (th (@ (scope "row")),(assq-ref build #:id))
>        (td ,(assq-ref build #:jobset))
> -      (td ,(strftime "%c" (localtime (assq-ref build #:stoptime))))
> +      (td (a (@ href "/build/" ,(assq-ref build #:id) "/log/raw")
> +             ,(strftime "%c" (localtime (assq-ref build #:stoptime)))))
>        (td ,(assq-ref build #:job))
>        (td ,(assq-ref build #:nixname))
>        (td ,(assq-ref build #:system))))



--- End Message ---

reply via email to

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