|
diff --git a/ui-atom.c b/ui-atom.c index 808b2d0..9f049ae 100644 --- a/ ui-atom.c+++ b/ ui-atom.c |
|
@@ -72,33 +72,35 @@ void add_entry(struct commit *commit, char *host) |
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 | |
80 | void cgit_print_atom(char *tip, char *path, int max_count) |
80 | void 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 (!tip) |
88 | if (ctx.qry.show_all) |
| |
89 | argv[1] = "--all"; |
| |
90 | else if (!tip) |
89 | argv[1] = ctx.qry.head; |
91 | argv[1] = ctx.qry.head; |
90 | |
92 | |
91 | if (path) { |
93 | if (path) { |
92 | argv[argc++] = "--"; |
94 | argv[argc++] = "--"; |
93 | argv[argc++] = path; |
95 | argv[argc++] = path; |
94 | } |
96 | } |
95 | |
97 | |
96 | init_revisions(&rev, NULL); |
98 | init_revisions(&rev, NULL); |
97 | rev.abbrev = DEFAULT_ABBREV; |
99 | rev.abbrev = DEFAULT_ABBREV; |
98 | rev.commit_format = CMIT_FMT_DEFAULT; |
100 | rev.commit_format = CMIT_FMT_DEFAULT; |
99 | rev.verbose_header = 1; |
101 | rev.verbose_header = 1; |
100 | rev.show_root_diff = 0; |
102 | rev.show_root_diff = 0; |
101 | rev.max_count = max_count; |
103 | rev.max_count = max_count; |
102 | setup_revisions(argc, argv, &rev, NULL); |
104 | setup_revisions(argc, argv, &rev, NULL); |
103 | prepare_revision_walk(&rev); |
105 | prepare_revision_walk(&rev); |
104 | |
106 | |
|