about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-22 15:40:24 +0000
committerJune McEnroe <june@causal.agency>2022-02-13 12:18:51 -0500
commitf92ba7ea854f826816cdbf94bc2afa4104669961 (patch)
tree829cc3def950d168672e9eb604c6297b6eb2acce
parentShow about path in page title (diff)
downloadcgit-pink-f92ba7ea854f826816cdbf94bc2afa4104669961.tar.gz
cgit-pink-f92ba7ea854f826816cdbf94bc2afa4104669961.zip
Remove default favicon
I do not like these things.
-rw-r--r--Makefile2
-rw-r--r--cgit.c2
-rw-r--r--cgitrc.5.txt2
-rw-r--r--favicon.icobin1078 -> 0 bytes
4 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d13c5bd..09fdd0e 100644
--- a/Makefile
+++ b/Makefile
@@ -88,7 +88,6 @@ install: all
 	$(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH)
 	$(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
 	$(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
 	$(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir)
 	$(COPYTREE) filters/* $(DESTDIR)$(filterdir)
@@ -111,7 +110,6 @@ uninstall:
 	rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
 	rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
 	rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
-	rm -f $(DESTDIR)$(CGIT_DATA_PATH)/favicon.ico
 
 uninstall-doc: uninstall-man uninstall-html uninstall-pdf
 
diff --git a/cgit.c b/cgit.c
index 40825cb..8a76c84 100644
--- a/cgit.c
+++ b/cgit.c
@@ -378,7 +378,7 @@ static void prepare_context(void)
 	ctx.cfg.commit_sort = 0;
 	ctx.cfg.css = "/cgit.css";
 	ctx.cfg.logo = "/cgit.png";
-	ctx.cfg.favicon = "/favicon.ico";
+	ctx.cfg.favicon = NULL;
 	ctx.cfg.local_time = 0;
 	ctx.cfg.enable_http_clone = 1;
 	ctx.cfg.enable_index_owner = 1;
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 33a6a8c..45db6c7 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -219,7 +219,7 @@ enable-tree-linenumbers::
 favicon::
 	Url used as link to a shortcut icon for cgit. It is suggested to use
 	the value "/favicon.ico" since certain browsers will ignore other
-	values. Default value: "/favicon.ico".
+	values. Default value: none.
 
 footer::
 	The content of the file specified with this option will be included
diff --git a/favicon.ico b/favicon.ico
deleted file mode 100644
index 56ff593..0000000
--- a/favicon.ico
+++ /dev/null
Binary files differ