summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2010-09-19 18:58:15 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-09-19 18:58:15 (UTC)
commit9043b46f85eb43c918a172663af34c084587bd1a (patch) (unidiff)
tree6aa0d9c7527f187e89f933febfb679016d9e6519
parenta9d6e6e695da6c6ed7f4bb32630ab2f3d9314806 (diff)
parentaaa3f7854232726d5530f66b9459e036bbba15cb (diff)
downloadcgit-9043b46f85eb43c918a172663af34c084587bd1a.zip
cgit-9043b46f85eb43c918a172663af34c084587bd1a.tar.gz
cgit-9043b46f85eb43c918a172663af34c084587bd1a.tar.bz2
Merge branch 'stable'
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-atom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-atom.c b/ui-atom.c
index 9f049ae..5c854c7 100644
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -21,13 +21,13 @@ void add_entry(struct commit *commit, char *host)
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->author_date, FMT_ATOMDATE, ctx.cfg.local_time); 27 cgit_print_date(info->author_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");
@@ -46,13 +46,13 @@ void add_entry(struct commit *commit, char *host)
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, ctx.cfg.local_time); 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));