author | Lars Hjemli <hjemli@gmail.com> | 2009-08-10 07:20:17 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-10 07:20:17 (UTC) |
commit | 8b2252b0b61617e9de9d9e9ba743881ad62523af (patch) (unidiff) | |
tree | 2d0f02d2c4a213644a1031a88af6578c032edbe6 /cgit.c | |
parent | 60a26272e0ca529407fe6b613f061f04ba585d53 (diff) | |
download | cgit-8b2252b0b61617e9de9d9e9ba743881ad62523af.zip cgit-8b2252b0b61617e9de9d9e9ba743881ad62523af.tar.gz cgit-8b2252b0b61617e9de9d9e9ba743881ad62523af.tar.bz2 |
ui-shared: add support for NO_HTTP=1/--nohttp
cgit_print_http_headers() used to do nothing if 'embedded' was
specified in cgitrc, but that was wrong - we never want to skip the
headers when invoked as a CGI app. Sadly, there's no easy way to
detect if we're invoked as a CGI app or if we're invoked by another
CGI app, so for the latter case cgit needs to be invoked with either
--nohttp on the command line or NO_HTTP=1 in the environment.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -232,48 +232,49 @@ static void prepare_context(struct cgit_context *ctx) | |||
232 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; | 232 | ctx->cfg.cache_root = CGIT_CACHE_ROOT; |
233 | ctx->cfg.cache_root_ttl = 5; | 233 | ctx->cfg.cache_root_ttl = 5; |
234 | ctx->cfg.cache_static_ttl = -1; | 234 | ctx->cfg.cache_static_ttl = -1; |
235 | ctx->cfg.css = "/cgit.css"; | 235 | ctx->cfg.css = "/cgit.css"; |
236 | ctx->cfg.logo = "/git-logo.png"; | 236 | ctx->cfg.logo = "/git-logo.png"; |
237 | ctx->cfg.local_time = 0; | 237 | ctx->cfg.local_time = 0; |
238 | ctx->cfg.max_repo_count = 50; | 238 | ctx->cfg.max_repo_count = 50; |
239 | ctx->cfg.max_commit_count = 50; | 239 | ctx->cfg.max_commit_count = 50; |
240 | ctx->cfg.max_lock_attempts = 5; | 240 | ctx->cfg.max_lock_attempts = 5; |
241 | ctx->cfg.max_msg_len = 80; | 241 | ctx->cfg.max_msg_len = 80; |
242 | ctx->cfg.max_repodesc_len = 80; | 242 | ctx->cfg.max_repodesc_len = 80; |
243 | ctx->cfg.max_stats = 0; | 243 | ctx->cfg.max_stats = 0; |
244 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; | 244 | ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; |
245 | ctx->cfg.renamelimit = -1; | 245 | ctx->cfg.renamelimit = -1; |
246 | ctx->cfg.robots = "index, nofollow"; | 246 | ctx->cfg.robots = "index, nofollow"; |
247 | ctx->cfg.root_title = "Git repository browser"; | 247 | ctx->cfg.root_title = "Git repository browser"; |
248 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; | 248 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; |
249 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; | 249 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
250 | ctx->cfg.summary_branches = 10; | 250 | ctx->cfg.summary_branches = 10; |
251 | ctx->cfg.summary_log = 10; | 251 | ctx->cfg.summary_log = 10; |
252 | ctx->cfg.summary_tags = 10; | 252 | ctx->cfg.summary_tags = 10; |
253 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); | 253 | ctx->env.cgit_config = xstrdupn(getenv("CGIT_CONFIG")); |
254 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); | 254 | ctx->env.http_host = xstrdupn(getenv("HTTP_HOST")); |
255 | ctx->env.https = xstrdupn(getenv("HTTPS")); | 255 | ctx->env.https = xstrdupn(getenv("HTTPS")); |
256 | ctx->env.no_http = xstrdupn(getenv("NO_HTTP")); | ||
256 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); | 257 | ctx->env.path_info = xstrdupn(getenv("PATH_INFO")); |
257 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); | 258 | ctx->env.query_string = xstrdupn(getenv("QUERY_STRING")); |
258 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); | 259 | ctx->env.request_method = xstrdupn(getenv("REQUEST_METHOD")); |
259 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); | 260 | ctx->env.script_name = xstrdupn(getenv("SCRIPT_NAME")); |
260 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); | 261 | ctx->env.server_name = xstrdupn(getenv("SERVER_NAME")); |
261 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); | 262 | ctx->env.server_port = xstrdupn(getenv("SERVER_PORT")); |
262 | ctx->page.mimetype = "text/html"; | 263 | ctx->page.mimetype = "text/html"; |
263 | ctx->page.charset = PAGE_ENCODING; | 264 | ctx->page.charset = PAGE_ENCODING; |
264 | ctx->page.filename = NULL; | 265 | ctx->page.filename = NULL; |
265 | ctx->page.size = 0; | 266 | ctx->page.size = 0; |
266 | ctx->page.modified = time(NULL); | 267 | ctx->page.modified = time(NULL); |
267 | ctx->page.expires = ctx->page.modified; | 268 | ctx->page.expires = ctx->page.modified; |
268 | ctx->page.etag = NULL; | 269 | ctx->page.etag = NULL; |
269 | memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list)); | 270 | memset(&ctx->cfg.mimetypes, 0, sizeof(struct string_list)); |
270 | if (ctx->env.script_name) | 271 | if (ctx->env.script_name) |
271 | ctx->cfg.script_name = ctx->env.script_name; | 272 | ctx->cfg.script_name = ctx->env.script_name; |
272 | if (ctx->env.query_string) | 273 | if (ctx->env.query_string) |
273 | ctx->qry.raw = ctx->env.query_string; | 274 | ctx->qry.raw = ctx->env.query_string; |
274 | if (!ctx->env.cgit_config) | 275 | if (!ctx->env.cgit_config) |
275 | ctx->env.cgit_config = CGIT_CONFIG; | 276 | ctx->env.cgit_config = CGIT_CONFIG; |
276 | } | 277 | } |
277 | 278 | ||
278 | struct refmatch { | 279 | struct refmatch { |
279 | char *req_ref; | 280 | char *req_ref; |
@@ -424,48 +425,51 @@ void print_repo(struct cgit_repo *repo) | |||
424 | printf("\n"); | 425 | printf("\n"); |
425 | } | 426 | } |
426 | 427 | ||
427 | void print_repolist(struct cgit_repolist *list) | 428 | void print_repolist(struct cgit_repolist *list) |
428 | { | 429 | { |
429 | int i; | 430 | int i; |
430 | 431 | ||
431 | for(i = 0; i < list->count; i++) | 432 | for(i = 0; i < list->count; i++) |
432 | print_repo(&list->repos[i]); | 433 | print_repo(&list->repos[i]); |
433 | } | 434 | } |
434 | 435 | ||
435 | 436 | ||
436 | static void cgit_parse_args(int argc, const char **argv) | 437 | static void cgit_parse_args(int argc, const char **argv) |
437 | { | 438 | { |
438 | int i; | 439 | int i; |
439 | int scan = 0; | 440 | int scan = 0; |
440 | 441 | ||
441 | for (i = 1; i < argc; i++) { | 442 | for (i = 1; i < argc; i++) { |
442 | if (!strncmp(argv[i], "--cache=", 8)) { | 443 | if (!strncmp(argv[i], "--cache=", 8)) { |
443 | ctx.cfg.cache_root = xstrdup(argv[i]+8); | 444 | ctx.cfg.cache_root = xstrdup(argv[i]+8); |
444 | } | 445 | } |
445 | if (!strcmp(argv[i], "--nocache")) { | 446 | if (!strcmp(argv[i], "--nocache")) { |
446 | ctx.cfg.nocache = 1; | 447 | ctx.cfg.nocache = 1; |
447 | } | 448 | } |
449 | if (!strcmp(argv[i], "--nohttp")) { | ||
450 | ctx.env.no_http = "1"; | ||
451 | } | ||
448 | if (!strncmp(argv[i], "--query=", 8)) { | 452 | if (!strncmp(argv[i], "--query=", 8)) { |
449 | ctx.qry.raw = xstrdup(argv[i]+8); | 453 | ctx.qry.raw = xstrdup(argv[i]+8); |
450 | } | 454 | } |
451 | if (!strncmp(argv[i], "--repo=", 7)) { | 455 | if (!strncmp(argv[i], "--repo=", 7)) { |
452 | ctx.qry.repo = xstrdup(argv[i]+7); | 456 | ctx.qry.repo = xstrdup(argv[i]+7); |
453 | } | 457 | } |
454 | if (!strncmp(argv[i], "--page=", 7)) { | 458 | if (!strncmp(argv[i], "--page=", 7)) { |
455 | ctx.qry.page = xstrdup(argv[i]+7); | 459 | ctx.qry.page = xstrdup(argv[i]+7); |
456 | } | 460 | } |
457 | if (!strncmp(argv[i], "--head=", 7)) { | 461 | if (!strncmp(argv[i], "--head=", 7)) { |
458 | ctx.qry.head = xstrdup(argv[i]+7); | 462 | ctx.qry.head = xstrdup(argv[i]+7); |
459 | ctx.qry.has_symref = 1; | 463 | ctx.qry.has_symref = 1; |
460 | } | 464 | } |
461 | if (!strncmp(argv[i], "--sha1=", 7)) { | 465 | if (!strncmp(argv[i], "--sha1=", 7)) { |
462 | ctx.qry.sha1 = xstrdup(argv[i]+7); | 466 | ctx.qry.sha1 = xstrdup(argv[i]+7); |
463 | ctx.qry.has_sha1 = 1; | 467 | ctx.qry.has_sha1 = 1; |
464 | } | 468 | } |
465 | if (!strncmp(argv[i], "--ofs=", 6)) { | 469 | if (!strncmp(argv[i], "--ofs=", 6)) { |
466 | ctx.qry.ofs = atoi(argv[i]+6); | 470 | ctx.qry.ofs = atoi(argv[i]+6); |
467 | } | 471 | } |
468 | if (!strncmp(argv[i], "--scan-tree=", 12)) { | 472 | if (!strncmp(argv[i], "--scan-tree=", 12)) { |
469 | scan++; | 473 | scan++; |
470 | scan_tree(argv[i] + 12); | 474 | scan_tree(argv[i] + 12); |
471 | } | 475 | } |