List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH 1/1] snapshot: support special value 'all' to enable all formats
@ 2018-06-07 20:05 list
  2018-06-16 16:40 ` john
  0 siblings, 1 reply; 2+ messages in thread
From: list @ 2018-06-07 20:05 UTC (permalink / raw)


From: Christian Hesse <mail at eworm.de>

Signed-off-by: Christian Hesse <mail at eworm.de>
---
 cgitrc.5.txt | 1 +
 shared.c     | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index a9d3d0a..3bfacfa 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.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::
diff --git a/shared.c b/shared.c
index 21ac8f4..0a11e68 100644
--- a/shared.c
+++ b/shared.c
@@ -390,6 +390,9 @@ int cgit_parse_snapshots_mask(const char *str)
 	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);
 


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] snapshot: support special value 'all' to enable all formats
  2018-06-07 20:05 [PATCH 1/1] snapshot: support special value 'all' to enable all formats list
@ 2018-06-16 16:40 ` john
  0 siblings, 0 replies; 2+ messages in thread
From: john @ 2018-06-16 16:40 UTC (permalink / raw)


On Thu, Jun 07, 2018 at 10:05:50PM +0200, Christian Hesse wrote:
> From: Christian Hesse <mail at eworm.de>
> 
> Signed-off-by: Christian Hesse <mail at eworm.de>

Reviewed-by: John Keeping <john at keeping.me.uk>

> ---
>  cgitrc.5.txt | 1 +
>  shared.c     | 3 +++
>  2 files changed, 4 insertions(+)
> 
> diff --git a/cgitrc.5.txt b/cgitrc.5.txt
> index a9d3d0a..3bfacfa 100644
> --- a/cgitrc.5.txt
> +++ b/cgitrc.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::
> diff --git a/shared.c b/shared.c
> index 21ac8f4..0a11e68 100644
> --- a/shared.c
> +++ b/shared.c
> @@ -390,6 +390,9 @@ int cgit_parse_snapshots_mask(const char *str)
>  	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);
>  


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-06-16 16:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-07 20:05 [PATCH 1/1] snapshot: support special value 'all' to enable all formats list
2018-06-16 16:40 ` john

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).