From b94965e87929c6b4e42f9a2078dc0d910cc2637d Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 09 May 2012 07:59:00 -0400
Subject: [PATCH] Merge pull request #17 from peterloron/master

---
 src/com/gitblit/SyndicationServlet.java |   25 +++++++++++++++++--------
 1 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/src/com/gitblit/SyndicationServlet.java b/src/com/gitblit/SyndicationServlet.java
index 66415d1..f9ae4e6 100644
--- a/src/com/gitblit/SyndicationServlet.java
+++ b/src/com/gitblit/SyndicationServlet.java
@@ -28,9 +28,9 @@
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import com.gitblit.models.FeedEntryModel;
 import com.gitblit.models.RefModel;
 import com.gitblit.models.RepositoryModel;
-import com.gitblit.models.FeedEntryModel;
 import com.gitblit.utils.HttpUtils;
 import com.gitblit.utils.JGitUtils;
 import com.gitblit.utils.StringUtils;
@@ -189,18 +189,27 @@
 			entry.link = MessageFormat.format(urlPattern, gitblitUrl,
 					StringUtils.encodeURL(model.name), commit.getName());
 			entry.published = commit.getCommitterIdent().getWhen();
-			entry.contentType = "text/plain";
-			entry.content = commit.getFullMessage();
+			entry.contentType = "text/html";
+			String message = GitBlit.self().processCommitMessage(model.name,
+					commit.getFullMessage());
+			entry.content = message;
 			entry.repository = model.name;
-			entry.branch = objectId;
+			entry.branch = objectId;			
+			entry.tags = new ArrayList<String>();
+			
+			// add commit id and parent commit ids
+			entry.tags.add("commit:" + commit.getName());
+			for (RevCommit parent : commit.getParents()) {
+				entry.tags.add("parent:" + parent.getName());
+			}
+			
+			// add refs to tabs list
 			List<RefModel> refs = allRefs.get(commit.getId());
 			if (refs != null && refs.size() > 0) {
-				List<String> tags = new ArrayList<String>();
 				for (RefModel ref : refs) {
-					tags.add(ref.getName());
+					entry.tags.add("ref:" + ref.getName());
 				}
-				entry.tags = tags;
-			}
+			}			
 			entries.add(entry);
 		}
 		String feedLink;

--
Gitblit v1.9.1