all repos — cgit @ cda1b78ff7afb6c565a2efe503bb3643e1009dc9

a hyperfast web frontend for git written in c

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 <aklhfex@gmail.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Sat, 25 Sep 2010 14:25:32 +0100
commit

cda1b78ff7afb6c565a2efe503bb3643e1009dc9

parent

eca95229acdc3c7c27fdcc1319f5c96da9e3b538

1 files changed, 8 insertions(+), 0 deletions(-)

jump to
M ui-atom.cui-atom.c

@@ -111,6 +111,14 @@ cgit_print_http_headers(&ctx);

html("<feed xmlns='http://www.w3.org/2005/Atom'>\n"); html("<title>"); html_txt(ctx.repo->name); + if (path) { + html("/"); + html_txt(path); + } + if (tip && !ctx.qry.show_all) { + html(", branch "); + html_txt(tip); + } html("</title>\n"); html("<subtitle>"); html_txt(ctx.repo->desc);