summaryrefslogtreecommitdiffabout
path: root/ui-atom.c
authorLars Hjemli <hjemli@gmail.com>2010-09-25 13:25:32 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-11-07 15:35:54 (UTC)
commitcda1b78ff7afb6c565a2efe503bb3643e1009dc9 (patch) (unidiff)
tree1eee2217375e9d4b083ff13aada3816fddcd8617 /ui-atom.c
parenteca95229acdc3c7c27fdcc1319f5c96da9e3b538 (diff)
downloadcgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.zip
cgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.tar.gz
cgit-cda1b78ff7afb6c565a2efe503bb3643e1009dc9.tar.bz2
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') (more/less context) (show whitespace changes)
-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
@@ -18,116 +18,124 @@ void add_entry(struct commit *commit, char *host)
18 struct commitinfo *info; 18 struct commitinfo *info;
19 19
20 info = cgit_parse_commit(commit); 20 info = cgit_parse_commit(commit);
21 hex = sha1_to_hex(commit->object.sha1); 21 hex = sha1_to_hex(commit->object.sha1);
22 html("<entry>\n"); 22 html("<entry>\n");
23 html("<title>"); 23 html("<title>");
24 html_txt(info->subject); 24 html_txt(info->subject);
25 html("</title>\n"); 25 html("</title>\n");
26 html("<updated>"); 26 html("<updated>");
27 cgit_print_date(info->committer_date, FMT_ATOMDATE, 0); 27 cgit_print_date(info->committer_date, FMT_ATOMDATE, 0);
28 html("</updated>\n"); 28 html("</updated>\n");
29 html("<author>\n"); 29 html("<author>\n");
30 if (info->author) { 30 if (info->author) {
31 html("<name>"); 31 html("<name>");
32 html_txt(info->author); 32 html_txt(info->author);
33 html("</name>\n"); 33 html("</name>\n");
34 } 34 }
35 if (info->author_email && !ctx.cfg.noplainemail) { 35 if (info->author_email && !ctx.cfg.noplainemail) {
36 mail = xstrdup(info->author_email); 36 mail = xstrdup(info->author_email);
37 t = strchr(mail, '<'); 37 t = strchr(mail, '<');
38 if (t) 38 if (t)
39 t++; 39 t++;
40 else 40 else
41 t = mail; 41 t = mail;
42 t2 = strchr(t, '>'); 42 t2 = strchr(t, '>');
43 if (t2) 43 if (t2)
44 *t2 = '\0'; 44 *t2 = '\0';
45 html("<email>"); 45 html("<email>");
46 html_txt(t); 46 html_txt(t);
47 html("</email>\n"); 47 html("</email>\n");
48 free(mail); 48 free(mail);
49 } 49 }
50 html("</author>\n"); 50 html("</author>\n");
51 html("<published>"); 51 html("<published>");
52 cgit_print_date(info->author_date, FMT_ATOMDATE, 0); 52 cgit_print_date(info->author_date, FMT_ATOMDATE, 0);
53 html("</published>\n"); 53 html("</published>\n");
54 if (host) { 54 if (host) {
55 html("<link rel='alternate' type='text/html' href='"); 55 html("<link rel='alternate' type='text/html' href='");
56 html(cgit_httpscheme()); 56 html(cgit_httpscheme());
57 html_attr(host); 57 html_attr(host);
58 html_attr(cgit_pageurl(ctx.repo->url, "commit", NULL)); 58 html_attr(cgit_pageurl(ctx.repo->url, "commit", NULL));
59 if (ctx.cfg.virtual_root) 59 if (ctx.cfg.virtual_root)
60 delim = '?'; 60 delim = '?';
61 htmlf("%cid=%s", delim, hex); 61 htmlf("%cid=%s", delim, hex);
62 html("'/>\n"); 62 html("'/>\n");
63 } 63 }
64 htmlf("<id>%s</id>\n", hex); 64 htmlf("<id>%s</id>\n", hex);
65 html("<content type='text'>\n"); 65 html("<content type='text'>\n");
66 html_txt(info->msg); 66 html_txt(info->msg);
67 html("</content>\n"); 67 html("</content>\n");
68 html("<content type='xhtml'>\n"); 68 html("<content type='xhtml'>\n");
69 html("<div xmlns='http://www.w3.org/1999/xhtml'>\n"); 69 html("<div xmlns='http://www.w3.org/1999/xhtml'>\n");
70 html("<pre>\n"); 70 html("<pre>\n");
71 html_txt(info->msg); 71 html_txt(info->msg);
72 html("</pre>\n"); 72 html("</pre>\n");
73 html("</div>\n"); 73 html("</div>\n");
74 html("</content>\n"); 74 html("</content>\n");
75 html("</entry>\n"); 75 html("</entry>\n");
76 cgit_free_commitinfo(info); 76 cgit_free_commitinfo(info);
77} 77}
78 78
79 79
80void cgit_print_atom(char *tip, char *path, int max_count) 80void cgit_print_atom(char *tip, char *path, int max_count)
81{ 81{
82 char *host; 82 char *host;
83 const char *argv[] = {NULL, tip, NULL, NULL, NULL}; 83 const char *argv[] = {NULL, tip, NULL, NULL, NULL};
84 struct commit *commit; 84 struct commit *commit;
85 struct rev_info rev; 85 struct rev_info rev;
86 int argc = 2; 86 int argc = 2;
87 87
88 if (ctx.qry.show_all) 88 if (ctx.qry.show_all)
89 argv[1] = "--all"; 89 argv[1] = "--all";
90 else if (!tip) 90 else if (!tip)
91 argv[1] = ctx.qry.head; 91 argv[1] = ctx.qry.head;
92 92
93 if (path) { 93 if (path) {
94 argv[argc++] = "--"; 94 argv[argc++] = "--";
95 argv[argc++] = path; 95 argv[argc++] = path;
96 } 96 }
97 97
98 init_revisions(&rev, NULL); 98 init_revisions(&rev, NULL);
99 rev.abbrev = DEFAULT_ABBREV; 99 rev.abbrev = DEFAULT_ABBREV;
100 rev.commit_format = CMIT_FMT_DEFAULT; 100 rev.commit_format = CMIT_FMT_DEFAULT;
101 rev.verbose_header = 1; 101 rev.verbose_header = 1;
102 rev.show_root_diff = 0; 102 rev.show_root_diff = 0;
103 rev.max_count = max_count; 103 rev.max_count = max_count;
104 setup_revisions(argc, argv, &rev, NULL); 104 setup_revisions(argc, argv, &rev, NULL);
105 prepare_revision_walk(&rev); 105 prepare_revision_walk(&rev);
106 106
107 host = cgit_hosturl(); 107 host = cgit_hosturl();
108 ctx.page.mimetype = "text/xml"; 108 ctx.page.mimetype = "text/xml";
109 ctx.page.charset = "utf-8"; 109 ctx.page.charset = "utf-8";
110 cgit_print_http_headers(&ctx); 110 cgit_print_http_headers(&ctx);
111 html("<feed xmlns='http://www.w3.org/2005/Atom'>\n"); 111 html("<feed xmlns='http://www.w3.org/2005/Atom'>\n");
112 html("<title>"); 112 html("<title>");
113 html_txt(ctx.repo->name); 113 html_txt(ctx.repo->name);
114 if (path) {
115 html("/");
116 html_txt(path);
117 }
118 if (tip && !ctx.qry.show_all) {
119 html(", branch ");
120 html_txt(tip);
121 }
114 html("</title>\n"); 122 html("</title>\n");
115 html("<subtitle>"); 123 html("<subtitle>");
116 html_txt(ctx.repo->desc); 124 html_txt(ctx.repo->desc);
117 html("</subtitle>\n"); 125 html("</subtitle>\n");
118 if (host) { 126 if (host) {
119 html("<link rel='alternate' type='text/html' href='"); 127 html("<link rel='alternate' type='text/html' href='");
120 html(cgit_httpscheme()); 128 html(cgit_httpscheme());
121 html_attr(host); 129 html_attr(host);
122 html_attr(cgit_repourl(ctx.repo->url)); 130 html_attr(cgit_repourl(ctx.repo->url));
123 html("'/>\n"); 131 html("'/>\n");
124 } 132 }
125 while ((commit = get_revision(&rev)) != NULL) { 133 while ((commit = get_revision(&rev)) != NULL) {
126 add_entry(commit, host); 134 add_entry(commit, host);
127 free(commit->buffer); 135 free(commit->buffer);
128 commit->buffer = NULL; 136 commit->buffer = NULL;
129 free_commit_list(commit->parents); 137 free_commit_list(commit->parents);
130 commit->parents = NULL; 138 commit->parents = NULL;
131 } 139 }
132 html("</feed>\n"); 140 html("</feed>\n");
133} 141}