summaryrefslogtreecommitdiff
path: root/ui-atom.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2010-09-25 14:25:32 +0100
committerLars Hjemli <hjemli@gmail.com>2010-11-07 16:35:54 +0100
commitcda1b78ff7afb6c565a2efe503bb3643e1009dc9 (patch)
tree1eee2217375e9d4b083ff13aada3816fddcd8617 /ui-atom.c
parenteca95229acdc3c7c27fdcc1319f5c96da9e3b538 (diff)
downloadcgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.tar.gz
cgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.tar.bz2
cgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.zip
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>
Diffstat (limited to 'ui-atom.c')
-rw-r--r--ui-atom.c8
1 files changed, 8 insertions, 0 deletions
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("<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);
a>René 'Necoro' Neumann1-4/+38 2020-04-19Improved IMAPRené 'Necoro' Neumann1-3/+88 2020-04-19Started IMAP connectionRené 'Necoro' Neumann4-0/+152 2020-04-19Use our own logger for debug for convenience sakeRené 'Necoro' Neumann1-2/+3 2020-04-19Fix debug logging m(René 'Necoro' Neumann1-2/+2 2020-04-19Rename util.go to log.go. Add verbose modeRené 'Necoro' Neumann4-24/+54 2020-04-19Clean go.modRené 'Necoro' Neumann2-3/+0 2020-04-19Do not print the parsedCfg anymoreRené 'Necoro' Neumann1-1/+1 2020-04-19Increase go-version to 1.14René 'Necoro' Neumann1-2/+2 2020-04-19CI: go vetRené 'Necoro' Neumann1-0/+3 2020-04-19Fetching and parsing the feedsRené 'Necoro' Neumann5-4/+113 2020-04-19Ignore all config*.ymlRené 'Necoro' Neumann1-1/+1