-rw-r--r-- | cgit.c | 2 | ||||
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | ui-atom.c | 4 |
3 files changed, 6 insertions, 1 deletions
@@ -251,4 +251,6 @@ static void querystring_cb(const char *name, const char *value) } else if (!strcmp(name, "ss")) { ctx.qry.ssdiff = atoi(value); + } else if (!strcmp(name, "all")) { + ctx.qry.show_all = atoi(value); } } @@ -146,4 +146,5 @@ struct cgit_query { int showmsg; int ssdiff; + int show_all; }; @@ -86,5 +86,7 @@ void cgit_print_atom(char *tip, char *path, int max_count) int argc = 2; - if (!tip) + if (ctx.qry.show_all) + argv[1] = "--all"; + else if (!tip) argv[1] = ctx.qry.head; |