Add all=1 query param for atom feeds

Displays all items from all branches in one feed

Signed-off-by: Aaron Griffin <agriffin@datalogics.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Aaron Griffin
2010-02-03 18:31:17 -06:00
committed by Lars Hjemli
szülő ff3a3b4e2b
commit 65ced7c009
3 fájl változott, egészen pontosan 6 új sor hozzáadva és 1 régi sor törölve

Fájl megtekintése

@ -85,7 +85,9 @@ void cgit_print_atom(char *tip, char *path, int max_count)
struct rev_info rev;
int argc = 2;
if (!tip)
if (ctx.qry.show_all)
argv[1] = "--all";
else if (!tip)
argv[1] = ctx.qry.head;
if (path) {