diff options
| author | 2010-02-04 09:31:17 (JST) | |
|---|---|---|
| committer | 2010-03-23 07:41:38 (JST) | |
| commit | 65ced7c00907af7e8bd5d239a4fa854a84535520 (patch) | |
| tree | 81e9f408d8781477c89ddd34591d52c355100cb9 | |
| parent | ff3a3b4e2b7463bb8cb370bdda393e8b3526fcb9 (diff) | |
| download | cgit-65ced7c00907af7e8bd5d239a4fa854a84535520.zip cgit-65ced7c00907af7e8bd5d239a4fa854a84535520.tar.gz | |
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>
| -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
| @@ -250,6 +250,8 @@ static void querystring_cb(const char *name, const char *value) | |||
| 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 | ||
| @@ -145,6 +145,7 @@ struct cgit_query { | |||
| 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 { | 
| @@ -85,7 +85,9 @@ void cgit_print_atom(char *tip, char *path, int max_count) | |||
| 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) { | 
