about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-02-13 20:20:07 -0500
committerRory& <root@rory.gay>2026-02-06 14:09:56 +0100
commit9cf2b347ca090a9995038be471d90447ca9ec08e (patch)
tree1bc08664ae47025c6470ac0368c8798ba589faaf
parentRemove Lua support (diff)
downloadcgit-magenta-9cf2b347ca090a9995038be471d90447ca9ec08e.tar.xz
Update information for fork
-rw-r--r--AUTHORS2
-rw-r--r--README18
-rw-r--r--cgit.c2
-rw-r--r--ui-shared.c2
4 files changed, 13 insertions, 11 deletions
diff --git a/AUTHORS b/AUTHORS

index 031de33..256ea6b 100644 --- a/AUTHORS +++ b/AUTHORS
@@ -1,5 +1,5 @@ Maintainer: - Jason A. Donenfeld <Jason@zx2c4.com> + June McEnroe <june@causal.agency> Contributors: Jason A. Donenfeld <Jason@zx2c4.com> diff --git a/README b/README
index 371cf21..2094b87 100644 --- a/README +++ b/README
@@ -1,8 +1,9 @@ -cgit - CGI for Git -================== +cgit-pink - CGI for Git +======================= -This is an attempt to create a fast web interface for the Git SCM, using a -built-in cache to decrease server I/O pressure. +This is a fork of cgit, an attempt to create a fast web interface +for the Git SCM, using a built-in cache to decrease server I/O +pressure. Installation ------------ @@ -79,8 +80,9 @@ the HTTP headers `Modified` and `Expires`. Online presence --------------- -* The cgit homepage is hosted by cgit at <https://git.zx2c4.com/cgit/about/> +* The cgit-pink homepage is hosted by cgit at + <https://git.causal.agency/cgit-pink/about> -* Patches, bug reports, discussions and support should go to the cgit - mailing list: <cgit@lists.zx2c4.com>. To sign up, visit - <https://lists.zx2c4.com/mailman/listinfo/cgit> +* Patches, bug reports, discussions and support should go to the cgit-pink + mailing list: <list+cgit@causal.agency>. Archives are available at: + <https://causal.agency/list/cgit.html> diff --git a/cgit.c b/cgit.c
index ead540b..4a611ce 100644 --- a/cgit.c +++ b/cgit.c
@@ -971,7 +971,7 @@ static void cgit_parse_args(int argc, const char **argv) for (i = 1; i < argc; i++) { if (!strcmp(argv[i], "--version")) { - printf("CGit %s | https://git.zx2c4.com/cgit/\n\nCompiled in features:\n", CGIT_VERSION); + printf("CGit-pink %s | https://git.causal.agency/cgit-pink/\n\nCompiled in features:\n", CGIT_VERSION); #ifndef HAVE_LINUX_SENDFILE printf("[-] "); #else diff --git a/ui-shared.c b/ui-shared.c
index 32ac6d2..e9b29d2 100644 --- a/ui-shared.c +++ b/ui-shared.c
@@ -877,7 +877,7 @@ void cgit_print_docend(void) if (ctx.cfg.footer) html_include(ctx.cfg.footer); else { - htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> " + htmlf("<div class='footer'>generated by <a href='https://git.causal.agency/cgit-pink/about/'>cgit-pink %s</a> " "(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string); html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601))); html("</div>\n");