aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--cgit.c2
-rw-r--r--cgit.h1
-rw-r--r--cgit.js7
-rw-r--r--cgitrc.5.txt5
-rw-r--r--ui-shared.c17
6 files changed, 0 insertions, 33 deletions
diff --git a/Makefile b/Makefile
index ad825be..cd7639c 100644
--- a/Makefile
+++ b/Makefile
@@ -87,7 +87,6 @@ install: all
$(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
$(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH)
$(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
- $(INSTALL) -m 0644 cgit.js $(DESTDIR)$(CGIT_DATA_PATH)/cgit.js
$(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
$(INSTALL) -m 0644 favicon.ico $(DESTDIR)$(CGIT_DATA_PATH)/favicon.ico
$(INSTALL) -m 0644 robots.txt $(DESTDIR)$(CGIT_DATA_PATH)/robots.txt
diff --git a/cgit.c b/cgit.c
index 57d7097..75d9926 100644
--- a/cgit.c
+++ b/cgit.c
@@ -143,8 +143,6 @@ static void config_cb(const char *name, const char *value)
ctx.cfg.root_readme = xstrdup(value);
else if (!strcmp(name, "css"))
string_list_append(&ctx.cfg.css, xstrdup(value));
- else if (!strcmp(name, "js"))
- string_list_append(&ctx.cfg.js, xstrdup(value));
else if (!strcmp(name, "favicon"))
ctx.cfg.favicon = xstrdup(value);
else if (!strcmp(name, "footer"))
diff --git a/cgit.h b/cgit.h
index a0cf5e9..1d88396 100644
--- a/cgit.h
+++ b/cgit.h
@@ -264,7 +264,6 @@ struct cgit_config {
int branch_sort;
int commit_sort;
struct string_list mimetypes;
- struct string_list js;
struct cgit_filter *about_filter;
struct cgit_filter *commit_filter;
struct cgit_filter *source_filter;
diff --git a/cgit.js b/cgit.js
deleted file mode 100644
index b35e0bc..0000000
--- a/cgit.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/* cgit.js: javacript functions for cgit
- *
- * Copyright (C) 2006-2018 cgit Development Team <cgit@lists.zx2c4.com>
- *
- * Licensed under GNU General Public License v2
- * (see COPYING for full license text)
- */
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 6f3e952..45288bc 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -239,11 +239,6 @@ include::
Name of a configfile to include before the rest of the current config-
file is parsed. Default value: none. See also: "MACRO EXPANSION".
-js::
- Url which specifies the javascript script document to include in all cgit
- pages. Default value: "/cgit.js". Setting this to an empty string will
- disable generation of the link to this file in the head section.
-
local-time::
Flag which, if set to "1", makes cgit print commit and tag times in the
servers timezone. Default value: "0".
diff --git a/ui-shared.c b/ui-shared.c
index c50b3e6..7c7a537 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -780,18 +780,6 @@ 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='");
- if (s)
- html_attr(s->string);
- else
- html_attr((const char *)arg);
- html("'></script>\n");
-
- return 0;
-}
-
void cgit_print_docstart(void)
{
char *host = cgit_hosturl();
@@ -817,11 +805,6 @@ void cgit_print_docstart(void)
else
emit_css_link(NULL, "/cgit.css");
- if (ctx.cfg.js.items)
- for_each_string_list(&ctx.cfg.js, emit_js_link, NULL);
- else
- emit_js_link(NULL, "/cgit.js");
-
if (ctx.cfg.favicon) {
html("<link rel='shortcut icon' href='");
html_attr(ctx.cfg.favicon);