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>
This commit is contained in:
Lars Hjemli 2010-09-25 14:25:32 +01:00
父節點 eca95229ac
當前提交 cda1b78ff7
共有 1 個文件被更改,包括 8 次插入0 次删除

查看文件

@ -111,6 +111,14 @@ void cgit_print_atom(char *tip, char *path, int max_count)
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);