summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c1
-rw-r--r--cgit.h1
-rw-r--r--ui-plain.c1
-rw-r--r--ui-shared.c2
4 files changed, 5 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index 64d95f9..411e421 100644
--- a/cgit.c
+++ b/cgit.c
@@ -185,48 +185,49 @@ static void prepare_context(struct cgit_context *ctx)
185 ctx->cfg.css = "/cgit.css"; 185 ctx->cfg.css = "/cgit.css";
186 ctx->cfg.logo = "/git-logo.png"; 186 ctx->cfg.logo = "/git-logo.png";
187 ctx->cfg.local_time = 0; 187 ctx->cfg.local_time = 0;
188 ctx->cfg.max_repo_count = 50; 188 ctx->cfg.max_repo_count = 50;
189 ctx->cfg.max_commit_count = 50; 189 ctx->cfg.max_commit_count = 50;
190 ctx->cfg.max_lock_attempts = 5; 190 ctx->cfg.max_lock_attempts = 5;
191 ctx->cfg.max_msg_len = 80; 191 ctx->cfg.max_msg_len = 80;
192 ctx->cfg.max_repodesc_len = 80; 192 ctx->cfg.max_repodesc_len = 80;
193 ctx->cfg.max_stats = 0; 193 ctx->cfg.max_stats = 0;
194 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 194 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
195 ctx->cfg.renamelimit = -1; 195 ctx->cfg.renamelimit = -1;
196 ctx->cfg.robots = "index, nofollow"; 196 ctx->cfg.robots = "index, nofollow";
197 ctx->cfg.root_title = "Git repository browser"; 197 ctx->cfg.root_title = "Git repository browser";
198 ctx->cfg.root_desc = "a fast webinterface for the git dscm"; 198 ctx->cfg.root_desc = "a fast webinterface for the git dscm";
199 ctx->cfg.script_name = CGIT_SCRIPT_NAME; 199 ctx->cfg.script_name = CGIT_SCRIPT_NAME;
200 ctx->cfg.summary_branches = 10; 200 ctx->cfg.summary_branches = 10;
201 ctx->cfg.summary_log = 10; 201 ctx->cfg.summary_log = 10;
202 ctx->cfg.summary_tags = 10; 202 ctx->cfg.summary_tags = 10;
203 ctx->page.mimetype = "text/html"; 203 ctx->page.mimetype = "text/html";
204 ctx->page.charset = PAGE_ENCODING; 204 ctx->page.charset = PAGE_ENCODING;
205 ctx->page.filename = NULL; 205 ctx->page.filename = NULL;
206 ctx->page.size = 0; 206 ctx->page.size = 0;
207 ctx->page.modified = time(NULL); 207 ctx->page.modified = time(NULL);
208 ctx->page.expires = ctx->page.modified; 208 ctx->page.expires = ctx->page.modified;
209 ctx->page.etag = NULL;
209} 210}
210 211
211struct refmatch { 212struct refmatch {
212 char *req_ref; 213 char *req_ref;
213 char *first_ref; 214 char *first_ref;
214 int match; 215 int match;
215}; 216};
216 217
217int find_current_ref(const char *refname, const unsigned char *sha1, 218int find_current_ref(const char *refname, const unsigned char *sha1,
218 int flags, void *cb_data) 219 int flags, void *cb_data)
219{ 220{
220 struct refmatch *info; 221 struct refmatch *info;
221 222
222 info = (struct refmatch *)cb_data; 223 info = (struct refmatch *)cb_data;
223 if (!strcmp(refname, info->req_ref)) 224 if (!strcmp(refname, info->req_ref))
224 info->match = 1; 225 info->match = 1;
225 if (!info->first_ref) 226 if (!info->first_ref)
226 info->first_ref = xstrdup(refname); 227 info->first_ref = xstrdup(refname);
227 return info->match; 228 return info->match;
228} 229}
229 230
230char *find_default_branch(struct cgit_repo *repo) 231char *find_default_branch(struct cgit_repo *repo)
231{ 232{
232 struct refmatch info; 233 struct refmatch info;
diff --git a/cgit.h b/cgit.h
index 5f7af51..2bfbe7b 100644
--- a/cgit.h
+++ b/cgit.h
@@ -159,48 +159,49 @@ struct cgit_config {
159 int enable_log_filecount; 159 int enable_log_filecount;
160 int enable_log_linecount; 160 int enable_log_linecount;
161 int local_time; 161 int local_time;
162 int max_repo_count; 162 int max_repo_count;
163 int max_commit_count; 163 int max_commit_count;
164 int max_lock_attempts; 164 int max_lock_attempts;
165 int max_msg_len; 165 int max_msg_len;
166 int max_repodesc_len; 166 int max_repodesc_len;
167 int max_stats; 167 int max_stats;
168 int nocache; 168 int nocache;
169 int renamelimit; 169 int renamelimit;
170 int snapshots; 170 int snapshots;
171 int summary_branches; 171 int summary_branches;
172 int summary_log; 172 int summary_log;
173 int summary_tags; 173 int summary_tags;
174}; 174};
175 175
176struct cgit_page { 176struct cgit_page {
177 time_t modified; 177 time_t modified;
178 time_t expires; 178 time_t expires;
179 size_t size; 179 size_t size;
180 char *mimetype; 180 char *mimetype;
181 char *charset; 181 char *charset;
182 char *filename; 182 char *filename;
183 char *etag;
183 char *title; 184 char *title;
184}; 185};
185 186
186struct cgit_context { 187struct cgit_context {
187 struct cgit_query qry; 188 struct cgit_query qry;
188 struct cgit_config cfg; 189 struct cgit_config cfg;
189 struct cgit_repo *repo; 190 struct cgit_repo *repo;
190 struct cgit_page page; 191 struct cgit_page page;
191}; 192};
192 193
193struct cgit_snapshot_format { 194struct cgit_snapshot_format {
194 const char *suffix; 195 const char *suffix;
195 const char *mimetype; 196 const char *mimetype;
196 write_archive_fn_t write_func; 197 write_archive_fn_t write_func;
197 int bit; 198 int bit;
198}; 199};
199 200
200extern const char *cgit_version; 201extern const char *cgit_version;
201 202
202extern struct cgit_repolist cgit_repolist; 203extern struct cgit_repolist cgit_repolist;
203extern struct cgit_context ctx; 204extern struct cgit_context ctx;
204extern const struct cgit_snapshot_format cgit_snapshot_formats[]; 205extern const struct cgit_snapshot_format cgit_snapshot_formats[];
205 206
206extern struct cgit_repo *cgit_add_repo(const char *url); 207extern struct cgit_repo *cgit_add_repo(const char *url);
diff --git a/ui-plain.c b/ui-plain.c
index 5addd9e..f73cd14 100644
--- a/ui-plain.c
+++ b/ui-plain.c
@@ -13,48 +13,49 @@
13char *curr_rev; 13char *curr_rev;
14char *match_path; 14char *match_path;
15int match; 15int match;
16 16
17static void print_object(const unsigned char *sha1, const char *path) 17static void print_object(const unsigned char *sha1, const char *path)
18{ 18{
19 enum object_type type; 19 enum object_type type;
20 char *buf; 20 char *buf;
21 unsigned long size; 21 unsigned long size;
22 22
23 type = sha1_object_info(sha1, &size); 23 type = sha1_object_info(sha1, &size);
24 if (type == OBJ_BAD) { 24 if (type == OBJ_BAD) {
25 html_status(404, "Not found", 0); 25 html_status(404, "Not found", 0);
26 return; 26 return;
27 } 27 }
28 28
29 buf = read_sha1_file(sha1, &type, &size); 29 buf = read_sha1_file(sha1, &type, &size);
30 if (!buf) { 30 if (!buf) {
31 html_status(404, "Not found", 0); 31 html_status(404, "Not found", 0);
32 return; 32 return;
33 } 33 }
34 ctx.page.mimetype = "text/plain"; 34 ctx.page.mimetype = "text/plain";
35 ctx.page.filename = fmt("%s", path); 35 ctx.page.filename = fmt("%s", path);
36 ctx.page.size = size; 36 ctx.page.size = size;
37 ctx.page.etag = sha1_to_hex(sha1);
37 cgit_print_http_headers(&ctx); 38 cgit_print_http_headers(&ctx);
38 html_raw(buf, size); 39 html_raw(buf, size);
39 match = 1; 40 match = 1;
40} 41}
41 42
42static int walk_tree(const unsigned char *sha1, const char *base, int baselen, 43static int walk_tree(const unsigned char *sha1, const char *base, int baselen,
43 const char *pathname, unsigned mode, int stage, 44 const char *pathname, unsigned mode, int stage,
44 void *cbdata) 45 void *cbdata)
45{ 46{
46 if (S_ISDIR(mode)) 47 if (S_ISDIR(mode))
47 return READ_TREE_RECURSIVE; 48 return READ_TREE_RECURSIVE;
48 49
49 if (S_ISREG(mode)) 50 if (S_ISREG(mode))
50 print_object(sha1, pathname); 51 print_object(sha1, pathname);
51 52
52 return 0; 53 return 0;
53} 54}
54 55
55void cgit_print_plain(struct cgit_context *ctx) 56void cgit_print_plain(struct cgit_context *ctx)
56{ 57{
57 const char *rev = ctx->qry.sha1; 58 const char *rev = ctx->qry.sha1;
58 unsigned char sha1[20]; 59 unsigned char sha1[20];
59 struct commit *commit; 60 struct commit *commit;
60 const char *paths[] = {ctx->qry.path, NULL}; 61 const char *paths[] = {ctx->qry.path, NULL};
diff --git a/ui-shared.c b/ui-shared.c
index de77bbf..86a7d29 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -447,48 +447,50 @@ void cgit_print_age(time_t t, time_t max_relative, char *format)
447 } 447 }
448 if (secs < TM_YEAR * 2) { 448 if (secs < TM_YEAR * 2) {
449 htmlf("<span class='age-months'>%.0f months</span>", 449 htmlf("<span class='age-months'>%.0f months</span>",
450 secs * 1.0 / TM_MONTH); 450 secs * 1.0 / TM_MONTH);
451 return; 451 return;
452 } 452 }
453 htmlf("<span class='age-years'>%.0f years</span>", 453 htmlf("<span class='age-years'>%.0f years</span>",
454 secs * 1.0 / TM_YEAR); 454 secs * 1.0 / TM_YEAR);
455} 455}
456 456
457void cgit_print_http_headers(struct cgit_context *ctx) 457void cgit_print_http_headers(struct cgit_context *ctx)
458{ 458{
459 if (ctx->page.mimetype && ctx->page.charset) 459 if (ctx->page.mimetype && ctx->page.charset)
460 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, 460 htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype,
461 ctx->page.charset); 461 ctx->page.charset);
462 else if (ctx->page.mimetype) 462 else if (ctx->page.mimetype)
463 htmlf("Content-Type: %s\n", ctx->page.mimetype); 463 htmlf("Content-Type: %s\n", ctx->page.mimetype);
464 if (ctx->page.size) 464 if (ctx->page.size)
465 htmlf("Content-Length: %ld\n", ctx->page.size); 465 htmlf("Content-Length: %ld\n", ctx->page.size);
466 if (ctx->page.filename) 466 if (ctx->page.filename)
467 htmlf("Content-Disposition: inline; filename=\"%s\"\n", 467 htmlf("Content-Disposition: inline; filename=\"%s\"\n",
468 ctx->page.filename); 468 ctx->page.filename);
469 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); 469 htmlf("Last-Modified: %s\n", http_date(ctx->page.modified));
470 htmlf("Expires: %s\n", http_date(ctx->page.expires)); 470 htmlf("Expires: %s\n", http_date(ctx->page.expires));
471 if (ctx->page.etag)
472 htmlf("ETag: \"%s\"\n", ctx->page.etag);
471 html("\n"); 473 html("\n");
472} 474}
473 475
474void cgit_print_docstart(struct cgit_context *ctx) 476void cgit_print_docstart(struct cgit_context *ctx)
475{ 477{
476 char *host = cgit_hosturl(); 478 char *host = cgit_hosturl();
477 html(cgit_doctype); 479 html(cgit_doctype);
478 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); 480 html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
479 html("<head>\n"); 481 html("<head>\n");
480 html("<title>"); 482 html("<title>");
481 html_txt(ctx->page.title); 483 html_txt(ctx->page.title);
482 html("</title>\n"); 484 html("</title>\n");
483 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 485 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
484 if (ctx->cfg.robots && *ctx->cfg.robots) 486 if (ctx->cfg.robots && *ctx->cfg.robots)
485 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); 487 htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots);
486 html("<link rel='stylesheet' type='text/css' href='"); 488 html("<link rel='stylesheet' type='text/css' href='");
487 html_attr(ctx->cfg.css); 489 html_attr(ctx->cfg.css);
488 html("'/>\n"); 490 html("'/>\n");
489 if (ctx->cfg.favicon) { 491 if (ctx->cfg.favicon) {
490 html("<link rel='shortcut icon' href='"); 492 html("<link rel='shortcut icon' href='");
491 html_attr(ctx->cfg.favicon); 493 html_attr(ctx->cfg.favicon);
492 html("'/>\n"); 494 html("'/>\n");
493 } 495 }
494 if (host && ctx->repo) { 496 if (host && ctx->repo) {