]> granicus.if.org Git - cgit/commitdiff
config: make empty js= omit script tag master
authorSamuel Lidén Borell <samuel@kodafritt.se>
Sat, 7 Jan 2023 09:32:07 +0000 (10:32 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 10 Jan 2023 16:52:54 +0000 (17:52 +0100)
According to the cgitrc man page, an empty js= value should cause the
script tag to be omitted. But instead, a script tag with an empty URL
is emitted. The same applies to css. So, skip emitting a tag if the
specified string is empty.

Signed-off-by: Samuel Lidén Borell <samuel@kodafritt.se>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
ui-shared.c

index 11aed19a80e882c6999eecb32250cd206fee5210..baea6f2c84e9f168df4e29983e9593b1b2cf888a 100644 (file)
@@ -770,6 +770,10 @@ static void print_rel_vcs_link(const char *url)
 
 static int emit_css_link(struct string_list_item *s, void *arg)
 {
+       /* Do not emit anything if css= is specified. */
+       if (s && *s->string == '\0')
+               return 0;
+
        html("<link rel='stylesheet' type='text/css' href='");
        if (s)
                html_attr(s->string);
@@ -782,6 +786,10 @@ static int emit_css_link(struct string_list_item *s, void *arg)
 
 static int emit_js_link(struct string_list_item *s, void *arg)
 {
+       /* Do not emit anything if js= is specified. */
+       if (s && *s->string == '\0')
+               return 0;
+
        html("<script type='text/javascript' src='");
        if (s)
                html_attr(s->string);