]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-atom.c
ui-stats: if we're going to abuse void*, do it safely
[ps-cgit] / ui-atom.c
index e186299e57c17143f1b3251bd1303ec82a382a21..0bf2cf20c7af1834dfcd8b4eaa1dcff08471499b 100644 (file)
--- a/ui-atom.c
+++ b/ui-atom.c
@@ -17,15 +17,20 @@ static void add_entry(struct commit *commit, const char *host)
        char *hex;
        char *mail, *t, *t2;
        struct commitinfo *info;
+       struct date_mode mode = {
+               .type = DATE_STRFTIME,
+               .strftime_fmt = FMT_ATOMDATE,
+               .local = 0,
+       };
 
        info = cgit_parse_commit(commit);
-       hex = sha1_to_hex(commit->object.sha1);
+       hex = oid_to_hex(&commit->object.oid);
        html("<entry>\n");
        html("<title>");
        html_txt(info->subject);
        html("</title>\n");
        html("<updated>");
-       cgit_print_date(info->committer_date, FMT_ATOMDATE, 0);
+       html_txt(show_date(info->committer_date, 0, &mode));
        html("</updated>\n");
        html("<author>\n");
        if (info->author) {
@@ -50,7 +55,7 @@ static void add_entry(struct commit *commit, const char *host)
        }
        html("</author>\n");
        html("<published>");
-       cgit_print_date(info->author_date, FMT_ATOMDATE, 0);
+       html_txt(show_date(info->author_date, 0, &mode));
        html("</published>\n");
        if (host) {
                char *pageurl;