Switch commit summary and message

Julien LepillerSun Mar 07 18:05:21+0100 2021

442f5f6

Switch commit summary and message

gitile/pages.scm

9393
                               (td (a (@ (href "/" ,repository-name
9494
                                               "/commit/" ,(oid->string
9595
                                                             (commit-id commit))))
96-
                                      ,(commit-message commit)))
96+
                                      ,(commit-summary commit)))
9797
                               (td ,(time->date-string (commit-time commit)))))))
9898
                     files))))))))
9999

135135
       (p (@ (class "message"))
136136
          (a (@ (href "/" ,repository-name "/commit/"
137137
                      ,(oid->string (commit-id commit))))
138-
             ,(commit-message commit)))
138+
             ,(commit-summary commit)))
139139
       (p (span (@ (class "author"))
140140
                ,(signature-name (commit-author commit)))
141141
          (span (@ (class "date"))

214214
         (parent (commit-parent commit))
215215
         (diff (diff-tree-to-tree repo (commit-tree parent) (commit-tree commit))))
216216
    `(,(commit-infobox repository-name commit #:open? #t)
217-
      (p (@ (class "commit-summary")) ,(commit-summary commit))
217+
      (p (@ (class "commit-summary")) ,(commit-message commit))
218218
      ,(diff-box diff))))
219219
220220
(define (diff-box diff)