From 844f8fd2131e10832efd05175930944c0ed9df63 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Fri, 1 Nov 2013 09:36:59 +0200 Subject: [PATCH] Show only first line of commit message on dashboard Signed-off-by: Dmitriy Zaporozhets --- app/helpers/events_helper.rb | 6 ++++++ app/views/events/_commit.html.haml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/helpers/events_helper.rb b/app/helpers/events_helper.rb index cd8761a6113..4aeb65752f0 100644 --- a/app/helpers/events_helper.rb +++ b/app/helpers/events_helper.rb @@ -127,4 +127,10 @@ module EventsHelper text = truncate(text, length: 150) sanitize(markdown(text), tags: %w(a img b pre p)) end + + def event_commit_title(message) + escape_once(truncate(message.split("\n").first, length: 70)) + rescue + "--broken encoding" + end end diff --git a/app/views/events/_commit.html.haml b/app/views/events/_commit.html.haml index 4d4b24009f4..135320da57e 100644 --- a/app/views/events/_commit.html.haml +++ b/app/views/events/_commit.html.haml @@ -2,4 +2,4 @@ .commit-row-title = link_to commit[:id][0..8], project_commit_path(project, commit[:id]), class: "commit_short_id", alt: ''   - = gfm escape_once(truncate(commit[:message], length: 70)) rescue "--broken encoding" + = gfm event_commit_title(commit[:message])