Switch commit summary and message
gitile/pages.scm
93 | 93 | (td (a (@ (href "/" ,repository-name | |
94 | 94 | "/commit/" ,(oid->string | |
95 | 95 | (commit-id commit)))) | |
96 | - | ,(commit-message commit))) | |
96 | + | ,(commit-summary commit))) | |
97 | 97 | (td ,(time->date-string (commit-time commit))))))) | |
98 | 98 | files)))))))) | |
99 | 99 | ||
… | |||
135 | 135 | (p (@ (class "message")) | |
136 | 136 | (a (@ (href "/" ,repository-name "/commit/" | |
137 | 137 | ,(oid->string (commit-id commit)))) | |
138 | - | ,(commit-message commit))) | |
138 | + | ,(commit-summary commit))) | |
139 | 139 | (p (span (@ (class "author")) | |
140 | 140 | ,(signature-name (commit-author commit))) | |
141 | 141 | (span (@ (class "date")) | |
… | |||
214 | 214 | (parent (commit-parent commit)) | |
215 | 215 | (diff (diff-tree-to-tree repo (commit-tree parent) (commit-tree commit)))) | |
216 | 216 | `(,(commit-infobox repository-name commit #:open? #t) | |
217 | - | (p (@ (class "commit-summary")) ,(commit-summary commit)) | |
217 | + | (p (@ (class "commit-summary")) ,(commit-message commit)) | |
218 | 218 | ,(diff-box diff)))) | |
219 | 219 | ||
220 | 220 | (define (diff-box diff) |