summaryrefslogtreecommitdiffabout
path: root/cgit.c
authorLars Hjemli <hjemli@gmail.com>2009-08-17 08:17:23 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-08-17 08:17:23 (UTC)
commitcb92d05b6b729cd0e219b43d7a79aff832a9c1ac (patch) (unidiff)
tree3324266f779b12bcf9f80ad5ee2f18f535832549 /cgit.c
parent0730ee6ea4af45e29e7c74d4a32bde9d2d6c8104 (diff)
parent435a1da8d1c43bff2f2ccd5649ea8510eec0b2af (diff)
downloadcgit-cb92d05b6b729cd0e219b43d7a79aff832a9c1ac.zip
cgit-cb92d05b6b729cd0e219b43d7a79aff832a9c1ac.tar.gz
cgit-cb92d05b6b729cd0e219b43d7a79aff832a9c1ac.tar.bz2
Merge branch 'stable'
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index 66dd140..5816f3d 100644
--- a/cgit.c
+++ b/cgit.c
@@ -132,96 +132,99 @@ void config_cb(const char *name, const char *value)
132 ctx.cfg.clone_prefix = xstrdup(value); 132 ctx.cfg.clone_prefix = xstrdup(value);
133 else if (!strcmp(name, "local-time")) 133 else if (!strcmp(name, "local-time"))
134 ctx.cfg.local_time = atoi(value); 134 ctx.cfg.local_time = atoi(value);
135 else if (!prefixcmp(name, "mimetype.")) 135 else if (!prefixcmp(name, "mimetype."))
136 add_mimetype(name + 9, value); 136 add_mimetype(name + 9, value);
137 else if (!strcmp(name, "repo.group")) 137 else if (!strcmp(name, "repo.group"))
138 ctx.cfg.repo_group = xstrdup(value); 138 ctx.cfg.repo_group = xstrdup(value);
139 else if (!strcmp(name, "repo.url")) 139 else if (!strcmp(name, "repo.url"))
140 ctx.repo = cgit_add_repo(value); 140 ctx.repo = cgit_add_repo(value);
141 else if (!strcmp(name, "repo.name")) 141 else if (!strcmp(name, "repo.name"))
142 ctx.repo->name = xstrdup(value); 142 ctx.repo->name = xstrdup(value);
143 else if (ctx.repo && !strcmp(name, "repo.path")) 143 else if (ctx.repo && !strcmp(name, "repo.path"))
144 ctx.repo->path = trim_end(value, '/'); 144 ctx.repo->path = trim_end(value, '/');
145 else if (ctx.repo && !strcmp(name, "repo.clone-url")) 145 else if (ctx.repo && !strcmp(name, "repo.clone-url"))
146 ctx.repo->clone_url = xstrdup(value); 146 ctx.repo->clone_url = xstrdup(value);
147 else if (ctx.repo && !strcmp(name, "repo.desc")) 147 else if (ctx.repo && !strcmp(name, "repo.desc"))
148 ctx.repo->desc = xstrdup(value); 148 ctx.repo->desc = xstrdup(value);
149 else if (ctx.repo && !strcmp(name, "repo.owner")) 149 else if (ctx.repo && !strcmp(name, "repo.owner"))
150 ctx.repo->owner = xstrdup(value); 150 ctx.repo->owner = xstrdup(value);
151 else if (ctx.repo && !strcmp(name, "repo.defbranch")) 151 else if (ctx.repo && !strcmp(name, "repo.defbranch"))
152 ctx.repo->defbranch = xstrdup(value); 152 ctx.repo->defbranch = xstrdup(value);
153 else if (ctx.repo && !strcmp(name, "repo.snapshots")) 153 else if (ctx.repo && !strcmp(name, "repo.snapshots"))
154 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */ 154 ctx.repo->snapshots = ctx.cfg.snapshots & cgit_parse_snapshots_mask(value); /* XXX: &? */
155 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount")) 155 else if (ctx.repo && !strcmp(name, "repo.enable-log-filecount"))
156 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value); 156 ctx.repo->enable_log_filecount = ctx.cfg.enable_log_filecount * atoi(value);
157 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount")) 157 else if (ctx.repo && !strcmp(name, "repo.enable-log-linecount"))
158 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value); 158 ctx.repo->enable_log_linecount = ctx.cfg.enable_log_linecount * atoi(value);
159 else if (ctx.repo && !strcmp(name, "repo.max-stats")) 159 else if (ctx.repo && !strcmp(name, "repo.max-stats"))
160 ctx.repo->max_stats = cgit_find_stats_period(value, NULL); 160 ctx.repo->max_stats = cgit_find_stats_period(value, NULL);
161 else if (ctx.repo && !strcmp(name, "repo.module-link")) 161 else if (ctx.repo && !strcmp(name, "repo.module-link"))
162 ctx.repo->module_link= xstrdup(value); 162 ctx.repo->module_link= xstrdup(value);
163 else if (ctx.repo && !strcmp(name, "repo.about-filter")) 163 else if (ctx.repo && !strcmp(name, "repo.about-filter"))
164 ctx.repo->about_filter = new_filter(value, 0); 164 ctx.repo->about_filter = new_filter(value, 0);
165 else if (ctx.repo && !strcmp(name, "repo.commit-filter")) 165 else if (ctx.repo && !strcmp(name, "repo.commit-filter"))
166 ctx.repo->commit_filter = new_filter(value, 0); 166 ctx.repo->commit_filter = new_filter(value, 0);
167 else if (ctx.repo && !strcmp(name, "repo.source-filter")) 167 else if (ctx.repo && !strcmp(name, "repo.source-filter"))
168 ctx.repo->source_filter = new_filter(value, 1); 168 ctx.repo->source_filter = new_filter(value, 1);
169 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) { 169 else if (ctx.repo && !strcmp(name, "repo.readme") && value != NULL) {
170 if (*value == '/') 170 if (*value == '/')
171 ctx.repo->readme = xstrdup(value); 171 ctx.repo->readme = xstrdup(value);
172 else 172 else
173 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value)); 173 ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
174 } else if (!strcmp(name, "include")) 174 } else if (!strcmp(name, "include"))
175 parse_configfile(value, config_cb); 175 parse_configfile(value, config_cb);
176} 176}
177 177
178static void querystring_cb(const char *name, const char *value) 178static void querystring_cb(const char *name, const char *value)
179{ 179{
180 if (!value)
181 value = "";
182
180 if (!strcmp(name,"r")) { 183 if (!strcmp(name,"r")) {
181 ctx.qry.repo = xstrdup(value); 184 ctx.qry.repo = xstrdup(value);
182 ctx.repo = cgit_get_repoinfo(value); 185 ctx.repo = cgit_get_repoinfo(value);
183 } else if (!strcmp(name, "p")) { 186 } else if (!strcmp(name, "p")) {
184 ctx.qry.page = xstrdup(value); 187 ctx.qry.page = xstrdup(value);
185 } else if (!strcmp(name, "url")) { 188 } else if (!strcmp(name, "url")) {
186 ctx.qry.url = xstrdup(value); 189 ctx.qry.url = xstrdup(value);
187 cgit_parse_url(value); 190 cgit_parse_url(value);
188 } else if (!strcmp(name, "qt")) { 191 } else if (!strcmp(name, "qt")) {
189 ctx.qry.grep = xstrdup(value); 192 ctx.qry.grep = xstrdup(value);
190 } else if (!strcmp(name, "q")) { 193 } else if (!strcmp(name, "q")) {
191 ctx.qry.search = xstrdup(value); 194 ctx.qry.search = xstrdup(value);
192 } else if (!strcmp(name, "h")) { 195 } else if (!strcmp(name, "h")) {
193 ctx.qry.head = xstrdup(value); 196 ctx.qry.head = xstrdup(value);
194 ctx.qry.has_symref = 1; 197 ctx.qry.has_symref = 1;
195 } else if (!strcmp(name, "id")) { 198 } else if (!strcmp(name, "id")) {
196 ctx.qry.sha1 = xstrdup(value); 199 ctx.qry.sha1 = xstrdup(value);
197 ctx.qry.has_sha1 = 1; 200 ctx.qry.has_sha1 = 1;
198 } else if (!strcmp(name, "id2")) { 201 } else if (!strcmp(name, "id2")) {
199 ctx.qry.sha2 = xstrdup(value); 202 ctx.qry.sha2 = xstrdup(value);
200 ctx.qry.has_sha1 = 1; 203 ctx.qry.has_sha1 = 1;
201 } else if (!strcmp(name, "ofs")) { 204 } else if (!strcmp(name, "ofs")) {
202 ctx.qry.ofs = atoi(value); 205 ctx.qry.ofs = atoi(value);
203 } else if (!strcmp(name, "path")) { 206 } else if (!strcmp(name, "path")) {
204 ctx.qry.path = trim_end(value, '/'); 207 ctx.qry.path = trim_end(value, '/');
205 } else if (!strcmp(name, "name")) { 208 } else if (!strcmp(name, "name")) {
206 ctx.qry.name = xstrdup(value); 209 ctx.qry.name = xstrdup(value);
207 } else if (!strcmp(name, "mimetype")) { 210 } else if (!strcmp(name, "mimetype")) {
208 ctx.qry.mimetype = xstrdup(value); 211 ctx.qry.mimetype = xstrdup(value);
209 } else if (!strcmp(name, "s")){ 212 } else if (!strcmp(name, "s")){
210 ctx.qry.sort = xstrdup(value); 213 ctx.qry.sort = xstrdup(value);
211 } else if (!strcmp(name, "showmsg")) { 214 } else if (!strcmp(name, "showmsg")) {
212 ctx.qry.showmsg = atoi(value); 215 ctx.qry.showmsg = atoi(value);
213 } else if (!strcmp(name, "period")) { 216 } else if (!strcmp(name, "period")) {
214 ctx.qry.period = xstrdup(value); 217 ctx.qry.period = xstrdup(value);
215 } 218 }
216} 219}
217 220
218char *xstrdupn(const char *str) 221char *xstrdupn(const char *str)
219{ 222{
220 return (str ? xstrdup(str) : NULL); 223 return (str ? xstrdup(str) : NULL);
221} 224}
222 225
223static void prepare_context(struct cgit_context *ctx) 226static void prepare_context(struct cgit_context *ctx)
224{ 227{
225 memset(ctx, 0, sizeof(ctx)); 228 memset(ctx, 0, sizeof(ctx));
226 ctx->cfg.agefile = "info/web/last-modified"; 229 ctx->cfg.agefile = "info/web/last-modified";
227 ctx->cfg.nocache = 0; 230 ctx->cfg.nocache = 0;