From 3496564b412ba761b0f59fbcb0b9e43f07f85bcf Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Tue, 21 Feb 2012 17:21:16 -0500 Subject: [PATCH] Expand age coloring from 2 days to 30 days (issue 57) --- src/com/gitblit/models/SearchResult.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/models/SearchResult.java b/src/com/gitblit/models/SearchResult.java index 4a03a70..2fa0db4 100644 --- a/src/com/gitblit/models/SearchResult.java +++ b/src/com/gitblit/models/SearchResult.java @@ -27,6 +27,8 @@ public String summary; public String repository; + + public String branch; public String id; @@ -39,6 +41,6 @@ @Override public String toString() { - return score + " : " + type.name() + " : " + repository + " : " + id; + return score + " : " + type.name() + " : " + repository + " : " + id + " (" + branch + ")"; } } \ No newline at end of file -- Gitblit v1.9.1