Unidiff1 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 |
|
@@ -19,17 +19,17 @@ void add_entry(struct commit *commit, char *host) |
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->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"); |
34 | } |
34 | } |
35 | if (info->author_email && !ctx.cfg.noplainemail) { |
35 | if (info->author_email && !ctx.cfg.noplainemail) { |
@@ -44,17 +44,17 @@ void add_entry(struct commit *commit, char *host) |
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, 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)); |
59 | if (ctx.cfg.virtual_root) |
59 | if (ctx.cfg.virtual_root) |
60 | delim = '?'; |
60 | delim = '?'; |
|