Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/ui-atom.c b/ui-atom.c index b218456..c14392e 100644 --- a/ ui-atom.c+++ b/ ui-atom.c |
|
@@ -53,25 +53,25 @@ void add_entry(struct commit *commit, char *host) |
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'>"); |
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 | } |
|