summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2009-07-25 10:04:08 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-07-25 10:04:08 (UTC)
commit542f6a433034935a1aa895f7ef3273968915a5d1 (patch) (unidiff)
tree8fc123b3d9f014f31b5b160a9456c85b6c19aa0d
parent681fdc45473143de3f3c5f69fbc7b94f5d6b0b75 (diff)
parentf618e8f7174011e1e793df2c67fb9d1341652054 (diff)
downloadcgit-542f6a433034935a1aa895f7ef3273968915a5d1.zip
cgit-542f6a433034935a1aa895f7ef3273968915a5d1.tar.gz
cgit-542f6a433034935a1aa895f7ef3273968915a5d1.tar.bz2
Merge branch 'ml/head-include'
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c2
-rw-r--r--cgit.h1
-rw-r--r--cgitrc.5.txt4
-rw-r--r--ui-shared.c4
4 files changed, 10 insertions, 1 deletions
diff --git a/cgit.c b/cgit.c
index ae20257..513ea12 100644
--- a/cgit.c
+++ b/cgit.c
@@ -1,225 +1,227 @@
1/* cgit.c: cgi for the git scm 1/* cgit.c: cgi for the git scm
2 * 2 *
3 * Copyright (C) 2006 Lars Hjemli 3 * Copyright (C) 2006 Lars Hjemli
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10#include "cache.h" 10#include "cache.h"
11#include "cmd.h" 11#include "cmd.h"
12#include "configfile.h" 12#include "configfile.h"
13#include "html.h" 13#include "html.h"
14#include "ui-shared.h" 14#include "ui-shared.h"
15#include "ui-stats.h" 15#include "ui-stats.h"
16#include "scan-tree.h" 16#include "scan-tree.h"
17 17
18const char *cgit_version = CGIT_VERSION; 18const char *cgit_version = CGIT_VERSION;
19 19
20void config_cb(const char *name, const char *value) 20void config_cb(const char *name, const char *value)
21{ 21{
22 if (!strcmp(name, "root-title")) 22 if (!strcmp(name, "root-title"))
23 ctx.cfg.root_title = xstrdup(value); 23 ctx.cfg.root_title = xstrdup(value);
24 else if (!strcmp(name, "root-desc")) 24 else if (!strcmp(name, "root-desc"))
25 ctx.cfg.root_desc = xstrdup(value); 25 ctx.cfg.root_desc = xstrdup(value);
26 else if (!strcmp(name, "root-readme")) 26 else if (!strcmp(name, "root-readme"))
27 ctx.cfg.root_readme = xstrdup(value); 27 ctx.cfg.root_readme = xstrdup(value);
28 else if (!strcmp(name, "css")) 28 else if (!strcmp(name, "css"))
29 ctx.cfg.css = xstrdup(value); 29 ctx.cfg.css = xstrdup(value);
30 else if (!strcmp(name, "favicon")) 30 else if (!strcmp(name, "favicon"))
31 ctx.cfg.favicon = xstrdup(value); 31 ctx.cfg.favicon = xstrdup(value);
32 else if (!strcmp(name, "footer")) 32 else if (!strcmp(name, "footer"))
33 ctx.cfg.footer = xstrdup(value); 33 ctx.cfg.footer = xstrdup(value);
34 else if (!strcmp(name, "head-include"))
35 ctx.cfg.head_include = xstrdup(value);
34 else if (!strcmp(name, "header")) 36 else if (!strcmp(name, "header"))
35 ctx.cfg.header = xstrdup(value); 37 ctx.cfg.header = xstrdup(value);
36 else if (!strcmp(name, "logo")) 38 else if (!strcmp(name, "logo"))
37 ctx.cfg.logo = xstrdup(value); 39 ctx.cfg.logo = xstrdup(value);
38 else if (!strcmp(name, "index-header")) 40 else if (!strcmp(name, "index-header"))
39 ctx.cfg.index_header = xstrdup(value); 41 ctx.cfg.index_header = xstrdup(value);
40 else if (!strcmp(name, "index-info")) 42 else if (!strcmp(name, "index-info"))
41 ctx.cfg.index_info = xstrdup(value); 43 ctx.cfg.index_info = xstrdup(value);
42 else if (!strcmp(name, "logo-link")) 44 else if (!strcmp(name, "logo-link"))
43 ctx.cfg.logo_link = xstrdup(value); 45 ctx.cfg.logo_link = xstrdup(value);
44 else if (!strcmp(name, "module-link")) 46 else if (!strcmp(name, "module-link"))
45 ctx.cfg.module_link = xstrdup(value); 47 ctx.cfg.module_link = xstrdup(value);
46 else if (!strcmp(name, "virtual-root")) { 48 else if (!strcmp(name, "virtual-root")) {
47 ctx.cfg.virtual_root = trim_end(value, '/'); 49 ctx.cfg.virtual_root = trim_end(value, '/');
48 if (!ctx.cfg.virtual_root && (!strcmp(value, "/"))) 50 if (!ctx.cfg.virtual_root && (!strcmp(value, "/")))
49 ctx.cfg.virtual_root = ""; 51 ctx.cfg.virtual_root = "";
50 } else if (!strcmp(name, "nocache")) 52 } else if (!strcmp(name, "nocache"))
51 ctx.cfg.nocache = atoi(value); 53 ctx.cfg.nocache = 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"))
55 ctx.cfg.enable_index_links = atoi(value); 57 ctx.cfg.enable_index_links = atoi(value);
56 else if (!strcmp(name, "enable-log-filecount")) 58 else if (!strcmp(name, "enable-log-filecount"))
57 ctx.cfg.enable_log_filecount = atoi(value); 59 ctx.cfg.enable_log_filecount = atoi(value);
58 else if (!strcmp(name, "enable-log-linecount")) 60 else if (!strcmp(name, "enable-log-linecount"))
59 ctx.cfg.enable_log_linecount = atoi(value); 61 ctx.cfg.enable_log_linecount = atoi(value);
60 else if (!strcmp(name, "max-stats")) 62 else if (!strcmp(name, "max-stats"))
61 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL); 63 ctx.cfg.max_stats = cgit_find_stats_period(value, NULL);
62 else if (!strcmp(name, "cache-size")) 64 else if (!strcmp(name, "cache-size"))
63 ctx.cfg.cache_size = atoi(value); 65 ctx.cfg.cache_size = atoi(value);
64 else if (!strcmp(name, "cache-root")) 66 else if (!strcmp(name, "cache-root"))
65 ctx.cfg.cache_root = xstrdup(value); 67 ctx.cfg.cache_root = xstrdup(value);
66 else if (!strcmp(name, "cache-root-ttl")) 68 else if (!strcmp(name, "cache-root-ttl"))
67 ctx.cfg.cache_root_ttl = atoi(value); 69 ctx.cfg.cache_root_ttl = atoi(value);
68 else if (!strcmp(name, "cache-repo-ttl")) 70 else if (!strcmp(name, "cache-repo-ttl"))
69 ctx.cfg.cache_repo_ttl = atoi(value); 71 ctx.cfg.cache_repo_ttl = atoi(value);
70 else if (!strcmp(name, "cache-static-ttl")) 72 else if (!strcmp(name, "cache-static-ttl"))
71 ctx.cfg.cache_static_ttl = atoi(value); 73 ctx.cfg.cache_static_ttl = atoi(value);
72 else if (!strcmp(name, "cache-dynamic-ttl")) 74 else if (!strcmp(name, "cache-dynamic-ttl"))
73 ctx.cfg.cache_dynamic_ttl = atoi(value); 75 ctx.cfg.cache_dynamic_ttl = atoi(value);
74 else if (!strcmp(name, "max-message-length")) 76 else if (!strcmp(name, "max-message-length"))
75 ctx.cfg.max_msg_len = atoi(value); 77 ctx.cfg.max_msg_len = atoi(value);
76 else if (!strcmp(name, "max-repodesc-length")) 78 else if (!strcmp(name, "max-repodesc-length"))
77 ctx.cfg.max_repodesc_len = atoi(value); 79 ctx.cfg.max_repodesc_len = atoi(value);
78 else if (!strcmp(name, "max-repo-count")) 80 else if (!strcmp(name, "max-repo-count"))
79 ctx.cfg.max_repo_count = atoi(value); 81 ctx.cfg.max_repo_count = atoi(value);
80 else if (!strcmp(name, "max-commit-count")) 82 else if (!strcmp(name, "max-commit-count"))
81 ctx.cfg.max_commit_count = atoi(value); 83 ctx.cfg.max_commit_count = atoi(value);
82 else if (!strcmp(name, "summary-log")) 84 else if (!strcmp(name, "summary-log"))
83 ctx.cfg.summary_log = atoi(value); 85 ctx.cfg.summary_log = atoi(value);
84 else if (!strcmp(name, "summary-branches")) 86 else if (!strcmp(name, "summary-branches"))
85 ctx.cfg.summary_branches = atoi(value); 87 ctx.cfg.summary_branches = atoi(value);
86 else if (!strcmp(name, "summary-tags")) 88 else if (!strcmp(name, "summary-tags"))
87 ctx.cfg.summary_tags = atoi(value); 89 ctx.cfg.summary_tags = atoi(value);
88 else if (!strcmp(name, "agefile")) 90 else if (!strcmp(name, "agefile"))
89 ctx.cfg.agefile = xstrdup(value); 91 ctx.cfg.agefile = xstrdup(value);
90 else if (!strcmp(name, "renamelimit")) 92 else if (!strcmp(name, "renamelimit"))
91 ctx.cfg.renamelimit = atoi(value); 93 ctx.cfg.renamelimit = atoi(value);
92 else if (!strcmp(name, "robots")) 94 else if (!strcmp(name, "robots"))
93 ctx.cfg.robots = xstrdup(value); 95 ctx.cfg.robots = xstrdup(value);
94 else if (!strcmp(name, "clone-prefix")) 96 else if (!strcmp(name, "clone-prefix"))
95 ctx.cfg.clone_prefix = xstrdup(value); 97 ctx.cfg.clone_prefix = xstrdup(value);
96 else if (!strcmp(name, "local-time")) 98 else if (!strcmp(name, "local-time"))
97 ctx.cfg.local_time = atoi(value); 99 ctx.cfg.local_time = atoi(value);
98 else if (!strcmp(name, "repo.group")) 100 else if (!strcmp(name, "repo.group"))
99 ctx.cfg.repo_group = xstrdup(value); 101 ctx.cfg.repo_group = xstrdup(value);
100 else if (!strcmp(name, "repo.url")) 102 else if (!strcmp(name, "repo.url"))
101 ctx.repo = cgit_add_repo(value); 103 ctx.repo = cgit_add_repo(value);
102 else if (!strcmp(name, "repo.name")) 104 else if (!strcmp(name, "repo.name"))
103 ctx.repo->name = xstrdup(value); 105 ctx.repo->name = xstrdup(value);
104 else if (ctx.repo && !strcmp(name, "repo.path")) 106 else if (ctx.repo && !strcmp(name, "repo.path"))
105 ctx.repo->path = trim_end(value, '/'); 107 ctx.repo->path = trim_end(value, '/');
106 else if (ctx.repo && !strcmp(name, "repo.clone-url")) 108 else if (ctx.repo && !strcmp(name, "repo.clone-url"))
107 ctx.repo->clone_url = xstrdup(value); 109 ctx.repo->clone_url = xstrdup(value);
108 else if (ctx.repo && !strcmp(name, "repo.desc")) 110 else if (ctx.repo && !strcmp(name, "repo.desc"))
109 ctx.repo->desc = xstrdup(value); 111 ctx.repo->desc = xstrdup(value);
110 else if (ctx.repo && !strcmp(name, "repo.owner")) 112 else if (ctx.repo && !strcmp(name, "repo.owner"))
111 ctx.repo->owner = xstrdup(value); 113 ctx.repo->owner = xstrdup(value);
112 else if (ctx.repo && !strcmp(name, "repo.defbranch")) 114 else if (ctx.repo && !strcmp(name, "repo.defbranch"))
113 ctx.repo->defbranch = xstrdup(value); 115 ctx.repo->defbranch = xstrdup(value);
114 else if (ctx.repo && !strcmp(name, "repo.snapshots")) 116 else if (ctx.repo && !strcmp(name, "repo.snapshots"))
115 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ 117 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
116 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) 118 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount"))
117 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); 119 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
118 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) 120 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount"))
119 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); 121 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
120 else if (ctx.repo && !strcmp(name, "repo.max-stats")) 122 else if (ctx.repo && !strcmp(name, "repo.max-stats"))
121 ctx.repo->max_stats = cgit_find_stats_period(value, NULL); 123 ctx.repo->max_stats = cgit_find_stats_period(value, NULL);
122 else if (ctx.repo && !strcmp(name, "repo.module-link")) 124 else if (ctx.repo && !strcmp(name, "repo.module-link"))
123 ctx.repo->module_link= xstrdup(value); 125 ctx.repo->module_link= xstrdup(value);
124 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { 126 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) {
125 if (*value == '/') 127 if (*value == '/')
126 ctx.repo->readme = xstrdup(value); 128 ctx.repo->readme = xstrdup(value);
127 else 129 else
128 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); 130 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
129 } else if (!strcmp(name, "include")) 131 } else if (!strcmp(name, "include"))
130 parse_configfile(value, config_cb); 132 parse_configfile(value, config_cb);
131} 133}
132 134
133static void querystring_cb(const char *name, const char *value) 135static void querystring_cb(const char *name, const char *value)
134{ 136{
135 if (!strcmp(name,"r")) { 137 if (!strcmp(name,"r")) {
136 ctx.qry.repo = xstrdup(value); 138 ctx.qry.repo = xstrdup(value);
137 ctx.repo = cgit_get_repoinfo(value); 139 ctx.repo = cgit_get_repoinfo(value);
138 } else if (!strcmp(name, "p")) { 140 } else if (!strcmp(name, "p")) {
139 ctx.qry.page = xstrdup(value); 141 ctx.qry.page = xstrdup(value);
140 } else if (!strcmp(name, "url")) { 142 } else if (!strcmp(name, "url")) {
141 ctx.qry.url = xstrdup(value); 143 ctx.qry.url = xstrdup(value);
142 cgit_parse_url(value); 144 cgit_parse_url(value);
143 } else if (!strcmp(name, "qt")) { 145 } else if (!strcmp(name, "qt")) {
144 ctx.qry.grep = xstrdup(value); 146 ctx.qry.grep = xstrdup(value);
145 } else if (!strcmp(name, "q")) { 147 } else if (!strcmp(name, "q")) {
146 ctx.qry.search = xstrdup(value); 148 ctx.qry.search = xstrdup(value);
147 } else if (!strcmp(name, "h")) { 149 } else if (!strcmp(name, "h")) {
148 ctx.qry.head = xstrdup(value); 150 ctx.qry.head = xstrdup(value);
149 ctx.qry.has_symref = 1; 151 ctx.qry.has_symref = 1;
150 } else if (!strcmp(name, "id")) { 152 } else if (!strcmp(name, "id")) {
151 ctx.qry.sha1 = xstrdup(value); 153 ctx.qry.sha1 = xstrdup(value);
152 ctx.qry.has_sha1 = 1; 154 ctx.qry.has_sha1 = 1;
153 } else if (!strcmp(name, "id2")) { 155 } else if (!strcmp(name, "id2")) {
154 ctx.qry.sha2 = xstrdup(value); 156 ctx.qry.sha2 = xstrdup(value);
155 ctx.qry.has_sha1 = 1; 157 ctx.qry.has_sha1 = 1;
156 } else if (!strcmp(name, "ofs")) { 158 } else if (!strcmp(name, "ofs")) {
157 ctx.qry.ofs = atoi(value); 159 ctx.qry.ofs = atoi(value);
158 } else if (!strcmp(name, "path")) { 160 } else if (!strcmp(name, "path")) {
159 ctx.qry.path = trim_end(value, '/'); 161 ctx.qry.path = trim_end(value, '/');
160 } else if (!strcmp(name, "name")) { 162 } else if (!strcmp(name, "name")) {
161 ctx.qry.name = xstrdup(value); 163 ctx.qry.name = xstrdup(value);
162 } else if (!strcmp(name, "mimetype")) { 164 } else if (!strcmp(name, "mimetype")) {
163 ctx.qry.mimetype = xstrdup(value); 165 ctx.qry.mimetype = xstrdup(value);
164 } else if (!strcmp(name, "s")){ 166 } else if (!strcmp(name, "s")){
165 ctx.qry.sort = xstrdup(value); 167 ctx.qry.sort = xstrdup(value);
166 } else if (!strcmp(name, "showmsg")) { 168 } else if (!strcmp(name, "showmsg")) {
167 ctx.qry.showmsg = atoi(value); 169 ctx.qry.showmsg = atoi(value);
168 } else if (!strcmp(name, "period")) { 170 } else if (!strcmp(name, "period")) {
169 ctx.qry.period = xstrdup(value); 171 ctx.qry.period = xstrdup(value);
170 } 172 }
171} 173}
172 174
173static void prepare_context(struct cgit_context *ctx) 175static void prepare_context(struct cgit_context *ctx)
174{ 176{
175 memset(ctx, 0, sizeof(ctx)); 177 memset(ctx, 0, sizeof(ctx));
176 ctx->cfg.agefile = "info/web/last-modified"; 178 ctx->cfg.agefile = "info/web/last-modified";
177 ctx->cfg.nocache = 0; 179 ctx->cfg.nocache = 0;
178 ctx->cfg.cache_size = 0; 180 ctx->cfg.cache_size = 0;
179 ctx->cfg.cache_dynamic_ttl = 5; 181 ctx->cfg.cache_dynamic_ttl = 5;
180 ctx->cfg.cache_max_create_time = 5; 182 ctx->cfg.cache_max_create_time = 5;
181 ctx->cfg.cache_repo_ttl = 5; 183 ctx->cfg.cache_repo_ttl = 5;
182 ctx->cfg.cache_root = CGIT_CACHE_ROOT; 184 ctx->cfg.cache_root = CGIT_CACHE_ROOT;
183 ctx->cfg.cache_root_ttl = 5; 185 ctx->cfg.cache_root_ttl = 5;
184 ctx->cfg.cache_static_ttl = -1; 186 ctx->cfg.cache_static_ttl = -1;
185 ctx->cfg.css = "/cgit.css"; 187 ctx->cfg.css = "/cgit.css";
186 ctx->cfg.logo = "/git-logo.png"; 188 ctx->cfg.logo = "/git-logo.png";
187 ctx->cfg.local_time = 0; 189 ctx->cfg.local_time = 0;
188 ctx->cfg.max_repo_count = 50; 190 ctx->cfg.max_repo_count = 50;
189 ctx->cfg.max_commit_count = 50; 191 ctx->cfg.max_commit_count = 50;
190 ctx->cfg.max_lock_attempts = 5; 192 ctx->cfg.max_lock_attempts = 5;
191 ctx->cfg.max_msg_len = 80; 193 ctx->cfg.max_msg_len = 80;
192 ctx->cfg.max_repodesc_len = 80; 194 ctx->cfg.max_repodesc_len = 80;
193 ctx->cfg.max_stats = 0; 195 ctx->cfg.max_stats = 0;
194 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 196 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
195 ctx->cfg.renamelimit = -1; 197 ctx->cfg.renamelimit = -1;
196 ctx->cfg.robots = "index, nofollow"; 198 ctx->cfg.robots = "index, nofollow";
197 ctx->cfg.root_title = "Git repository browser"; 199 ctx->cfg.root_title = "Git repository browser";
198 ctx->cfg.root_desc = "a fast webinterface for the git dscm"; 200 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
199 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 201 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
200 ctx->cfg.summary_branches = 10; 202 ctx->cfg.summary_branches = 10;
201 ctx->cfg.summary_log = 10; 203 ctx->cfg.summary_log = 10;
202 ctx->cfg.summary_tags = 10; 204 ctx->cfg.summary_tags = 10;
203 ctx->page.mimetype = "text/html"; 205 ctx->page.mimetype = "text/html";
204 ctx->page.charset = PAGE_ENCODING; 206 ctx->page.charset = PAGE_ENCODING;
205 ctx->page.filename = NULL; 207 ctx->page.filename = NULL;
206 ctx->page.size = 0; 208 ctx->page.size = 0;
207 ctx->page.modified = time(NULL); 209 ctx->page.modified = time(NULL);
208 ctx->page.expires = ctx->page.modified; 210 ctx->page.expires = ctx->page.modified;
209 ctx->page.etag = NULL; 211 ctx->page.etag = NULL;
210} 212}
211 213
212struct refmatch { 214struct refmatch {
213 char *req_ref; 215 char *req_ref;
214 char *first_ref; 216 char *first_ref;
215 int match; 217 int match;
216}; 218};
217 219
218int find_current_ref(const char *refname, const unsigned char *sha1, 220int find_current_ref(const char *refname, const unsigned char *sha1,
219 int flags, void *cb_data) 221 int flags, void *cb_data)
220{ 222{
221 struct refmatch *info; 223 struct refmatch *info;
222 224
223 info = (struct refmatch *)cb_data; 225 info = (struct refmatch *)cb_data;
224 if (!strcmp(refname, info->req_ref)) 226 if (!strcmp(refname, info->req_ref))
225 info->match = 1; 227 info->match = 1;
diff --git a/cgit.h b/cgit.h
index 07a277a..78b30ba 100644
--- a/cgit.h
+++ b/cgit.h
@@ -1,249 +1,250 @@
1#ifndef CGIT_H 1#ifndef CGIT_H
2#define CGIT_H 2#define CGIT_H
3 3
4 4
5#include <git-compat-util.h> 5#include <git-compat-util.h>
6#include <cache.h> 6#include <cache.h>
7#include <grep.h> 7#include <grep.h>
8#include <object.h> 8#include <object.h>
9#include <tree.h> 9#include <tree.h>
10#include <commit.h> 10#include <commit.h>
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <refs.h> 14#include <refs.h>
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <xdiff-interface.h> 18#include <xdiff-interface.h>
19#include <xdiff/xdiff.h> 19#include <xdiff/xdiff.h>
20#include <utf8.h> 20#include <utf8.h>
21 21
22 22
23/* 23/*
24 * Dateformats used on misc. pages 24 * Dateformats used on misc. pages
25 */ 25 */
26#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" 26#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)"
27#define FMT_SHORTDATE "%Y-%m-%d" 27#define FMT_SHORTDATE "%Y-%m-%d"
28#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" 28#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ"
29 29
30 30
31/* 31/*
32 * Limits used for relative dates 32 * Limits used for relative dates
33 */ 33 */
34#define TM_MIN 60 34#define TM_MIN 60
35#define TM_HOUR (TM_MIN * 60) 35#define TM_HOUR (TM_MIN * 60)
36#define TM_DAY (TM_HOUR * 24) 36#define TM_DAY (TM_HOUR * 24)
37#define TM_WEEK (TM_DAY * 7) 37#define TM_WEEK (TM_DAY * 7)
38#define TM_YEAR (TM_DAY * 365) 38#define TM_YEAR (TM_DAY * 365)
39#define TM_MONTH (TM_YEAR / 12.0) 39#define TM_MONTH (TM_YEAR / 12.0)
40 40
41 41
42/* 42/*
43 * Default encoding 43 * Default encoding
44 */ 44 */
45#define PAGE_ENCODING "UTF-8" 45#define PAGE_ENCODING "UTF-8"
46 46
47typedef void (*configfn)(const char *name, const char *value); 47typedef void (*configfn)(const char *name, const char *value);
48typedef void (*filepair_fn)(struct diff_filepair *pair); 48typedef void (*filepair_fn)(struct diff_filepair *pair);
49typedef void (*linediff_fn)(char *line, int len); 49typedef void (*linediff_fn)(char *line, int len);
50 50
51struct cgit_repo { 51struct cgit_repo {
52 char *url; 52 char *url;
53 char *name; 53 char *name;
54 char *path; 54 char *path;
55 char *desc; 55 char *desc;
56 char *owner; 56 char *owner;
57 char *defbranch; 57 char *defbranch;
58 char *group; 58 char *group;
59 char *module_link; 59 char *module_link;
60 char *readme; 60 char *readme;
61 char *clone_url; 61 char *clone_url;
62 int snapshots; 62 int snapshots;
63 int enable_log_filecount; 63 int enable_log_filecount;
64 int enable_log_linecount; 64 int enable_log_linecount;
65 int max_stats; 65 int max_stats;
66 time_t mtime; 66 time_t mtime;
67}; 67};
68 68
69struct cgit_repolist { 69struct cgit_repolist {
70 int length; 70 int length;
71 int count; 71 int count;
72 struct cgit_repo *repos; 72 struct cgit_repo *repos;
73}; 73};
74 74
75struct commitinfo { 75struct commitinfo {
76 struct commit *commit; 76 struct commit *commit;
77 char *author; 77 char *author;
78 char *author_email; 78 char *author_email;
79 unsigned long author_date; 79 unsigned long author_date;
80 char *committer; 80 char *committer;
81 char *committer_email; 81 char *committer_email;
82 unsigned long committer_date; 82 unsigned long committer_date;
83 char *subject; 83 char *subject;
84 char *msg; 84 char *msg;
85 char *msg_encoding; 85 char *msg_encoding;
86}; 86};
87 87
88struct taginfo { 88struct taginfo {
89 char *tagger; 89 char *tagger;
90 char *tagger_email; 90 char *tagger_email;
91 unsigned long tagger_date; 91 unsigned long tagger_date;
92 char *msg; 92 char *msg;
93}; 93};
94 94
95struct refinfo { 95struct refinfo {
96 const char *refname; 96 const char *refname;
97 struct object *object; 97 struct object *object;
98 union { 98 union {
99 struct taginfo *tag; 99 struct taginfo *tag;
100 struct commitinfo *commit; 100 struct commitinfo *commit;
101 }; 101 };
102}; 102};
103 103
104struct reflist { 104struct reflist {
105 struct refinfo **refs; 105 struct refinfo **refs;
106 int alloc; 106 int alloc;
107 int count; 107 int count;
108}; 108};
109 109
110struct cgit_query { 110struct cgit_query {
111 int has_symref; 111 int has_symref;
112 int has_sha1; 112 int has_sha1;
113 char *raw; 113 char *raw;
114 char *repo; 114 char *repo;
115 char *page; 115 char *page;
116 char *search; 116 char *search;
117 char *grep; 117 char *grep;
118 char *head; 118 char *head;
119 char *sha1; 119 char *sha1;
120 char *sha2; 120 char *sha2;
121 char *path; 121 char *path;
122 char *name; 122 char *name;
123 char *mimetype; 123 char *mimetype;
124 char *url; 124 char *url;
125 char *period; 125 char *period;
126 int ofs; 126 int ofs;
127 int nohead; 127 int nohead;
128 char *sort; 128 char *sort;
129 int showmsg; 129 int showmsg;
130}; 130};
131 131
132struct cgit_config { 132struct cgit_config {
133 char *agefile; 133 char *agefile;
134 char *cache_root; 134 char *cache_root;
135 char *clone_prefix; 135 char *clone_prefix;
136 char *css; 136 char *css;
137 char *favicon; 137 char *favicon;
138 char *footer; 138 char *footer;
139 char *head_include;
139 char *header; 140 char *header;
140 char *index_header; 141 char *index_header;
141 char *index_info; 142 char *index_info;
142 char *logo; 143 char *logo;
143 char *logo_link; 144 char *logo_link;
144 char *module_link; 145 char *module_link;
145 char *repo_group; 146 char *repo_group;
146 char *robots; 147 char *robots;
147 char *root_title; 148 char *root_title;
148 char *root_desc; 149 char *root_desc;
149 char *root_readme; 150 char *root_readme;
150 char *script_name; 151 char *script_name;
151 char *virtual_root; 152 char *virtual_root;
152 int cache_size; 153 int cache_size;
153 int cache_dynamic_ttl; 154 int cache_dynamic_ttl;
154 int cache_max_create_time; 155 int cache_max_create_time;
155 int cache_repo_ttl; 156 int cache_repo_ttl;
156 int cache_root_ttl; 157 int cache_root_ttl;
157 int cache_static_ttl; 158 int cache_static_ttl;
158 int enable_index_links; 159 int enable_index_links;
159 int enable_log_filecount; 160 int enable_log_filecount;
160 int enable_log_linecount; 161 int enable_log_linecount;
161 int local_time; 162 int local_time;
162 int max_repo_count; 163 int max_repo_count;
163 int max_commit_count; 164 int max_commit_count;
164 int max_lock_attempts; 165 int max_lock_attempts;
165 int max_msg_len; 166 int max_msg_len;
166 int max_repodesc_len; 167 int max_repodesc_len;
167 int max_stats; 168 int max_stats;
168 int nocache; 169 int nocache;
169 int renamelimit; 170 int renamelimit;
170 int snapshots; 171 int snapshots;
171 int summary_branches; 172 int summary_branches;
172 int summary_log; 173 int summary_log;
173 int summary_tags; 174 int summary_tags;
174}; 175};
175 176
176struct cgit_page { 177struct cgit_page {
177 time_t modified; 178 time_t modified;
178 time_t expires; 179 time_t expires;
179 size_t size; 180 size_t size;
180 char *mimetype; 181 char *mimetype;
181 char *charset; 182 char *charset;
182 char *filename; 183 char *filename;
183 char *etag; 184 char *etag;
184 char *title; 185 char *title;
185 int status; 186 int status;
186 char *statusmsg; 187 char *statusmsg;
187}; 188};
188 189
189struct cgit_context { 190struct cgit_context {
190 struct cgit_query qry; 191 struct cgit_query qry;
191 struct cgit_config cfg; 192 struct cgit_config cfg;
192 struct cgit_repo *repo; 193 struct cgit_repo *repo;
193 struct cgit_page page; 194 struct cgit_page page;
194}; 195};
195 196
196struct cgit_snapshot_format { 197struct cgit_snapshot_format {
197 const char *suffix; 198 const char *suffix;
198 const char *mimetype; 199 const char *mimetype;
199 write_archive_fn_t write_func; 200 write_archive_fn_t write_func;
200 int bit; 201 int bit;
201}; 202};
202 203
203extern const char *cgit_version; 204extern const char *cgit_version;
204 205
205extern struct cgit_repolist cgit_repolist; 206extern struct cgit_repolist cgit_repolist;
206extern struct cgit_context ctx; 207extern struct cgit_context ctx;
207extern const struct cgit_snapshot_format cgit_snapshot_formats[]; 208extern const struct cgit_snapshot_format cgit_snapshot_formats[];
208 209
209extern struct cgit_repo *cgit_add_repo(const char *url); 210extern struct cgit_repo *cgit_add_repo(const char *url);
210extern struct cgit_repo *cgit_get_repoinfo(const char *url); 211extern struct cgit_repo *cgit_get_repoinfo(const char *url);
211extern void cgit_repo_config_cb(const char *name, const char *value); 212extern void cgit_repo_config_cb(const char *name, const char *value);
212 213
213extern int chk_zero(int result, char *msg); 214extern int chk_zero(int result, char *msg);
214extern int chk_positive(int result, char *msg); 215extern int chk_positive(int result, char *msg);
215extern int chk_non_negative(int result, char *msg); 216extern int chk_non_negative(int result, char *msg);
216 217
217extern char *trim_end(const char *str, char c); 218extern char *trim_end(const char *str, char c);
218extern char *strlpart(char *txt, int maxlen); 219extern char *strlpart(char *txt, int maxlen);
219extern char *strrpart(char *txt, int maxlen); 220extern char *strrpart(char *txt, int maxlen);
220 221
221extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); 222extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
222extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, 223extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
223 int flags, void *cb_data); 224 int flags, void *cb_data);
224 225
225extern void *cgit_free_commitinfo(struct commitinfo *info); 226extern void *cgit_free_commitinfo(struct commitinfo *info);
226 227
227extern int cgit_diff_files(const unsigned char *old_sha1, 228extern int cgit_diff_files(const unsigned char *old_sha1,
228 const unsigned char *new_sha1, 229 const unsigned char *new_sha1,
229 unsigned long *old_size, unsigned long *new_size, 230 unsigned long *old_size, unsigned long *new_size,
230 int *binary, linediff_fn fn); 231 int *binary, linediff_fn fn);
231 232
232extern void cgit_diff_tree(const unsigned char *old_sha1, 233extern void cgit_diff_tree(const unsigned char *old_sha1,
233 const unsigned char *new_sha1, 234 const unsigned char *new_sha1,
234 filepair_fn fn, const char *prefix); 235 filepair_fn fn, const char *prefix);
235 236
236extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 237extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);
237 238
238extern char *fmt(const char *format,...); 239extern char *fmt(const char *format,...);
239 240
240extern struct commitinfo *cgit_parse_commit(struct commit *commit); 241extern struct commitinfo *cgit_parse_commit(struct commit *commit);
241extern struct taginfo *cgit_parse_tag(struct tag *tag); 242extern struct taginfo *cgit_parse_tag(struct tag *tag);
242extern void cgit_parse_url(const char *url); 243extern void cgit_parse_url(const char *url);
243 244
244extern const char *cgit_repobasename(const char *reponame); 245extern const char *cgit_repobasename(const char *reponame);
245 246
246extern int cgit_parse_snapshots_mask(const char *str); 247extern int cgit_parse_snapshots_mask(const char *str);
247 248
248 249
249#endif /* CGIT_H */ 250#endif /* CGIT_H */
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 7879f75..683f3b5 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -1,278 +1,282 @@
1CGITRC(5) 1CGITRC(5)
2======== 2========
3 3
4 4
5NAME 5NAME
6---- 6----
7cgitrc - runtime configuration for cgit 7cgitrc - runtime configuration for cgit
8 8
9 9
10SYNOPSIS 10SYNOPSIS
11-------- 11--------
12Cgitrc contains all runtime settings for cgit, including the list of git 12Cgitrc contains all runtime settings for cgit, including the list of git
13repositories, formatted as a line-separated list of NAME=VALUE pairs. Blank 13repositories, formatted as a line-separated list of NAME=VALUE pairs. Blank
14lines, and lines starting with '#', are ignored. 14lines, and lines starting with '#', are ignored.
15 15
16 16
17GLOBAL SETTINGS 17GLOBAL SETTINGS
18--------------- 18---------------
19agefile:: 19agefile::
20 Specifies a path, relative to each repository path, which can be used 20 Specifies a path, relative to each repository path, which can be used
21 to specify the date and time of the youngest commit in the repository. 21 to specify the date and time of the youngest commit in the repository.
22 The first line in the file is used as input to the "parse_date" 22 The first line in the file is used as input to the "parse_date"
23 function in libgit. Recommended timestamp-format is "yyyy-mm-dd 23 function in libgit. Recommended timestamp-format is "yyyy-mm-dd
24 hh:mm:ss". Default value: "info/web/last-modified". 24 hh:mm:ss". Default value: "info/web/last-modified".
25 25
26cache-root:: 26cache-root::
27 Path used to store the cgit cache entries. Default value: 27 Path used to store the cgit cache entries. Default value:
28 "/var/cache/cgit". 28 "/var/cache/cgit".
29 29
30cache-dynamic-ttl:: 30cache-dynamic-ttl::
31 Number which specifies the time-to-live, in minutes, for the cached 31 Number which specifies the time-to-live, in minutes, for the cached
32 version of repository pages accessed without a fixed SHA1. Default 32 version of repository pages accessed without a fixed SHA1. Default
33 value: "5". 33 value: "5".
34 34
35cache-repo-ttl:: 35cache-repo-ttl::
36 Number which specifies the time-to-live, in minutes, for the cached 36 Number which specifies the time-to-live, in minutes, for the cached
37 version of the repository summary page. Default value: "5". 37 version of the repository summary page. Default value: "5".
38 38
39cache-root-ttl:: 39cache-root-ttl::
40 Number which specifies the time-to-live, in minutes, for the cached 40 Number which specifies the time-to-live, in minutes, for the cached
41 version of the repository index page. Default value: "5". 41 version of the repository index page. Default value: "5".
42 42
43cache-size:: 43cache-size::
44 The maximum number of entries in the cgit cache. Default value: "0" 44 The maximum number of entries in the cgit cache. Default value: "0"
45 (i.e. caching is disabled). 45 (i.e. caching is disabled).
46 46
47cache-static-ttl:: 47cache-static-ttl::
48 Number which specifies the time-to-live, in minutes, for the cached 48 Number which specifies the time-to-live, in minutes, for the cached
49 version of repository pages accessed with a fixed SHA1. Default value: 49 version of repository pages accessed with a fixed SHA1. Default value:
50 "5". 50 "5".
51 51
52clone-prefix:: 52clone-prefix::
53 Space-separated list of common prefixes which, when combined with a 53 Space-separated list of common prefixes which, when combined with a
54 repository url, generates valid clone urls for the repository. This 54 repository url, generates valid clone urls for the repository. This
55 setting is only used if `repo.clone-url` is unspecified. Default value: 55 setting is only used if `repo.clone-url` is unspecified. Default value:
56 none. 56 none.
57 57
58css:: 58css::
59 Url which specifies the css document to include in all cgit pages. 59 Url which specifies the css document to include in all cgit pages.
60 Default value: "/cgit.css". 60 Default value: "/cgit.css".
61 61
62enable-index-links:: 62enable-index-links::
63 Flag which, when set to "1", will make cgit generate extra links for 63 Flag which, when set to "1", will make cgit generate extra links for
64 each repo in the repository index (specifically, to the "summary", 64 each repo in the repository index (specifically, to the "summary",
65 "commit" and "tree" pages). Default value: "0". 65 "commit" and "tree" pages). Default value: "0".
66 66
67enable-log-filecount:: 67enable-log-filecount::
68 Flag which, when set to "1", will make cgit print the number of 68 Flag which, when set to "1", will make cgit print the number of
69 modified files for each commit on the repository log page. Default 69 modified files for each commit on the repository log page. Default
70 value: "0". 70 value: "0".
71 71
72enable-log-linecount:: 72enable-log-linecount::
73 Flag which, when set to "1", will make cgit print the number of added 73 Flag which, when set to "1", will make cgit print the number of added
74 and removed lines for each commit on the repository log page. Default 74 and removed lines for each commit on the repository log page. Default
75 value: "0". 75 value: "0".
76 76
77favicon:: 77favicon::
78 Url used as link to a shortcut icon for cgit. If specified, it is 78 Url used as link to a shortcut icon for cgit. If specified, it is
79 suggested to use the value "/favicon.ico" since certain browsers will 79 suggested to use the value "/favicon.ico" since certain browsers will
80 ignore other values. Default value: none. 80 ignore other values. Default value: none.
81 81
82footer:: 82footer::
83 The content of the file specified with this option will be included 83 The content of the file specified with this option will be included
84 verbatim at the bottom of all pages (i.e. it replaces the standard 84 verbatim at the bottom of all pages (i.e. it replaces the standard
85 "generated by..." message. Default value: none. 85 "generated by..." message. Default value: none.
86 86
87head-include::
88 The content of the file specified with this option will be included
89 verbatim in the html HEAD section on all pages. Default value: none.
90
87header:: 91header::
88 The content of the file specified with this option will be included 92 The content of the file specified with this option will be included
89 verbatim at the top of all pages. Default value: none. 93 verbatim at the top of all pages. Default value: none.
90 94
91include:: 95include::
92 Name of a configfile to include before the rest of the current config- 96 Name of a configfile to include before the rest of the current config-
93 file is parsed. Default value: none. 97 file is parsed. Default value: none.
94 98
95index-header:: 99index-header::
96 The content of the file specified with this option will be included 100 The content of the file specified with this option will be included
97 verbatim above the repository index. This setting is deprecated, and 101 verbatim above the repository index. This setting is deprecated, and
98 will not be supported by cgit-1.0 (use root-readme instead). Default 102 will not be supported by cgit-1.0 (use root-readme instead). Default
99 value: none. 103 value: none.
100 104
101index-info:: 105index-info::
102 The content of the file specified with this option will be included 106 The content of the file specified with this option will be included
103 verbatim below the heading on the repository index page. This setting 107 verbatim below the heading on the repository index page. This setting
104 is deprecated, and will not be supported by cgit-1.0 (use root-desc 108 is deprecated, and will not be supported by cgit-1.0 (use root-desc
105 instead). Default value: none. 109 instead). Default value: none.
106 110
107local-time:: 111local-time::
108 Flag which, if set to "1", makes cgit print commit and tag times in the 112 Flag which, if set to "1", makes cgit print commit and tag times in the
109 servers timezone. Default value: "0". 113 servers timezone. Default value: "0".
110 114
111logo:: 115logo::
112 Url which specifies the source of an image which will be used as a logo 116 Url which specifies the source of an image which will be used as a logo
113 on all cgit pages. 117 on all cgit pages.
114 118
115logo-link:: 119logo-link::
116 Url loaded when clicking on the cgit logo image. If unspecified the 120 Url loaded when clicking on the cgit logo image. If unspecified the
117 calculated url of the repository index page will be used. Default 121 calculated url of the repository index page will be used. Default
118 value: none. 122 value: none.
119 123
120max-commit-count:: 124max-commit-count::
121 Specifies the number of entries to list per page in "log" view. Default 125 Specifies the number of entries to list per page in "log" view. Default
122 value: "50". 126 value: "50".
123 127
124max-message-length:: 128max-message-length::
125 Specifies the maximum number of commit message characters to display in 129 Specifies the maximum number of commit message characters to display in
126 "log" view. Default value: "80". 130 "log" view. Default value: "80".
127 131
128max-repo-count:: 132max-repo-count::
129 Specifies the number of entries to list per page on therepository 133 Specifies the number of entries to list per page on therepository
130 index page. Default value: "50". 134 index page. Default value: "50".
131 135
132max-repodesc-length:: 136max-repodesc-length::
133 Specifies the maximum number of repo description characters to display 137 Specifies the maximum number of repo description characters to display
134 on the repository index page. Default value: "80". 138 on the repository index page. Default value: "80".
135 139
136max-stats:: 140max-stats::
137 Set the default maximum statistics period. Valid values are "week", 141 Set the default maximum statistics period. Valid values are "week",
138 "month", "quarter" and "year". If unspecified, statistics are 142 "month", "quarter" and "year". If unspecified, statistics are
139 disabled. Default value: none. See also: "repo.max-stats". 143 disabled. Default value: none. See also: "repo.max-stats".
140 144
141module-link:: 145module-link::
142 Text which will be used as the formatstring for a hyperlink when a 146 Text which will be used as the formatstring for a hyperlink when a
143 submodule is printed in a directory listing. The arguments for the 147 submodule is printed in a directory listing. The arguments for the
144 formatstring are the path and SHA1 of the submodule commit. Default 148 formatstring are the path and SHA1 of the submodule commit. Default
145 value: "./?repo=%s&page=commit&id=%s" 149 value: "./?repo=%s&page=commit&id=%s"
146 150
147nocache:: 151nocache::
148 If set to the value "1" caching will be disabled. This settings is 152 If set to the value "1" caching will be disabled. This settings is
149 deprecated, and will not be honored starting with cgit-1.0. Default 153 deprecated, and will not be honored starting with cgit-1.0. Default
150 value: "0". 154 value: "0".
151 155
152renamelimit:: 156renamelimit::
153 Maximum number of files to consider when detecting renames. The value 157 Maximum number of files to consider when detecting renames. The value
154 "-1" uses the compiletime value in git (for further info, look at 158 "-1" uses the compiletime value in git (for further info, look at
155 `man git-diff`). Default value: "-1". 159 `man git-diff`). Default value: "-1".
156 160
157repo.group:: 161repo.group::
158 A value for the current repository group, which all repositories 162 A value for the current repository group, which all repositories
159 specified after this setting will inherit. Default value: none. 163 specified after this setting will inherit. Default value: none.
160 164
161robots:: 165robots::
162 Text used as content for the "robots" meta-tag. Default value: 166 Text used as content for the "robots" meta-tag. Default value:
163 "index, nofollow". 167 "index, nofollow".
164 168
165root-desc:: 169root-desc::
166 Text printed below the heading on the repository index page. Default 170 Text printed below the heading on the repository index page. Default
167 value: "a fast webinterface for the git dscm". 171 value: "a fast webinterface for the git dscm".
168 172
169root-readme:: 173root-readme::
170 The content of the file specified with this option will be included 174 The content of the file specified with this option will be included
171 verbatim below the "about" link on the repository index page. Default 175 verbatim below the "about" link on the repository index page. Default
172 value: none. 176 value: none.
173 177
174root-title:: 178root-title::
175 Text printed as heading on the repository index page. Default value: 179 Text printed as heading on the repository index page. Default value:
176 "Git Repository Browser". 180 "Git Repository Browser".
177 181
178snapshots:: 182snapshots::
179 Text which specifies the default (and allowed) set of snapshot formats 183 Text which specifies the default (and allowed) set of snapshot formats
180 supported by cgit. The value is a space-separated list of zero or more 184 supported by cgit. The value is a space-separated list of zero or more
181 of the following values: 185 of the following values:
182 "tar" uncompressed tar-file 186 "tar" uncompressed tar-file
183 "tar.gz"gzip-compressed tar-file 187 "tar.gz"gzip-compressed tar-file
184 "tar.bz2"bzip-compressed tar-file 188 "tar.bz2"bzip-compressed tar-file
185 "zip" zip-file 189 "zip" zip-file
186 Default value: none. 190 Default value: none.
187 191
188summary-branches:: 192summary-branches::
189 Specifies the number of branches to display in the repository "summary" 193 Specifies the number of branches to display in the repository "summary"
190 view. Default value: "10". 194 view. Default value: "10".
191 195
192summary-log:: 196summary-log::
193 Specifies the number of log entries to display in the repository 197 Specifies the number of log entries to display in the repository
194 "summary" view. Default value: "10". 198 "summary" view. Default value: "10".
195 199
196summary-tags:: 200summary-tags::
197 Specifies the number of tags to display in the repository "summary" 201 Specifies the number of tags to display in the repository "summary"
198 view. Default value: "10". 202 view. Default value: "10".
199 203
200virtual-root:: 204virtual-root::
201 Url which, if specified, will be used as root for all cgit links. It 205 Url which, if specified, will be used as root for all cgit links. It
202 will also cause cgit to generate 'virtual urls', i.e. urls like 206 will also cause cgit to generate 'virtual urls', i.e. urls like
203 '/cgit/tree/README' as opposed to '?r=cgit&p=tree&path=README'. Default 207 '/cgit/tree/README' as opposed to '?r=cgit&p=tree&path=README'. Default
204 value: none. 208 value: none.
205 NOTE: cgit has recently learned how to use PATH_INFO to achieve the 209 NOTE: cgit has recently learned how to use PATH_INFO to achieve the
206 same kind of virtual urls, so this option will probably be deprecated. 210 same kind of virtual urls, so this option will probably be deprecated.
207 211
208REPOSITORY SETTINGS 212REPOSITORY SETTINGS
209------------------- 213-------------------
210repo.clone-url:: 214repo.clone-url::
211 A list of space-separated urls which can be used to clone this repo. 215 A list of space-separated urls which can be used to clone this repo.
212 Default value: none. 216 Default value: none.
213 217
214repo.defbranch:: 218repo.defbranch::
215 The name of the default branch for this repository. If no such branch 219 The name of the default branch for this repository. If no such branch
216 exists in the repository, the first branch name (when sorted) is used 220 exists in the repository, the first branch name (when sorted) is used
217 as default instead. Default value: "master". 221 as default instead. Default value: "master".
218 222
219repo.desc:: 223repo.desc::
220 The value to show as repository description. Default value: none. 224 The value to show as repository description. Default value: none.
221 225
222repo.enable-log-filecount:: 226repo.enable-log-filecount::
223 A flag which can be used to disable the global setting 227 A flag which can be used to disable the global setting
224 `enable-log-filecount'. Default value: none. 228 `enable-log-filecount'. Default value: none.
225 229
226repo.enable-log-linecount:: 230repo.enable-log-linecount::
227 A flag which can be used to disable the global setting 231 A flag which can be used to disable the global setting
228 `enable-log-linecount'. Default value: none. 232 `enable-log-linecount'. Default value: none.
229 233
230repo.max-stats:: 234repo.max-stats::
231 Override the default maximum statistics period. Valid values are equal 235 Override the default maximum statistics period. Valid values are equal
232 to the values specified for the global "max-stats" setting. Default 236 to the values specified for the global "max-stats" setting. Default
233 value: none. 237 value: none.
234 238
235repo.name:: 239repo.name::
236 The value to show as repository name. Default value: <repo.url>. 240 The value to show as repository name. Default value: <repo.url>.
237 241
238repo.owner:: 242repo.owner::
239 A value used to identify the owner of the repository. Default value: 243 A value used to identify the owner of the repository. Default value:
240 none. 244 none.
241 245
242repo.path:: 246repo.path::
243 An absolute path to the repository directory. For non-bare repositories 247 An absolute path to the repository directory. For non-bare repositories
244 this is the .git-directory. Default value: none. 248 this is the .git-directory. Default value: none.
245 249
246repo.readme:: 250repo.readme::
247 A path (relative to <repo.path>) which specifies a file to include 251 A path (relative to <repo.path>) which specifies a file to include
248 verbatim as the "About" page for this repo. Default value: none. 252 verbatim as the "About" page for this repo. Default value: none.
249 253
250repo.snapshots:: 254repo.snapshots::
251 A mask of allowed snapshot-formats for this repo, restricted by the 255 A mask of allowed snapshot-formats for this repo, restricted by the
252 "snapshots" global setting. Default value: <snapshots>. 256 "snapshots" global setting. Default value: <snapshots>.
253 257
254repo.url:: 258repo.url::
255 The relative url used to access the repository. This must be the first 259 The relative url used to access the repository. This must be the first
256 setting specified for each repo. Default value: none. 260 setting specified for each repo. Default value: none.
257 261
258 262
259EXAMPLE CGITRC FILE 263EXAMPLE CGITRC FILE
260------------------- 264-------------------
261 265
262.... 266....
263# Enable caching of up to 1000 output entriess 267# Enable caching of up to 1000 output entriess
264cache-size=1000 268cache-size=1000
265 269
266 270
267# Specify some default clone prefixes 271# Specify some default clone prefixes
268clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git 272clone-prefix=git://foobar.com ssh://foobar.com/pub/git http://foobar.com/git
269 273
270# Specify the css url 274# Specify the css url
271css=/css/cgit.css 275css=/css/cgit.css
272 276
273 277
274# Show extra links for each repository on the index page 278# Show extra links for each repository on the index page
275enable-index-links=1 279enable-index-links=1
276 280
277 281
278# Show number of affected files per commit on the log pages 282# Show number of affected files per commit on the log pages
diff --git a/ui-shared.c b/ui-shared.c
index 10be3c0..66d5b82 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -327,386 +327,388 @@ void cgit_log_link(char *name, char *title, char *class, char *head,
327 html_txt(name); 327 html_txt(name);
328 html("</a>"); 328 html("</a>");
329} 329}
330 330
331void cgit_commit_link(char *name, char *title, char *class, char *head, 331void cgit_commit_link(char *name, char *title, char *class, char *head,
332 char *rev) 332 char *rev)
333{ 333{
334 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { 334 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
335 name[ctx.cfg.max_msg_len] = '\0'; 335 name[ctx.cfg.max_msg_len] = '\0';
336 name[ctx.cfg.max_msg_len - 1] = '.'; 336 name[ctx.cfg.max_msg_len - 1] = '.';
337 name[ctx.cfg.max_msg_len - 2] = '.'; 337 name[ctx.cfg.max_msg_len - 2] = '.';
338 name[ctx.cfg.max_msg_len - 3] = '.'; 338 name[ctx.cfg.max_msg_len - 3] = '.';
339 } 339 }
340 reporevlink("commit", name, title, class, head, rev, NULL); 340 reporevlink("commit", name, title, class, head, rev, NULL);
341} 341}
342 342
343void cgit_refs_link(char *name, char *title, char *class, char *head, 343void cgit_refs_link(char *name, char *title, char *class, char *head,
344 char *rev, char *path) 344 char *rev, char *path)
345{ 345{
346 reporevlink("refs", name, title, class, head, rev, path); 346 reporevlink("refs", name, title, class, head, rev, path);
347} 347}
348 348
349void cgit_snapshot_link(char *name, char *title, char *class, char *head, 349void cgit_snapshot_link(char *name, char *title, char *class, char *head,
350 char *rev, char *archivename) 350 char *rev, char *archivename)
351{ 351{
352 reporevlink("snapshot", name, title, class, head, rev, archivename); 352 reporevlink("snapshot", name, title, class, head, rev, archivename);
353} 353}
354 354
355void cgit_diff_link(char *name, char *title, char *class, char *head, 355void cgit_diff_link(char *name, char *title, char *class, char *head,
356 char *new_rev, char *old_rev, char *path) 356 char *new_rev, char *old_rev, char *path)
357{ 357{
358 char *delim; 358 char *delim;
359 359
360 delim = repolink(title, class, "diff", head, path); 360 delim = repolink(title, class, "diff", head, path);
361 if (new_rev && strcmp(new_rev, ctx.qry.head)) { 361 if (new_rev && strcmp(new_rev, ctx.qry.head)) {
362 html(delim); 362 html(delim);
363 html("id="); 363 html("id=");
364 html_url_arg(new_rev); 364 html_url_arg(new_rev);
365 delim = "&amp;"; 365 delim = "&amp;";
366 } 366 }
367 if (old_rev) { 367 if (old_rev) {
368 html(delim); 368 html(delim);
369 html("id2="); 369 html("id2=");
370 html_url_arg(old_rev); 370 html_url_arg(old_rev);
371 } 371 }
372 html("'>"); 372 html("'>");
373 html_txt(name); 373 html_txt(name);
374 html("</a>"); 374 html("</a>");
375} 375}
376 376
377void cgit_patch_link(char *name, char *title, char *class, char *head, 377void cgit_patch_link(char *name, char *title, char *class, char *head,
378 char *rev) 378 char *rev)
379{ 379{
380 reporevlink("patch", name, title, class, head, rev, NULL); 380 reporevlink("patch", name, title, class, head, rev, NULL);
381} 381}
382 382
383void cgit_stats_link(char *name, char *title, char *class, char *head, 383void cgit_stats_link(char *name, char *title, char *class, char *head,
384 char *path) 384 char *path)
385{ 385{
386 reporevlink("stats", name, title, class, head, NULL, path); 386 reporevlink("stats", name, title, class, head, NULL, path);
387} 387}
388 388
389void cgit_object_link(struct object *obj) 389void cgit_object_link(struct object *obj)
390{ 390{
391 char *page, *shortrev, *fullrev, *name; 391 char *page, *shortrev, *fullrev, *name;
392 392
393 fullrev = sha1_to_hex(obj->sha1); 393 fullrev = sha1_to_hex(obj->sha1);
394 shortrev = xstrdup(fullrev); 394 shortrev = xstrdup(fullrev);
395 shortrev[10] = '\0'; 395 shortrev[10] = '\0';
396 if (obj->type == OBJ_COMMIT) { 396 if (obj->type == OBJ_COMMIT) {
397 cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL, 397 cgit_commit_link(fmt("commit %s...", shortrev), NULL, NULL,
398 ctx.qry.head, fullrev); 398 ctx.qry.head, fullrev);
399 return; 399 return;
400 } else if (obj->type == OBJ_TREE) 400 } else if (obj->type == OBJ_TREE)
401 page = "tree"; 401 page = "tree";
402 else if (obj->type == OBJ_TAG) 402 else if (obj->type == OBJ_TAG)
403 page = "tag"; 403 page = "tag";
404 else 404 else
405 page = "blob"; 405 page = "blob";
406 name = fmt("%s %s...", typename(obj->type), shortrev); 406 name = fmt("%s %s...", typename(obj->type), shortrev);
407 reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL); 407 reporevlink(page, name, NULL, NULL, ctx.qry.head, fullrev, NULL);
408} 408}
409 409
410void cgit_print_date(time_t secs, char *format, int local_time) 410void cgit_print_date(time_t secs, char *format, int local_time)
411{ 411{
412 char buf[64]; 412 char buf[64];
413 struct tm *time; 413 struct tm *time;
414 414
415 if (!secs) 415 if (!secs)
416 return; 416 return;
417 if(local_time) 417 if(local_time)
418 time = localtime(&secs); 418 time = localtime(&secs);
419 else 419 else
420 time = gmtime(&secs); 420 time = gmtime(&secs);
421 strftime(buf, sizeof(buf)-1, format, time); 421 strftime(buf, sizeof(buf)-1, format, time);
422 html_txt(buf); 422 html_txt(buf);
423} 423}
424 424
425void cgit_print_age(time_t t, time_t max_relative, char *format) 425void cgit_print_age(time_t t, time_t max_relative, char *format)
426{ 426{
427 time_t now, secs; 427 time_t now, secs;
428 428
429 if (!t) 429 if (!t)
430 return; 430 return;
431 time(&now); 431 time(&now);
432 secs = now - t; 432 secs = now - t;
433 433
434 if (secs > max_relative && max_relative >= 0) { 434 if (secs > max_relative && max_relative >= 0) {
435 cgit_print_date(t, format, ctx.cfg.local_time); 435 cgit_print_date(t, format, ctx.cfg.local_time);
436 return; 436 return;
437 } 437 }
438 438
439 if (secs < TM_HOUR * 2) { 439 if (secs < TM_HOUR * 2) {
440 htmlf("<span class='age-mins'>%.0f min.</span>", 440 htmlf("<span class='age-mins'>%.0f min.</span>",
441 secs * 1.0 / TM_MIN); 441 secs * 1.0 / TM_MIN);
442 return; 442 return;
443 } 443 }
444 if (secs < TM_DAY * 2) { 444 if (secs < TM_DAY * 2) {
445 htmlf("<span class='age-hours'>%.0f hours</span>", 445 htmlf("<span class='age-hours'>%.0f hours</span>",
446 secs * 1.0 / TM_HOUR); 446 secs * 1.0 / TM_HOUR);
447 return; 447 return;
448 } 448 }
449 if (secs < TM_WEEK * 2) { 449 if (secs < TM_WEEK * 2) {
450 htmlf("<span class='age-days'>%.0f days</span>", 450 htmlf("<span class='age-days'>%.0f days</span>",
451 secs * 1.0 / TM_DAY); 451 secs * 1.0 / TM_DAY);
452 return; 452 return;
453 } 453 }
454 if (secs < TM_MONTH * 2) { 454 if (secs < TM_MONTH * 2) {
455 htmlf("<span class='age-weeks'>%.0f weeks</span>", 455 htmlf("<span class='age-weeks'>%.0f weeks</span>",
456 secs * 1.0 / TM_WEEK); 456 secs * 1.0 / TM_WEEK);
457 return; 457 return;
458 } 458 }
459 if (secs < TM_YEAR * 2) { 459 if (secs < TM_YEAR * 2) {
460 htmlf("<span class='age-months'>%.0f months</span>", 460 htmlf("<span class='age-months'>%.0f months</span>",
461 secs * 1.0 / TM_MONTH); 461 secs * 1.0 / TM_MONTH);
462 return; 462 return;
463 } 463 }
464 htmlf("<span class='age-years'>%.0f years</span>", 464 htmlf("<span class='age-years'>%.0f years</span>",
465 secs * 1.0 / TM_YEAR); 465 secs * 1.0 / TM_YEAR);
466} 466}
467 467
468void cgit_print_http_headers(struct cgit_context *ctx) 468void cgit_print_http_headers(struct cgit_context *ctx)
469{ 469{
470 const char *method = getenv("REQUEST_METHOD"); 470 const char *method = getenv("REQUEST_METHOD");
471 471
472 if (ctx->page.status) 472 if (ctx->page.status)
473 htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg); 473 htmlf("Status: %d %s\n", ctx->page.status, ctx->page.statusmsg);
474 if (ctx->page.mimetype && ctx->page.charset) 474 if (ctx->page.mimetype && ctx->page.charset)
475 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, 475 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
476 ctx->page.charset); 476 ctx->page.charset);
477 else if (ctx->page.mimetype) 477 else if (ctx->page.mimetype)
478 htmlf("Content-Type: %s\n", ctx->page.mimetype); 478 htmlf("Content-Type: %s\n", ctx->page.mimetype);
479 if (ctx->page.size) 479 if (ctx->page.size)
480 htmlf("Content-Length: %ld\n", ctx->page.size); 480 htmlf("Content-Length: %ld\n", ctx->page.size);
481 if (ctx->page.filename) 481 if (ctx->page.filename)
482 htmlf("Content-Disposition: inline; filename=\"%s\"\n", 482 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
483 ctx->page.filename); 483 ctx->page.filename);
484 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); 484 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
485 htmlf("Expires: %s\n", http_date(ctx->page.expires)); 485 htmlf("Expires: %s\n", http_date(ctx->page.expires));
486 if (ctx->page.etag) 486 if (ctx->page.etag)
487 htmlf("ETag: \"%s\"\n", ctx->page.etag); 487 htmlf("ETag: \"%s\"\n", ctx->page.etag);
488 html("\n"); 488 html("\n");
489 if (method && !strcmp(method, "HEAD")) 489 if (method && !strcmp(method, "HEAD"))
490 exit(0); 490 exit(0);
491} 491}
492 492
493void cgit_print_docstart(struct cgit_context *ctx) 493void cgit_print_docstart(struct cgit_context *ctx)
494{ 494{
495 char *host = cgit_hosturl(); 495 char *host = cgit_hosturl();
496 html(cgit_doctype); 496 html(cgit_doctype);
497 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); 497 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
498 html("<head>\n"); 498 html("<head>\n");
499 html("<title>"); 499 html("<title>");
500 html_txt(ctx->page.title); 500 html_txt(ctx->page.title);
501 html("</title>\n"); 501 html("</title>\n");
502 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 502 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
503 if (ctx->cfg.robots && *ctx->cfg.robots) 503 if (ctx->cfg.robots && *ctx->cfg.robots)
504 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); 504 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
505 html("<link rel='stylesheet' type='text/css' href='"); 505 html("<link rel='stylesheet' type='text/css' href='");
506 html_attr(ctx->cfg.css); 506 html_attr(ctx->cfg.css);
507 html("'/>\n"); 507 html("'/>\n");
508 if (ctx->cfg.favicon) { 508 if (ctx->cfg.favicon) {
509 html("<link rel='shortcut icon' href='"); 509 html("<link rel='shortcut icon' href='");
510 html_attr(ctx->cfg.favicon); 510 html_attr(ctx->cfg.favicon);
511 html("'/>\n"); 511 html("'/>\n");
512 } 512 }
513 if (host && ctx->repo) { 513 if (host && ctx->repo) {
514 html("<link rel='alternate' title='Atom feed' href='"); 514 html("<link rel='alternate' title='Atom feed' href='");
515 html(cgit_httpscheme()); 515 html(cgit_httpscheme());
516 html_attr(cgit_hosturl()); 516 html_attr(cgit_hosturl());
517 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path, 517 html_attr(cgit_fileurl(ctx->repo->url, "atom", ctx->qry.path,
518 fmt("h=%s", ctx->qry.head))); 518 fmt("h=%s", ctx->qry.head)));
519 html("' type='application/atom+xml'/>"); 519 html("' type='application/atom+xml'/>\n");
520 } 520 }
521 if (ctx->cfg.head_include)
522 html_include(ctx->cfg.head_include);
521 html("</head>\n"); 523 html("</head>\n");
522 html("<body>\n"); 524 html("<body>\n");
523 if (ctx->cfg.header) 525 if (ctx->cfg.header)
524 html_include(ctx->cfg.header); 526 html_include(ctx->cfg.header);
525} 527}
526 528
527void cgit_print_docend() 529void cgit_print_docend()
528{ 530{
529 html("</div>"); 531 html("</div>");
530 if (ctx.cfg.footer) 532 if (ctx.cfg.footer)
531 html_include(ctx.cfg.footer); 533 html_include(ctx.cfg.footer);
532 else { 534 else {
533 htmlf("<div class='footer'>generated by cgit %s at ", 535 htmlf("<div class='footer'>generated by cgit %s at ",
534 cgit_version); 536 cgit_version);
535 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); 537 cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time);
536 html("</div>\n"); 538 html("</div>\n");
537 } 539 }
538 html("</body>\n</html>\n"); 540 html("</body>\n</html>\n");
539} 541}
540 542
541int print_branch_option(const char *refname, const unsigned char *sha1, 543int print_branch_option(const char *refname, const unsigned char *sha1,
542 int flags, void *cb_data) 544 int flags, void *cb_data)
543{ 545{
544 char *name = (char *)refname; 546 char *name = (char *)refname;
545 html_option(name, name, ctx.qry.head); 547 html_option(name, name, ctx.qry.head);
546 return 0; 548 return 0;
547} 549}
548 550
549int print_archive_ref(const char *refname, const unsigned char *sha1, 551int print_archive_ref(const char *refname, const unsigned char *sha1,
550 int flags, void *cb_data) 552 int flags, void *cb_data)
551{ 553{
552 struct tag *tag; 554 struct tag *tag;
553 struct taginfo *info; 555 struct taginfo *info;
554 struct object *obj; 556 struct object *obj;
555 char buf[256], *url; 557 char buf[256], *url;
556 unsigned char fileid[20]; 558 unsigned char fileid[20];
557 int *header = (int *)cb_data; 559 int *header = (int *)cb_data;
558 560
559 if (prefixcmp(refname, "refs/archives")) 561 if (prefixcmp(refname, "refs/archives"))
560 return 0; 562 return 0;
561 strncpy(buf, refname+14, sizeof(buf)); 563 strncpy(buf, refname+14, sizeof(buf));
562 obj = parse_object(sha1); 564 obj = parse_object(sha1);
563 if (!obj) 565 if (!obj)
564 return 1; 566 return 1;
565 if (obj->type == OBJ_TAG) { 567 if (obj->type == OBJ_TAG) {
566 tag = lookup_tag(sha1); 568 tag = lookup_tag(sha1);
567 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) 569 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
568 return 0; 570 return 0;
569 hashcpy(fileid, tag->tagged->sha1); 571 hashcpy(fileid, tag->tagged->sha1);
570 } else if (obj->type != OBJ_BLOB) { 572 } else if (obj->type != OBJ_BLOB) {
571 return 0; 573 return 0;
572 } else { 574 } else {
573 hashcpy(fileid, sha1); 575 hashcpy(fileid, sha1);
574 } 576 }
575 if (!*header) { 577 if (!*header) {
576 html("<h1>download</h1>\n"); 578 html("<h1>download</h1>\n");
577 *header = 1; 579 *header = 1;
578 } 580 }
579 url = cgit_pageurl(ctx.qry.repo, "blob", 581 url = cgit_pageurl(ctx.qry.repo, "blob",
580 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid), 582 fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
581 buf)); 583 buf));
582 html_link_open(url, NULL, "menu"); 584 html_link_open(url, NULL, "menu");
583 html_txt(strlpart(buf, 20)); 585 html_txt(strlpart(buf, 20));
584 html_link_close(); 586 html_link_close();
585 return 0; 587 return 0;
586} 588}
587 589
588void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page) 590void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page)
589{ 591{
590 char *url; 592 char *url;
591 593
592 if (!ctx.cfg.virtual_root) { 594 if (!ctx.cfg.virtual_root) {
593 url = fmt("%s/%s", ctx.qry.repo, page); 595 url = fmt("%s/%s", ctx.qry.repo, page);
594 if (ctx.qry.path) 596 if (ctx.qry.path)
595 url = fmt("%s/%s", url, ctx.qry.path); 597 url = fmt("%s/%s", url, ctx.qry.path);
596 html_hidden("url", url); 598 html_hidden("url", url);
597 } 599 }
598 600
599 if (incl_head && ctx.qry.head && ctx.repo->defbranch && 601 if (incl_head && ctx.qry.head && ctx.repo->defbranch &&
600 strcmp(ctx.qry.head, ctx.repo->defbranch)) 602 strcmp(ctx.qry.head, ctx.repo->defbranch))
601 html_hidden("h", ctx.qry.head); 603 html_hidden("h", ctx.qry.head);
602 604
603 if (ctx.qry.sha1) 605 if (ctx.qry.sha1)
604 html_hidden("id", ctx.qry.sha1); 606 html_hidden("id", ctx.qry.sha1);
605 if (ctx.qry.sha2) 607 if (ctx.qry.sha2)
606 html_hidden("id2", ctx.qry.sha2); 608 html_hidden("id2", ctx.qry.sha2);
607 if (ctx.qry.showmsg) 609 if (ctx.qry.showmsg)
608 html_hidden("showmsg", "1"); 610 html_hidden("showmsg", "1");
609 611
610 if (incl_search) { 612 if (incl_search) {
611 if (ctx.qry.grep) 613 if (ctx.qry.grep)
612 html_hidden("qt", ctx.qry.grep); 614 html_hidden("qt", ctx.qry.grep);
613 if (ctx.qry.search) 615 if (ctx.qry.search)
614 html_hidden("q", ctx.qry.search); 616 html_hidden("q", ctx.qry.search);
615 } 617 }
616} 618}
617 619
618const char *fallback_cmd = "repolist"; 620const char *fallback_cmd = "repolist";
619 621
620char *hc(struct cgit_cmd *cmd, const char *page) 622char *hc(struct cgit_cmd *cmd, const char *page)
621{ 623{
622 return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active"); 624 return (strcmp(cmd ? cmd->name : fallback_cmd, page) ? NULL : "active");
623} 625}
624 626
625void cgit_print_pageheader(struct cgit_context *ctx) 627void cgit_print_pageheader(struct cgit_context *ctx)
626{ 628{
627 struct cgit_cmd *cmd = cgit_get_cmd(ctx); 629 struct cgit_cmd *cmd = cgit_get_cmd(ctx);
628 630
629 if (!cmd && ctx->repo) 631 if (!cmd && ctx->repo)
630 fallback_cmd = "summary"; 632 fallback_cmd = "summary";
631 633
632 html("<table id='header'>\n"); 634 html("<table id='header'>\n");
633 html("<tr>\n"); 635 html("<tr>\n");
634 html("<td class='logo' rowspan='2'><a href='"); 636 html("<td class='logo' rowspan='2'><a href='");
635 if (ctx->cfg.logo_link) 637 if (ctx->cfg.logo_link)
636 html_attr(ctx->cfg.logo_link); 638 html_attr(ctx->cfg.logo_link);
637 else 639 else
638 html_attr(cgit_rooturl()); 640 html_attr(cgit_rooturl());
639 html("'><img src='"); 641 html("'><img src='");
640 html_attr(ctx->cfg.logo); 642 html_attr(ctx->cfg.logo);
641 html("' alt='cgit logo'/></a></td>\n"); 643 html("' alt='cgit logo'/></a></td>\n");
642 644
643 html("<td class='main'>"); 645 html("<td class='main'>");
644 if (ctx->repo) { 646 if (ctx->repo) {
645 cgit_index_link("index", NULL, NULL, NULL, 0); 647 cgit_index_link("index", NULL, NULL, NULL, 0);
646 html(" : "); 648 html(" : ");
647 cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL); 649 cgit_summary_link(ctx->repo->name, ctx->repo->name, NULL, NULL);
648 html("</td><td class='form'>"); 650 html("</td><td class='form'>");
649 html("<form method='get' action=''>\n"); 651 html("<form method='get' action=''>\n");
650 cgit_add_hidden_formfields(0, 1, ctx->qry.page); 652 cgit_add_hidden_formfields(0, 1, ctx->qry.page);
651 html("<select name='h' onchange='this.form.submit();'>\n"); 653 html("<select name='h' onchange='this.form.submit();'>\n");
652 for_each_branch_ref(print_branch_option, ctx->qry.head); 654 for_each_branch_ref(print_branch_option, ctx->qry.head);
653 html("</select> "); 655 html("</select> ");
654 html("<input type='submit' name='' value='switch'/>"); 656 html("<input type='submit' name='' value='switch'/>");
655 html("</form>"); 657 html("</form>");
656 } else 658 } else
657 html_txt(ctx->cfg.root_title); 659 html_txt(ctx->cfg.root_title);
658 html("</td></tr>\n"); 660 html("</td></tr>\n");
659 661
660 html("<tr><td class='sub'>"); 662 html("<tr><td class='sub'>");
661 if (ctx->repo) { 663 if (ctx->repo) {
662 html_txt(ctx->repo->desc); 664 html_txt(ctx->repo->desc);
663 html("</td><td class='sub right'>"); 665 html("</td><td class='sub right'>");
664 html_txt(ctx->repo->owner); 666 html_txt(ctx->repo->owner);
665 } else { 667 } else {
666 if (ctx->cfg.root_desc) 668 if (ctx->cfg.root_desc)
667 html_txt(ctx->cfg.root_desc); 669 html_txt(ctx->cfg.root_desc);
668 else if (ctx->cfg.index_info) 670 else if (ctx->cfg.index_info)
669 html_include(ctx->cfg.index_info); 671 html_include(ctx->cfg.index_info);
670 } 672 }
671 html("</td></tr></table>\n"); 673 html("</td></tr></table>\n");
672 674
673 html("<table class='tabs'><tr><td>\n"); 675 html("<table class='tabs'><tr><td>\n");
674 if (ctx->repo) { 676 if (ctx->repo) {
675 cgit_summary_link("summary", NULL, hc(cmd, "summary"), 677 cgit_summary_link("summary", NULL, hc(cmd, "summary"),
676 ctx->qry.head); 678 ctx->qry.head);
677 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, 679 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
678 ctx->qry.sha1, NULL); 680 ctx->qry.sha1, NULL);
679 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, 681 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
680 NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg); 682 NULL, NULL, 0, NULL, NULL, ctx->qry.showmsg);
681 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, 683 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
682 ctx->qry.sha1, NULL); 684 ctx->qry.sha1, NULL);
683 cgit_commit_link("commit", NULL, hc(cmd, "commit"), 685 cgit_commit_link("commit", NULL, hc(cmd, "commit"),
684 ctx->qry.head, ctx->qry.sha1); 686 ctx->qry.head, ctx->qry.sha1);
685 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, 687 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head,
686 ctx->qry.sha1, ctx->qry.sha2, NULL); 688 ctx->qry.sha1, ctx->qry.sha2, NULL);
687 if (ctx->repo->max_stats) 689 if (ctx->repo->max_stats)
688 cgit_stats_link("stats", NULL, hc(cmd, "stats"), 690 cgit_stats_link("stats", NULL, hc(cmd, "stats"),
689 ctx->qry.head, NULL); 691 ctx->qry.head, NULL);
690 if (ctx->repo->readme) 692 if (ctx->repo->readme)
691 reporevlink("about", "about", NULL, 693 reporevlink("about", "about", NULL,
692 hc(cmd, "about"), ctx->qry.head, NULL, 694 hc(cmd, "about"), ctx->qry.head, NULL,
693 NULL); 695 NULL);
694 html("</td><td class='form'>"); 696 html("</td><td class='form'>");
695 html("<form class='right' method='get' action='"); 697 html("<form class='right' method='get' action='");
696 if (ctx->cfg.virtual_root) 698 if (ctx->cfg.virtual_root)
697 html_url_path(cgit_fileurl(ctx->qry.repo, "log", 699 html_url_path(cgit_fileurl(ctx->qry.repo, "log",
698 ctx->qry.path, NULL)); 700 ctx->qry.path, NULL));
699 html("'>\n"); 701 html("'>\n");
700 cgit_add_hidden_formfields(1, 0, "log"); 702 cgit_add_hidden_formfields(1, 0, "log");
701 html("<select name='qt'>\n"); 703 html("<select name='qt'>\n");
702 html_option("grep", "log msg", ctx->qry.grep); 704 html_option("grep", "log msg", ctx->qry.grep);
703 html_option("author", "author", ctx->qry.grep); 705 html_option("author", "author", ctx->qry.grep);
704 html_option("committer", "committer", ctx->qry.grep); 706 html_option("committer", "committer", ctx->qry.grep);
705 html("</select>\n"); 707 html("</select>\n");
706 html("<input class='txt' type='text' size='10' name='q' value='"); 708 html("<input class='txt' type='text' size='10' name='q' value='");
707 html_attr(ctx->qry.search); 709 html_attr(ctx->qry.search);
708 html("'/>\n"); 710 html("'/>\n");
709 html("<input type='submit' value='search'/>\n"); 711 html("<input type='submit' value='search'/>\n");
710 html("</form>\n"); 712 html("</form>\n");
711 } else { 713 } else {
712 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); 714 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0);