cgit

commit 10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7

Author: Lars Hjemli <hjemli@gmail.com>

Add config param 'index-info'

This parameter will be used to include a html file in the upcoming sidebar
on the index page.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 cgit.h | 1 +
 shared.c | 3 +++


diff --git a/cgit.h b/cgit.h
index dd83f70ba111db6f085f0f85b5c48101b4cb6103..b8af9706e93ef1a2eafa6e245260e2e29f89c961 100644
--- a/cgit.h
+++ b/cgit.h
@@ -124,6 +124,7 @@ extern char *cgit_root_title;
 extern char *cgit_css;
 extern char *cgit_logo;
 extern char *cgit_index_header;
+extern char *cgit_index_info;
 extern char *cgit_logo_link;
 extern char *cgit_module_link;
 extern char *cgit_agefile;




diff --git a/shared.c b/shared.c
index 4fab1c93bef64a847c98b42951ebc8a25b1cf1a2..50fe8e1343437380b035aa98cc120c2b8b9bc2da 100644
--- a/shared.c
+++ b/shared.c
@@ -18,6 +18,7 @@ char *cgit_root_title   = "Git repository browser";
 char *cgit_css          = "/cgit.css";
 char *cgit_logo         = "/git-logo.png";
 char *cgit_index_header = NULL;
+char *cgit_index_info   = NULL;
 char *cgit_logo_link    = "http://www.kernel.org/pub/software/scm/git/docs/";
 char *cgit_module_link  = "./?repo=%s&page=commit&id=%s";
 char *cgit_agefile      = "info/web/last-modified";
@@ -150,6 +151,8 @@ 	else if (!strcmp(name, "logo"))
 		cgit_logo = xstrdup(value);
 	else if (!strcmp(name, "index-header"))
 		cgit_index_header = xstrdup(value);
+	else if (!strcmp(name, "index-info"))
+		cgit_index_info = xstrdup(value);
 	else if (!strcmp(name, "logo-link"))
 		cgit_logo_link = xstrdup(value);
 	else if (!strcmp(name, "module-link"))