-rw-r--r-- | ui-shared.c | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index fd71c12..ca2ee82 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,141 +1,172 @@ | |||
1 | /* ui-shared.c: common web output functions | 1 | /* ui-shared.c: common web output functions |
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 | 10 | ||
11 | const char cgit_doctype[] = | 11 | const char cgit_doctype[] = |
12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 13 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
14 | 14 | ||
15 | static char *http_date(time_t t) | 15 | static char *http_date(time_t t) |
16 | { | 16 | { |
17 | static char day[][4] = | 17 | static char day[][4] = |
18 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 18 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
19 | static char month[][4] = | 19 | static char month[][4] = |
20 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 20 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
21 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 21 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
22 | struct tm *tm = gmtime(&t); | 22 | struct tm *tm = gmtime(&t); |
23 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 23 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
24 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 24 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
25 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 25 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
26 | } | 26 | } |
27 | 27 | ||
28 | static long ttl_seconds(long ttl) | 28 | static long ttl_seconds(long ttl) |
29 | { | 29 | { |
30 | if (ttl<0) | 30 | if (ttl<0) |
31 | return 60 * 60 * 24 * 365; | 31 | return 60 * 60 * 24 * 365; |
32 | else | 32 | else |
33 | return ttl * 60; | 33 | return ttl * 60; |
34 | } | 34 | } |
35 | 35 | ||
36 | void cgit_print_error(char *msg) | 36 | void cgit_print_error(char *msg) |
37 | { | 37 | { |
38 | html("<div class='error'>"); | 38 | html("<div class='error'>"); |
39 | html_txt(msg); | 39 | html_txt(msg); |
40 | html("</div>\n"); | 40 | html("</div>\n"); |
41 | } | 41 | } |
42 | 42 | ||
43 | char *cgit_rooturl() | 43 | char *cgit_rooturl() |
44 | { | 44 | { |
45 | if (cgit_virtual_root) | 45 | if (cgit_virtual_root) |
46 | return fmt("%s/", cgit_virtual_root); | 46 | return fmt("%s/", cgit_virtual_root); |
47 | else | 47 | else |
48 | return cgit_script_name; | 48 | return cgit_script_name; |
49 | } | 49 | } |
50 | 50 | ||
51 | char *cgit_repourl(const char *reponame) | 51 | char *cgit_repourl(const char *reponame) |
52 | { | 52 | { |
53 | if (cgit_virtual_root) { | 53 | if (cgit_virtual_root) { |
54 | return fmt("%s/%s/", cgit_virtual_root, reponame); | 54 | return fmt("%s/%s/", cgit_virtual_root, reponame); |
55 | } else { | 55 | } else { |
56 | return fmt("?r=%s", reponame); | 56 | return fmt("?r=%s", reponame); |
57 | } | 57 | } |
58 | } | 58 | } |
59 | 59 | ||
60 | char *cgit_pageurl(const char *reponame, const char *pagename, | 60 | char *cgit_fileurl(const char *reponame, const char *pagename, |
61 | const char *query) | 61 | const char *filename, const char *query) |
62 | { | 62 | { |
63 | if (cgit_virtual_root) { | 63 | if (cgit_virtual_root) { |
64 | if (query) | 64 | if (query) |
65 | return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, | 65 | return fmt("%s/%s/%s/%s?%s", cgit_virtual_root, reponame, |
66 | pagename, query); | 66 | pagename, filename?filename:"", query); |
67 | else | 67 | else |
68 | return fmt("%s/%s/%s/", cgit_virtual_root, reponame, | 68 | return fmt("%s/%s/%s/", cgit_virtual_root, reponame, |
69 | pagename); | 69 | pagename); |
70 | } else { | 70 | } else { |
71 | if (query) | 71 | if (query) |
72 | return fmt("?r=%s&p=%s&%s", reponame, pagename, query); | 72 | return fmt("?r=%s&p=%s&%s", reponame, pagename, query); |
73 | else | 73 | else |
74 | return fmt("?r=%s&p=%s", reponame, pagename); | 74 | return fmt("?r=%s&p=%s", reponame, pagename); |
75 | } | 75 | } |
76 | } | 76 | } |
77 | 77 | ||
78 | char *cgit_pageurl(const char *reponame, const char *pagename, | ||
79 | const char *query) | ||
80 | { | ||
81 | return cgit_fileurl(reponame,pagename,0,query); | ||
82 | } | ||
83 | |||
84 | const char *cgit_repobasename(const char *reponame) | ||
85 | { | ||
86 | /* I assume we don't need to store more than one repo basename */ | ||
87 | static char rvbuf[1024]; | ||
88 | int p; | ||
89 | const char *rv; | ||
90 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | ||
91 | if(rvbuf[sizeof(rvbuf)-1]) | ||
92 | die("cgit_repobasename: truncated repository name '%s'", reponame); | ||
93 | p = strlen(rvbuf)-1; | ||
94 | /* strip trailing slashes */ | ||
95 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | ||
96 | /* strip trailing .git */ | ||
97 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | ||
98 | p -= 3; rvbuf[p--] = 0; | ||
99 | } | ||
100 | /* strip more trailing slashes if any */ | ||
101 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | ||
102 | /* find last slash in the remaining string */ | ||
103 | rv = strrchr(rvbuf,'/'); | ||
104 | if(rv) | ||
105 | return ++rv; | ||
106 | return rvbuf; | ||
107 | } | ||
108 | |||
78 | char *cgit_currurl() | 109 | char *cgit_currurl() |
79 | { | 110 | { |
80 | if (!cgit_virtual_root) | 111 | if (!cgit_virtual_root) |
81 | return cgit_script_name; | 112 | return cgit_script_name; |
82 | else if (cgit_query_page) | 113 | else if (cgit_query_page) |
83 | return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); | 114 | return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); |
84 | else if (cgit_query_repo) | 115 | else if (cgit_query_repo) |
85 | return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); | 116 | return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); |
86 | else | 117 | else |
87 | return fmt("%s/", cgit_virtual_root); | 118 | return fmt("%s/", cgit_virtual_root); |
88 | } | 119 | } |
89 | 120 | ||
90 | static char *repolink(char *title, char *class, char *page, char *head, | 121 | static char *repolink(char *title, char *class, char *page, char *head, |
91 | char *path) | 122 | char *path) |
92 | { | 123 | { |
93 | char *delim = "?"; | 124 | char *delim = "?"; |
94 | 125 | ||
95 | html("<a"); | 126 | html("<a"); |
96 | if (title) { | 127 | if (title) { |
97 | html(" title='"); | 128 | html(" title='"); |
98 | html_attr(title); | 129 | html_attr(title); |
99 | html("'"); | 130 | html("'"); |
100 | } | 131 | } |
101 | if (class) { | 132 | if (class) { |
102 | html(" class='"); | 133 | html(" class='"); |
103 | html_attr(class); | 134 | html_attr(class); |
104 | html("'"); | 135 | html("'"); |
105 | } | 136 | } |
106 | html(" href='"); | 137 | html(" href='"); |
107 | if (cgit_virtual_root) { | 138 | if (cgit_virtual_root) { |
108 | html_attr(cgit_virtual_root); | 139 | html_attr(cgit_virtual_root); |
109 | if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') | 140 | if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') |
110 | html("/"); | 141 | html("/"); |
111 | html_attr(cgit_repo->url); | 142 | html_attr(cgit_repo->url); |
112 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') | 143 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') |
113 | html("/"); | 144 | html("/"); |
114 | if (page) { | 145 | if (page) { |
115 | html(page); | 146 | html(page); |
116 | html("/"); | 147 | html("/"); |
117 | if (path) | 148 | if (path) |
118 | html_attr(path); | 149 | html_attr(path); |
119 | } | 150 | } |
120 | } else { | 151 | } else { |
121 | html(cgit_script_name); | 152 | html(cgit_script_name); |
122 | html("?url="); | 153 | html("?url="); |
123 | html_attr(cgit_repo->url); | 154 | html_attr(cgit_repo->url); |
124 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') | 155 | if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') |
125 | html("/"); | 156 | html("/"); |
126 | if (page) { | 157 | if (page) { |
127 | html(page); | 158 | html(page); |
128 | html("/"); | 159 | html("/"); |
129 | if (path) | 160 | if (path) |
130 | html_attr(path); | 161 | html_attr(path); |
131 | } | 162 | } |
132 | delim = "&"; | 163 | delim = "&"; |
133 | } | 164 | } |
134 | if (head && strcmp(head, cgit_repo->defbranch)) { | 165 | if (head && strcmp(head, cgit_repo->defbranch)) { |
135 | html(delim); | 166 | html(delim); |
136 | html("h="); | 167 | html("h="); |
137 | html_attr(head); | 168 | html_attr(head); |
138 | delim = "&"; | 169 | delim = "&"; |
139 | } | 170 | } |
140 | return fmt("%s", delim); | 171 | return fmt("%s", delim); |
141 | } | 172 | } |
@@ -331,64 +362,66 @@ void cgit_print_pageheader(char *title, int show_search) | |||
331 | html("<a href='"); | 362 | html("<a href='"); |
332 | html_attr(cgit_logo_link); | 363 | html_attr(cgit_logo_link); |
333 | htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); | 364 | htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); |
334 | html("</td></tr>"); | 365 | html("</td></tr>"); |
335 | html("<tr><td id='crumb'>"); | 366 | html("<tr><td id='crumb'>"); |
336 | if (cgit_query_repo) { | 367 | if (cgit_query_repo) { |
337 | html_txt(cgit_repo->name); | 368 | html_txt(cgit_repo->name); |
338 | html(" ("); | 369 | html(" ("); |
339 | html_txt(cgit_query_head); | 370 | html_txt(cgit_query_head); |
340 | html(") : "); | 371 | html(") : "); |
341 | reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, | 372 | reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, |
342 | NULL, NULL); | 373 | NULL, NULL); |
343 | html(" "); | 374 | html(" "); |
344 | cgit_log_link("log", NULL, NULL, cgit_query_head, | 375 | cgit_log_link("log", NULL, NULL, cgit_query_head, |
345 | cgit_query_sha1, cgit_query_path, 0); | 376 | cgit_query_sha1, cgit_query_path, 0); |
346 | html(" "); | 377 | html(" "); |
347 | cgit_tree_link("tree", NULL, NULL, cgit_query_head, | 378 | cgit_tree_link("tree", NULL, NULL, cgit_query_head, |
348 | cgit_query_sha1, NULL); | 379 | cgit_query_sha1, NULL); |
349 | html(" "); | 380 | html(" "); |
350 | cgit_commit_link("commit", NULL, NULL, cgit_query_head, | 381 | cgit_commit_link("commit", NULL, NULL, cgit_query_head, |
351 | cgit_query_sha1); | 382 | cgit_query_sha1); |
352 | html(" "); | 383 | html(" "); |
353 | cgit_diff_link("diff", NULL, NULL, cgit_query_head, | 384 | cgit_diff_link("diff", NULL, NULL, cgit_query_head, |
354 | cgit_query_sha1, cgit_query_sha2, | 385 | cgit_query_sha1, cgit_query_sha2, |
355 | cgit_query_path); | 386 | cgit_query_path); |
356 | } else { | 387 | } else { |
357 | html_txt("Index of repositories"); | 388 | html_txt("Index of repositories"); |
358 | } | 389 | } |
359 | html("</td>"); | 390 | html("</td>"); |
360 | html("<td id='search'>"); | 391 | html("<td id='search'>"); |
361 | if (show_search) { | 392 | if (show_search) { |
362 | html("<form method='get' action='"); | 393 | html("<form method='get' action='"); |
363 | html_attr(cgit_currurl()); | 394 | html_attr(cgit_currurl()); |
364 | html("'>"); | 395 | html("'>"); |
365 | if (!cgit_virtual_root) { | 396 | if (!cgit_virtual_root) { |
366 | if (cgit_query_repo) | 397 | if (cgit_query_repo) |
367 | html_hidden("r", cgit_query_repo); | 398 | html_hidden("r", cgit_query_repo); |
368 | if (cgit_query_page) | 399 | if (cgit_query_page) |
369 | html_hidden("p", cgit_query_page); | 400 | html_hidden("p", cgit_query_page); |
370 | } | 401 | } |
371 | if (cgit_query_head) | 402 | if (cgit_query_head) |
372 | html_hidden("h", cgit_query_head); | 403 | html_hidden("h", cgit_query_head); |
373 | if (cgit_query_sha1) | 404 | if (cgit_query_sha1) |
374 | html_hidden("id", cgit_query_sha1); | 405 | html_hidden("id", cgit_query_sha1); |
375 | if (cgit_query_sha2) | 406 | if (cgit_query_sha2) |
376 | html_hidden("id2", cgit_query_sha2); | 407 | html_hidden("id2", cgit_query_sha2); |
377 | html("<input type='text' name='q' value='"); | 408 | html("<input type='text' name='q' value='"); |
378 | html_attr(cgit_query_search); | 409 | html_attr(cgit_query_search); |
379 | html("'/></form>"); | 410 | html("'/></form>"); |
380 | } | 411 | } |
381 | html("</td></tr>"); | 412 | html("</td></tr>"); |
382 | html("<tr><td id='content' colspan='2'>"); | 413 | html("<tr><td id='content' colspan='2'>"); |
383 | } | 414 | } |
384 | 415 | ||
385 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, | 416 | void cgit_print_snapshot_start(const char *mimetype, const char *filename, |
386 | struct cacheitem *item) | 417 | struct cacheitem *item) |
387 | { | 418 | { |
388 | htmlf("Content-Type: %s\n", mimetype); | 419 | htmlf("Content-Type: %s\n", mimetype); |
389 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); | 420 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); |
390 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 421 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
391 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 422 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
392 | ttl_seconds(item->ttl))); | 423 | ttl_seconds(item->ttl))); |
393 | html("\n"); | 424 | html("\n"); |
394 | } | 425 | } |
426 | |||
427 | /* vim:set sw=8: */ | ||