aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui-shared.c
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2018-06-23 18:25:53 +0800
committerChristian Hesse <mail@eworm.de>2021-03-14 23:18:22 +0100
commit72904bbd1a2f471d17f43c2c84d31a840e7e4ae7 (patch)
treea66035022779178ca850d3717dc286973107a5eb /ui-shared.c
parent21c36836b16c225d335aa562fd42c74bbd8b4f8a (diff)
downloadcgit-72904bbd1a2f471d17f43c2c84d31a840e7e4ae7.tar.gz
cgit-72904bbd1a2f471d17f43c2c84d31a840e7e4ae7.tar.zst
cgit-72904bbd1a2f471d17f43c2c84d31a840e7e4ae7.zip
config: add js
Just like the config allows setting css URL path, add a config for setting the js URL path Setting the js path to an empty string disables emitting the reference to it in the head section. Signed-off-by: Andy Green <andy@warmcat.com> Reviewed-by: John Keeping <john@keeping.me.uk> Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index f998912..e6def60 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -780,6 +780,15 @@ static int emit_css_link(struct string_list_item *s, void *arg)
return 0;
}
+static int emit_js_link(struct string_list_item *s, void *arg)
+{
+ html("<script type='text/javascript' src='");
+ html_attr(s->string);
+ html("'></script>\n");
+
+ return 0;
+}
+
void cgit_print_docstart(void)
{
char *host = cgit_hosturl();
@@ -805,6 +814,8 @@ void cgit_print_docstart(void)
else
emit_css_link(NULL, "/cgit.css");
+ for_each_string_list(&ctx.cfg.js, emit_js_link, NULL);
+
if (ctx.cfg.favicon) {
html("<link rel='shortcut icon' href='");
html_attr(ctx.cfg.favicon);