summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c41
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,394 +1,427 @@
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
11const char cgit_doctype[] = 11const 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
15static char *http_date(time_t t) 15static 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
28static long ttl_seconds(long ttl) 28static 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
36void cgit_print_error(char *msg) 36void 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
43char *cgit_rooturl() 43char *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
51char *cgit_repourl(const char *reponame) 51char *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
60char *cgit_pageurl(const char *reponame, const char *pagename, 60char *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&amp;p=%s&amp;%s", reponame, pagename, query); 72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query);
73 else 73 else
74 return fmt("?r=%s&amp;p=%s", reponame, pagename); 74 return fmt("?r=%s&amp;p=%s", reponame, pagename);
75 } 75 }
76} 76}
77 77
78char *cgit_pageurl(const char *reponame, const char *pagename,
79 const char *query)
80{
81 return cgit_fileurl(reponame,pagename,0,query);
82}
83
84const 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
78char *cgit_currurl() 109char *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
90static char *repolink(char *title, char *class, char *page, char *head, 121static 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 = "&amp;"; 163 delim = "&amp;";
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 = "&amp;"; 169 delim = "&amp;";
139 } 170 }
140 return fmt("%s", delim); 171 return fmt("%s", delim);
141} 172}
142 173
143static void reporevlink(char *page, char *name, char *title, char *class, 174static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path) 175 char *head, char *rev, char *path)
145{ 176{
146 char *delim; 177 char *delim;
147 178
148 delim = repolink(title, class, page, head, path); 179 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) { 180 if (rev && strcmp(rev, cgit_query_head)) {
150 html(delim); 181 html(delim);
151 html("id="); 182 html("id=");
152 html_attr(rev); 183 html_attr(rev);
153 } 184 }
154 html("'>"); 185 html("'>");
155 html_txt(name); 186 html_txt(name);
156 html("</a>"); 187 html("</a>");
157} 188}
158 189
159void cgit_tree_link(char *name, char *title, char *class, char *head, 190void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path) 191 char *rev, char *path)
161{ 192{
162 reporevlink("tree", name, title, class, head, rev, path); 193 reporevlink("tree", name, title, class, head, rev, path);
163} 194}
164 195
165void cgit_log_link(char *name, char *title, char *class, char *head, 196void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path, int ofs) 197 char *rev, char *path, int ofs)
167{ 198{
168 char *delim; 199 char *delim;
169 200
170 delim = repolink(title, class, "log", head, path); 201 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) { 202 if (rev && strcmp(rev, cgit_query_head)) {
172 html(delim); 203 html(delim);
173 html("id="); 204 html("id=");
174 html_attr(rev); 205 html_attr(rev);
175 delim = "&"; 206 delim = "&";
176 } 207 }
177 if (ofs > 0) { 208 if (ofs > 0) {
178 html(delim); 209 html(delim);
179 html("ofs="); 210 html("ofs=");
180 htmlf("%d", ofs); 211 htmlf("%d", ofs);
181 } 212 }
182 html("'>"); 213 html("'>");
183 html_txt(name); 214 html_txt(name);
184 html("</a>"); 215 html("</a>");
185} 216}
186 217
187void cgit_commit_link(char *name, char *title, char *class, char *head, 218void cgit_commit_link(char *name, char *title, char *class, char *head,
188 char *rev) 219 char *rev)
189{ 220{
190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { 221 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
191 name[cgit_max_msg_len] = '\0'; 222 name[cgit_max_msg_len] = '\0';
192 name[cgit_max_msg_len - 1] = '.'; 223 name[cgit_max_msg_len - 1] = '.';
193 name[cgit_max_msg_len - 2] = '.'; 224 name[cgit_max_msg_len - 2] = '.';
194 name[cgit_max_msg_len - 3] = '.'; 225 name[cgit_max_msg_len - 3] = '.';
195 } 226 }
196 reporevlink("commit", name, title, class, head, rev, NULL); 227 reporevlink("commit", name, title, class, head, rev, NULL);
197} 228}
198 229
199void cgit_diff_link(char *name, char *title, char *class, char *head, 230void cgit_diff_link(char *name, char *title, char *class, char *head,
200 char *new_rev, char *old_rev, char *path) 231 char *new_rev, char *old_rev, char *path)
201{ 232{
202 char *delim; 233 char *delim;
203 234
204 delim = repolink(title, class, "diff", head, path); 235 delim = repolink(title, class, "diff", head, path);
205 if (new_rev && strcmp(new_rev, cgit_query_head)) { 236 if (new_rev && strcmp(new_rev, cgit_query_head)) {
206 html(delim); 237 html(delim);
207 html("id="); 238 html("id=");
208 html_attr(new_rev); 239 html_attr(new_rev);
209 delim = "&amp;"; 240 delim = "&amp;";
210 } 241 }
211 if (old_rev) { 242 if (old_rev) {
212 html(delim); 243 html(delim);
213 html("id2="); 244 html("id2=");
214 html_attr(old_rev); 245 html_attr(old_rev);
215 } 246 }
216 html("'>"); 247 html("'>");
217 html_txt(name); 248 html_txt(name);
218 html("</a>"); 249 html("</a>");
219} 250}
220 251
221void cgit_object_link(struct object *obj) 252void cgit_object_link(struct object *obj)
222{ 253{
223 char *page, *arg, *url; 254 char *page, *arg, *url;
224 255
225 if (obj->type == OBJ_COMMIT) { 256 if (obj->type == OBJ_COMMIT) {
226 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 257 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
227 cgit_query_head, sha1_to_hex(obj->sha1)); 258 cgit_query_head, sha1_to_hex(obj->sha1));
228 return; 259 return;
229 } else if (obj->type == OBJ_TREE) { 260 } else if (obj->type == OBJ_TREE) {
230 page = "tree"; 261 page = "tree";
231 arg = "id"; 262 arg = "id";
232 } else { 263 } else {
233 page = "blob"; 264 page = "blob";
234 arg = "id"; 265 arg = "id";
235 } 266 }
236 267
237 url = cgit_pageurl(cgit_query_repo, page, 268 url = cgit_pageurl(cgit_query_repo, page,
238 fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); 269 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
239 html_link_open(url, NULL, NULL); 270 html_link_open(url, NULL, NULL);
240 htmlf("%s %s", typename(obj->type), 271 htmlf("%s %s", typename(obj->type),
241 sha1_to_hex(obj->sha1)); 272 sha1_to_hex(obj->sha1));
242 html_link_close(); 273 html_link_close();
243} 274}
244 275
245void cgit_print_date(time_t secs, char *format) 276void cgit_print_date(time_t secs, char *format)
246{ 277{
247 char buf[64]; 278 char buf[64];
248 struct tm *time; 279 struct tm *time;
249 280
250 time = gmtime(&secs); 281 time = gmtime(&secs);
251 strftime(buf, sizeof(buf)-1, format, time); 282 strftime(buf, sizeof(buf)-1, format, time);
252 html_txt(buf); 283 html_txt(buf);
253} 284}
254 285
255void cgit_print_age(time_t t, time_t max_relative, char *format) 286void cgit_print_age(time_t t, time_t max_relative, char *format)
256{ 287{
257 time_t now, secs; 288 time_t now, secs;
258 289
259 time(&now); 290 time(&now);
260 secs = now - t; 291 secs = now - t;
261 292
262 if (secs > max_relative && max_relative >= 0) { 293 if (secs > max_relative && max_relative >= 0) {
263 cgit_print_date(t, format); 294 cgit_print_date(t, format);
264 return; 295 return;
265 } 296 }
266 297
267 if (secs < TM_HOUR * 2) { 298 if (secs < TM_HOUR * 2) {
268 htmlf("<span class='age-mins'>%.0f min.</span>", 299 htmlf("<span class='age-mins'>%.0f min.</span>",
269 secs * 1.0 / TM_MIN); 300 secs * 1.0 / TM_MIN);
270 return; 301 return;
271 } 302 }
272 if (secs < TM_DAY * 2) { 303 if (secs < TM_DAY * 2) {
273 htmlf("<span class='age-hours'>%.0f hours</span>", 304 htmlf("<span class='age-hours'>%.0f hours</span>",
274 secs * 1.0 / TM_HOUR); 305 secs * 1.0 / TM_HOUR);
275 return; 306 return;
276 } 307 }
277 if (secs < TM_WEEK * 2) { 308 if (secs < TM_WEEK * 2) {
278 htmlf("<span class='age-days'>%.0f days</span>", 309 htmlf("<span class='age-days'>%.0f days</span>",
279 secs * 1.0 / TM_DAY); 310 secs * 1.0 / TM_DAY);
280 return; 311 return;
281 } 312 }
282 if (secs < TM_MONTH * 2) { 313 if (secs < TM_MONTH * 2) {
283 htmlf("<span class='age-weeks'>%.0f weeks</span>", 314 htmlf("<span class='age-weeks'>%.0f weeks</span>",
284 secs * 1.0 / TM_WEEK); 315 secs * 1.0 / TM_WEEK);
285 return; 316 return;
286 } 317 }
287 if (secs < TM_YEAR * 2) { 318 if (secs < TM_YEAR * 2) {
288 htmlf("<span class='age-months'>%.0f months</span>", 319 htmlf("<span class='age-months'>%.0f months</span>",
289 secs * 1.0 / TM_MONTH); 320 secs * 1.0 / TM_MONTH);
290 return; 321 return;
291 } 322 }
292 htmlf("<span class='age-years'>%.0f years</span>", 323 htmlf("<span class='age-years'>%.0f years</span>",
293 secs * 1.0 / TM_YEAR); 324 secs * 1.0 / TM_YEAR);
294} 325}
295 326
296void cgit_print_docstart(char *title, struct cacheitem *item) 327void cgit_print_docstart(char *title, struct cacheitem *item)
297{ 328{
298 html("Content-Type: text/html; charset=utf-8\n"); 329 html("Content-Type: text/html; charset=utf-8\n");
299 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 330 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
300 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 331 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
301 ttl_seconds(item->ttl))); 332 ttl_seconds(item->ttl)));
302 html("\n"); 333 html("\n");
303 html(cgit_doctype); 334 html(cgit_doctype);
304 html("<html>\n"); 335 html("<html>\n");
305 html("<head>\n"); 336 html("<head>\n");
306 html("<title>"); 337 html("<title>");
307 html_txt(title); 338 html_txt(title);
308 html("</title>\n"); 339 html("</title>\n");
309 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 340 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
310 html("<link rel='stylesheet' type='text/css' href='"); 341 html("<link rel='stylesheet' type='text/css' href='");
311 html_attr(cgit_css); 342 html_attr(cgit_css);
312 html("'/>\n"); 343 html("'/>\n");
313 html("</head>\n"); 344 html("</head>\n");
314 html("<body>\n"); 345 html("<body>\n");
315} 346}
316 347
317void cgit_print_docend() 348void cgit_print_docend()
318{ 349{
319 html("</td></tr></table>"); 350 html("</td></tr></table>");
320 html("</body>\n</html>\n"); 351 html("</body>\n</html>\n");
321} 352}
322 353
323void cgit_print_pageheader(char *title, int show_search) 354void cgit_print_pageheader(char *title, int show_search)
324{ 355{
325 html("<table id='layout'>"); 356 html("<table id='layout'>");
326 html("<tr><td id='header'><a href='"); 357 html("<tr><td id='header'><a href='");
327 html_attr(cgit_rooturl()); 358 html_attr(cgit_rooturl());
328 html("'>"); 359 html("'>");
329 html_txt(cgit_root_title); 360 html_txt(cgit_root_title);
330 html("</a></td><td id='logo'>"); 361 html("</a></td><td id='logo'>");
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(") : &nbsp;"); 371 html(") : &nbsp;");
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
385void cgit_print_snapshot_start(const char *mimetype, const char *filename, 416void 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: */