From cda1b78ff7afb6c565a2efe503bb3643e1009dc9 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Sat, 25 Sep 2010 14:25:32 +0100 Subject: Append path and branch to atom feed title Currently all atom feeds for a repository get the same title but they are actually unique per path and per branch. Signed-off-by: Chris Mayo Signed-off-by: Lars Hjemli --- ui-atom.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ui-atom.c') diff --git a/ui-atom.c b/ui-atom.c index 9331f74..b218456 100644 --- a/ui-atom.c +++ b/ui-atom.c @@ -111,6 +111,14 @@ void cgit_print_atom(char *tip, char *path, int max_count) html("\n"); html(""); html_txt(ctx.repo->name); + if (path) { + html("/"); + html_txt(path); + } + if (tip && !ctx.qry.show_all) { + html(", branch "); + html_txt(tip); + } html("\n"); html(""); html_txt(ctx.repo->desc); -- cgit v1.2.1