summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--cgit.c3
-rw-r--r--cgit.h1
-rw-r--r--ui-shared.c5
3 files changed, 8 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index 38b0ba5..bbde64b 100644
--- a/cgit.c
+++ b/cgit.c
@@ -21,2 +21,4 @@ void config_cb(const char *name, const char *value)
21 ctx.cfg.root_title = xstrdup(value); 21 ctx.cfg.root_title = xstrdup(value);
22 else if (!strcmp(name, "root-desc"))
23 ctx.cfg.root_desc = xstrdup(value);
22 else if (!strcmp(name, "css")) 24 else if (!strcmp(name, "css"))
@@ -161,2 +163,3 @@ static void prepare_context(struct cgit_context *ctx)
161 ctx->cfg.root_title = "Git repository browser"; 163 ctx->cfg.root_title = "Git repository browser";
164 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
162 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 165 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
diff --git a/cgit.h b/cgit.h
index a3b6535..7761b6e 100644
--- a/cgit.h
+++ b/cgit.h
@@ -134,2 +134,3 @@ struct cgit_config {
134 char *root_title; 134 char *root_title;
135 char *root_desc;
135 char *script_name; 136 char *script_name;
diff --git a/ui-shared.c b/ui-shared.c
index 8a804c2..83758f7 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -512,3 +512,6 @@ void cgit_print_pageheader(struct cgit_context *ctx)
512 html(">"); 512 html(">");
513 html_txt("a fast webinterface for the git dscm"); 513 if (ctx->cfg.root_desc)
514 html_txt(ctx->cfg.root_desc);
515 else if (ctx->cfg.index_info)
516 html_include(ctx->cfg.index_info);
514 } 517 }