diff options
| author | Aaron Griffin <[email protected]> | 2010-02-04 00:31:17 +0000 |
|---|---|---|
| committer | Lars Hjemli <[email protected]> | 2010-03-22 22:41:38 +0000 |
| commit | 65ced7c00907af7e8bd5d239a4fa854a84535520 (patch) | |
| tree | 81e9f408d8781477c89ddd34591d52c355100cb9 /cgit.c | |
| parent | ui-tree: add link to plain view for blobs in tree listing (diff) | |
| download | cgit-65ced7c00907af7e8bd5d239a4fa854a84535520.tar.gz cgit-65ced7c00907af7e8bd5d239a4fa854a84535520.zip | |
Add all=1 query param for atom feeds
Displays all items from all branches in one feed
Signed-off-by: Aaron Griffin <[email protected]>
Signed-off-by: Lars Hjemli <[email protected]>
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -250,6 +250,8 @@ static void querystring_cb(const char *name, const char *value) ctx.qry.period = xstrdup(value); } else if (!strcmp(name, "ss")) { ctx.qry.ssdiff = atoi(value); + } else if (!strcmp(name, "all")) { + ctx.qry.show_all = atoi(value); } } |
