diff options
| author | Lars Hjemli | 2009-07-25 12:19:31 +0200 |
|---|---|---|
| committer | Lars Hjemli | 2009-07-25 12:19:31 +0200 |
| commit | ef0c6aadf70e33ef63f0a68ca16338a49d0a3f1f (patch) | |
| tree | 4115c32dc27aa18840dda2c940ca10b4a7d0cf86 /cgit.c | |
| parent | 0cbb50841ac82e08e715bbff614f96c7d5ba22fa (diff) | |
| download | cgit-ef0c6aadf70e33ef63f0a68ca16338a49d0a3f1f.tar.gz cgit-ef0c6aadf70e33ef63f0a68ca16338a49d0a3f1f.tar.bz2 cgit-ef0c6aadf70e33ef63f0a68ca16338a49d0a3f1f.zip | |
Add support for 'noheader' option
This option can be used to disable the standard cgit page header, which
might be useful in combination with the 'embedded' option.
Suggested-by: Mark Constable <markc@renta.net>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -49,6 +49,8 @@ void config_cb(const char *name, const char *value) | |||
| 49 | ctx.cfg.virtual_root = ""; | 49 | ctx.cfg.virtual_root = ""; |
| 50 | } else if (!strcmp(name, "nocache")) | 50 | } else if (!strcmp(name, "nocache")) |
| 51 | ctx.cfg.nocache = atoi(value); | 51 | ctx.cfg.nocache = atoi(value); |
| 52 | else if (!strcmp(name, "noheader")) | ||
| 53 | ctx.cfg.noheader = atoi(value); | ||
| 52 | else if (!strcmp(name, "snapshots")) | 54 | else if (!strcmp(name, "snapshots")) |
| 53 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); | 55 | ctx.cfg.snapshots = cgit_parse_snapshots_mask(value); |
| 54 | else if (!strcmp(name, "enable-index-links")) | 56 | else if (!strcmp(name, "enable-index-links")) |
