|
diff --git a/cgit.c b/cgit.c index 9305d0a..ed2be64 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -245,16 +245,18 @@ static void querystring_cb(const char *name, const char *value) |
245 | } else if (!strcmp(name, "s")){ |
245 | } else if (!strcmp(name, "s")){ |
246 | ctx.qry.sort = xstrdup(value); |
246 | ctx.qry.sort = xstrdup(value); |
247 | } else if (!strcmp(name, "showmsg")) { |
247 | } else if (!strcmp(name, "showmsg")) { |
248 | ctx.qry.showmsg = atoi(value); |
248 | ctx.qry.showmsg = atoi(value); |
249 | } else if (!strcmp(name, "period")) { |
249 | } else if (!strcmp(name, "period")) { |
250 | ctx.qry.period = xstrdup(value); |
250 | ctx.qry.period = xstrdup(value); |
251 | } else if (!strcmp(name, "ss")) { |
251 | } else if (!strcmp(name, "ss")) { |
252 | ctx.qry.ssdiff = atoi(value); |
252 | ctx.qry.ssdiff = atoi(value); |
| |
253 | } else if (!strcmp(name, "all")) { |
| |
254 | ctx.qry.show_all = atoi(value); |
253 | } |
255 | } |
254 | } |
256 | } |
255 | |
257 | |
256 | char *xstrdupn(const char *str) |
258 | char *xstrdupn(const char *str) |
257 | { |
259 | { |
258 | return (str ? xstrdup(str) : NULL); |
260 | return (str ? xstrdup(str) : NULL); |
259 | } |
261 | } |
260 | |
262 | |
|
|
diff --git a/cgit.h b/cgit.h index cd4af72..478aebb 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -140,16 +140,17 @@ struct cgit_query { |
140 | char *mimetype; |
140 | char *mimetype; |
141 | char *url; |
141 | char *url; |
142 | char *period; |
142 | char *period; |
143 | int ofs; |
143 | int ofs; |
144 | int nohead; |
144 | int nohead; |
145 | char *sort; |
145 | char *sort; |
146 | int showmsg; |
146 | int showmsg; |
147 | int ssdiff; |
147 | int ssdiff; |
| |
148 | int show_all; |
148 | }; |
149 | }; |
149 | |
150 | |
150 | struct cgit_config { |
151 | struct cgit_config { |
151 | char *agefile; |
152 | char *agefile; |
152 | char *cache_root; |
153 | char *cache_root; |
153 | char *clone_prefix; |
154 | char *clone_prefix; |
154 | char *css; |
155 | char *css; |
155 | char *favicon; |
156 | char *favicon; |
|
|
diff --git a/ui-atom.c b/ui-atom.c index 808b2d0..9f049ae 100644 --- a/ ui-atom.c+++ b/ ui-atom.c |
|
@@ -80,17 +80,19 @@ void add_entry(struct commit *commit, char *host) |
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); |
|