diff options
author | June McEnroe | 2022-02-13 20:20:07 -0500 |
---|---|---|
committer | June McEnroe | 2022-02-13 21:10:50 -0500 |
commit | 76d9396e47ce00b029ba4497fd63aa507929fcd3 (patch) | |
tree | 6e077140300226bc02006291c71ac010a1f0eec5 | |
parent | Remove Lua support (diff) | |
download | cgit-76d9396e47ce00b029ba4497fd63aa507929fcd3.tar.gz cgit-76d9396e47ce00b029ba4497fd63aa507929fcd3.zip |
Update information for fork
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | README | 18 | ||||
-rw-r--r-- | cgit.c | 2 | ||||
-rw-r--r-- | ui-shared.c | 2 |
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 @@ | |||
1 | Maintainer: | 1 | Maintainer: |
2 | Jason A. Donenfeld <Jason@zx2c4.com> | 2 | June McEnroe <june@causal.agency> |
3 | 3 | ||
4 | Contributors: | 4 | Contributors: |
5 | Jason A. Donenfeld <Jason@zx2c4.com> | 5 | Jason A. Donenfeld <Jason@zx2c4.com> |
diff --git a/README b/README index 371cf21..2094b87 100644 --- a/README +++ b/README | |||
@@ -1,8 +1,9 @@ | |||
1 | cgit - CGI for Git | 1 | cgit-pink - CGI for Git |
2 | ================== | 2 | ======================= |
3 | 3 | ||
4 | This is an attempt to create a fast web interface for the Git SCM, using a | 4 | This is a fork of cgit, an attempt to create a fast web interface |
5 | built-in cache to decrease server I/O pressure. | 5 | for the Git SCM, using a built-in cache to decrease server I/O |
6 | pressure. | ||
6 | 7 | ||
7 | Installation | 8 | Installation |
8 | ------------ | 9 | ------------ |
@@ -79,8 +80,9 @@ the HTTP headers `Modified` and `Expires`. | |||
79 | Online presence | 80 | Online presence |
80 | --------------- | 81 | --------------- |
81 | 82 | ||
82 | * The cgit homepage is hosted by cgit at <https://git.zx2c4.com/cgit/about/> | 83 | * The cgit-pink homepage is hosted by cgit at |
84 | <https://git.causal.agency/cgit-pink/about> | ||
83 | 85 | ||
84 | * Patches, bug reports, discussions and support should go to the cgit | 86 | * Patches, bug reports, discussions and support should go to the cgit-pink |
85 | mailing list: <cgit@lists.zx2c4.com>. To sign up, visit | 87 | mailing list: <list+cgit@causal.agency>. Archives are available at: |
86 | <https://lists.zx2c4.com/mailman/listinfo/cgit> | 88 | <https://causal.agency/list/cgit.html> |
diff --git a/cgit.c b/cgit.c index f3fe4c7..d18938c 100644 --- a/cgit.c +++ b/cgit.c | |||
@@ -963,7 +963,7 @@ static void cgit_parse_args(int argc, const char **argv) | |||
963 | 963 | ||
964 | for (i = 1; i < argc; i++) { | 964 | for (i = 1; i < argc; i++) { |
965 | if (!strcmp(argv[i], "--version")) { | 965 | if (!strcmp(argv[i], "--version")) { |
966 | printf("CGit %s | https://git.zx2c4.com/cgit/\n\nCompiled in features:\n", CGIT_VERSION); | 966 | printf("CGit-pink %s | https://git.causal.agency/cgit-pink/\n\nCompiled in features:\n", CGIT_VERSION); |
967 | #ifndef HAVE_LINUX_SENDFILE | 967 | #ifndef HAVE_LINUX_SENDFILE |
968 | printf("[-] "); | 968 | printf("[-] "); |
969 | #else | 969 | #else |
diff --git a/ui-shared.c b/ui-shared.c index 225a363..72a1505 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -835,7 +835,7 @@ void cgit_print_docend(void) | |||
835 | if (ctx.cfg.footer) | 835 | if (ctx.cfg.footer) |
836 | html_include(ctx.cfg.footer); | 836 | html_include(ctx.cfg.footer); |
837 | else { | 837 | else { |
838 | htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> " | 838 | htmlf("<div class='footer'>generated by <a href='https://git.causal.agency/cgit-pink/about/'>cgit-pink %s</a> " |
839 | "(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string); | 839 | "(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string); |
840 | html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601))); | 840 | html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601))); |
841 | html("</div>\n"); | 841 | html("</div>\n"); |