diff options
author | Jason A. Donenfeld | 2016-02-22 16:04:15 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2016-02-22 18:40:13 +0100 |
commit | 5f2664f13c90f083b827d8fafa6cfc01c0c4f513 (patch) | |
tree | 76fff0ba1df2d97bc6e814311ed6494724c47101 /cgit.c | |
parent | 75298209bf8386656b82f185e2901690ac5b671c (diff) | |
download | cgit-5f2664f13c90f083b827d8fafa6cfc01c0c4f513.tar.gz cgit-5f2664f13c90f083b827d8fafa6cfc01c0c4f513.tar.bz2 cgit-5f2664f13c90f083b827d8fafa6cfc01c0c4f513.zip |
ui-shared: add homepage to tabs
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -41,6 +41,8 @@ static void repo_config(struct cgit_repo *repo, const char *name, const char *va | |||
41 | repo->desc = xstrdup(value); | 41 | repo->desc = xstrdup(value); |
42 | else if (!strcmp(name, "owner")) | 42 | else if (!strcmp(name, "owner")) |
43 | repo->owner = xstrdup(value); | 43 | repo->owner = xstrdup(value); |
44 | else if (!strcmp(name, "homepage")) | ||
45 | repo->homepage = xstrdup(value); | ||
44 | else if (!strcmp(name, "defbranch")) | 46 | else if (!strcmp(name, "defbranch")) |
45 | repo->defbranch = xstrdup(value); | 47 | repo->defbranch = xstrdup(value); |
46 | else if (!strcmp(name, "snapshots")) | 48 | else if (!strcmp(name, "snapshots")) |
@@ -793,6 +795,8 @@ static void print_repo(FILE *f, struct cgit_repo *repo) | |||
793 | fprintf(f, "repo.module-link=%s\n", repo->module_link); | 795 | fprintf(f, "repo.module-link=%s\n", repo->module_link); |
794 | if (repo->section) | 796 | if (repo->section) |
795 | fprintf(f, "repo.section=%s\n", repo->section); | 797 | fprintf(f, "repo.section=%s\n", repo->section); |
798 | if (repo->homepage) | ||
799 | fprintf(f, "repo.homepage=%s\n", repo->homepage); | ||
796 | if (repo->clone_url) | 800 | if (repo->clone_url) |
797 | fprintf(f, "repo.clone-url=%s\n", repo->clone_url); | 801 | fprintf(f, "repo.clone-url=%s\n", repo->clone_url); |
798 | fprintf(f, "repo.enable-commit-graph=%d\n", | 802 | fprintf(f, "repo.enable-commit-graph=%d\n", |