all repos — cgit @ 30a378b571c9f826d37c913b32b363f54a8997f4

a hyperfast web frontend for git written in c

snapshot: support special value 'all' to enable all formats

Signed-off-by: Christian Hesse <mail@eworm.de>
Reviewed-by: John Keeping <john@keeping.me.uk>
Christian Hesse mail@eworm.de
Thu, 07 Jun 2018 22:01:50 +0200
commit

30a378b571c9f826d37c913b32b363f54a8997f4

parent

c712d5ac434b9ee8cb4e63a173a2538e1878637f

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M cgitrc.5.txtcgitrc.5.txt

@@ -429,6 +429,7 @@ snapshots::

Text which specifies the default set of snapshot formats that cgit generates links for. The value is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". + The special value "all" enables all snapshot formats. Default value: none. source-filter::
M shared.cshared.c

@@ -390,6 +390,9 @@ /* favor legacy setting */

if (atoi(str)) return 1; + if (strcmp(str, "all") == 0) + return INT_MAX; + string_list_split(&tokens, str, ' ', -1); string_list_remove_empty_items(&tokens, 0);