From 5bbe8e2482d159a9f2b95af9a44960bed54c4f72 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 22 Sep 2021 15:40:24 +0000 Subject: Remove default favicon I do not like these things. --- Makefile | 2 -- cgit.c | 2 +- cgitrc.5.txt | 2 +- favicon.ico | Bin 1078 -> 0 bytes 4 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 favicon.ico diff --git a/Makefile b/Makefile index 649e474..c2546fa 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,6 @@ install: all $(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 $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir) $(COPYTREE) filters/* $(DESTDIR)$(filterdir) @@ -112,7 +111,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 b8e64b7..413ac4c 100644 --- a/cgit.c +++ b/cgit.c @@ -383,7 +383,7 @@ static void prepare_context(void) ctx.cfg.branch_sort = 0; ctx.cfg.commit_sort = 0; 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 6f3e952..24ed09f 100644 --- a/cgitrc.5.txt +++ b/cgitrc.5.txt @@ -220,7 +220,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 Binary files a/favicon.ico and /dev/null differ -- cgit 1.5.1