]> git.cameronkatri.com Git - cgit.git/commitdiff
Append path and branch to atom feed title
authorLars Hjemli <hjemli@gmail.com>
Sat, 25 Sep 2010 13:25:32 +0000 (14:25 +0100)
committerLars Hjemli <hjemli@gmail.com>
Sun, 7 Nov 2010 15:35:54 +0000 (16:35 +0100)
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>
ui-atom.c

index 9331f74fe87120ab92c39feeb6c7bf517b09445d..b218456b6e0f4ddc3b57a42f6e542bec31b4be2b 100644 (file)
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -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);