summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2007-10-30 09:39:59 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-10-30 09:39:59 (UTC)
commit10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7 (patch) (side-by-side diff)
tree8d185e972d4b235fc46156b9173a3406af2aacf6
parentfc5880fab8b9afc589aaadd1299c34a6ef2a3c2d (diff)
downloadcgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.zip
cgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.tar.gz
cgit-10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7.tar.bz2
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>
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--cgit.h1
-rw-r--r--shared.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index dd83f70..b8af970 100644
--- a/cgit.h
+++ b/cgit.h
@@ -125,4 +125,5 @@ 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;
diff --git a/shared.c b/shared.c
index 4fab1c9..50fe8e1 100644
--- a/shared.c
+++ b/shared.c
@@ -19,4 +19,5 @@ 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";
@@ -151,4 +152,6 @@ void cgit_global_config_cb(const char *name, const char *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);