diff options
author | Lars Hjemli | 2007-11-11 21:57:21 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-11-11 21:57:21 +0100 |
commit | d267d88c9cb1fb4a45120b86e410ab604626c6bb (patch) | |
tree | 55ee3a76da83a6272e446f5201928fe1753ea30d | |
parent | Generate valid html for "downloads" menu header (diff) | |
download | cgit-d267d88c9cb1fb4a45120b86e410ab604626c6bb.tar.gz cgit-d267d88c9cb1fb4a45120b86e410ab604626c6bb.zip |
Add support for "robots" meta-tag
With this change, cgit will start to generate the "robots" meta-tag, using a default value of "index, nofollow". The default value can be modified with a new cgitrc variable, "robots". Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | cgitrc | 5 | ||||
-rw-r--r-- | shared.c | 3 | ||||
-rw-r--r-- | ui-shared.c | 2 |
4 files changed, 11 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index 6291c58..ab0efeb 100644 --- a/cgit.h +++ b/cgit.h | |||
@@ -139,6 +139,7 @@ extern char *cgit_virtual_root; | |||
139 | extern char *cgit_script_name; | 139 | extern char *cgit_script_name; |
140 | extern char *cgit_cache_root; | 140 | extern char *cgit_cache_root; |
141 | extern char *cgit_repo_group; | 141 | extern char *cgit_repo_group; |
142 | extern char *cgit_robots; | ||
142 | 143 | ||
143 | extern int cgit_nocache; | 144 | extern int cgit_nocache; |
144 | extern int cgit_snapshots; | 145 | extern int cgit_snapshots; |
diff --git a/cgitrc b/cgitrc index 6363c9c..8c616e0 100644 --- a/cgitrc +++ b/cgitrc | |||
@@ -8,6 +8,11 @@ | |||
8 | #nocache=0 | 8 | #nocache=0 |
9 | 9 | ||
10 | 10 | ||
11 | ## This variable can be used to override the default value for "robots" | ||
12 | ## meta-tag. If unset, the meta-tag isn't generated. | ||
13 | #robots=index, nofollow | ||
14 | |||
15 | |||
11 | ## Set allowed snapshot types by default. Can be overridden per repo | 16 | ## Set allowed snapshot types by default. Can be overridden per repo |
12 | # can be any combination of zip/tar.gz/tar.bz2/tar | 17 | # can be any combination of zip/tar.gz/tar.bz2/tar |
13 | #snapshots=0 | 18 | #snapshots=0 |
diff --git a/shared.c b/shared.c index 8cb4808..fd8b1e3 100644 --- a/shared.c +++ b/shared.c | |||
@@ -26,6 +26,7 @@ char *cgit_virtual_root = NULL; | |||
26 | char *cgit_script_name = CGIT_SCRIPT_NAME; | 26 | char *cgit_script_name = CGIT_SCRIPT_NAME; |
27 | char *cgit_cache_root = CGIT_CACHE_ROOT; | 27 | char *cgit_cache_root = CGIT_CACHE_ROOT; |
28 | char *cgit_repo_group = NULL; | 28 | char *cgit_repo_group = NULL; |
29 | char *cgit_robots = "index, nofollow"; | ||
29 | 30 | ||
30 | int cgit_nocache = 0; | 31 | int cgit_nocache = 0; |
31 | int cgit_snapshots = 0; | 32 | int cgit_snapshots = 0; |
@@ -197,6 +198,8 @@ void cgit_global_config_cb(const char *name, const char *value) | |||
197 | cgit_agefile = xstrdup(value); | 198 | cgit_agefile = xstrdup(value); |
198 | else if (!strcmp(name, "renamelimit")) | 199 | else if (!strcmp(name, "renamelimit")) |
199 | cgit_renamelimit = atoi(value); | 200 | cgit_renamelimit = atoi(value); |
201 | else if (!strcmp(name, "robots")) | ||
202 | cgit_robots = xstrdup(value); | ||
200 | else if (!strcmp(name, "repo.group")) | 203 | else if (!strcmp(name, "repo.group")) |
201 | cgit_repo_group = xstrdup(value); | 204 | cgit_repo_group = xstrdup(value); |
202 | else if (!strcmp(name, "repo.url")) | 205 | else if (!strcmp(name, "repo.url")) |
diff --git a/ui-shared.c b/ui-shared.c index 5192800..2f771da 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -364,6 +364,8 @@ void cgit_print_docstart(char *title, struct cacheitem *item) | |||
364 | html_txt(title); | 364 | html_txt(title); |
365 | html("</title>\n"); | 365 | html("</title>\n"); |
366 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 366 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
367 | if (cgit_robots && *cgit_robots) | ||
368 | htmlf("<meta name='robots' content='%s'/>\n", cgit_robots); | ||
367 | html("<link rel='stylesheet' type='text/css' href='"); | 369 | html("<link rel='stylesheet' type='text/css' href='"); |
368 | html_attr(cgit_css); | 370 | html_attr(cgit_css); |
369 | html("'/>\n"); | 371 | html("'/>\n"); |