-rw-r--r-- | ui-shared.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c index 4280a70..197ee37 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -1,673 +1,676 @@ | |||
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 | #include "cmd.h" | 10 | #include "cmd.h" |
11 | #include "html.h" | 11 | #include "html.h" |
12 | 12 | ||
13 | const char cgit_doctype[] = | 13 | const char cgit_doctype[] = |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | 15 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |
16 | 16 | ||
17 | static char *http_date(time_t t) | 17 | static char *http_date(time_t t) |
18 | { | 18 | { |
19 | static char day[][4] = | 19 | static char day[][4] = |
20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; | 20 | {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; |
21 | static char month[][4] = | 21 | static char month[][4] = |
22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", | 22 | {"Jan", "Feb", "Mar", "Apr", "May", "Jun", |
23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; | 23 | "Jul", "Aug", "Sep", "Oct", "Now", "Dec"}; |
24 | struct tm *tm = gmtime(&t); | 24 | struct tm *tm = gmtime(&t); |
25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], | 25 | return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day[tm->tm_wday], |
26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, | 26 | tm->tm_mday, month[tm->tm_mon], 1900+tm->tm_year, |
27 | tm->tm_hour, tm->tm_min, tm->tm_sec); | 27 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
28 | } | 28 | } |
29 | 29 | ||
30 | void cgit_print_error(char *msg) | 30 | void cgit_print_error(char *msg) |
31 | { | 31 | { |
32 | html("<div class='error'>"); | 32 | html("<div class='error'>"); |
33 | html_txt(msg); | 33 | html_txt(msg); |
34 | html("</div>\n"); | 34 | html("</div>\n"); |
35 | } | 35 | } |
36 | 36 | ||
37 | char *cgit_rooturl() | 37 | char *cgit_rooturl() |
38 | { | 38 | { |
39 | if (ctx.cfg.virtual_root) | 39 | if (ctx.cfg.virtual_root) |
40 | return fmt("%s/", ctx.cfg.virtual_root); | 40 | return fmt("%s/", ctx.cfg.virtual_root); |
41 | else | 41 | else |
42 | return ctx.cfg.script_name; | 42 | return ctx.cfg.script_name; |
43 | } | 43 | } |
44 | 44 | ||
45 | char *cgit_repourl(const char *reponame) | 45 | char *cgit_repourl(const char *reponame) |
46 | { | 46 | { |
47 | if (ctx.cfg.virtual_root) { | 47 | if (ctx.cfg.virtual_root) { |
48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); | 48 | return fmt("%s/%s/", ctx.cfg.virtual_root, reponame); |
49 | } else { | 49 | } else { |
50 | return fmt("?r=%s", reponame); | 50 | return fmt("?r=%s", reponame); |
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
54 | char *cgit_fileurl(const char *reponame, const char *pagename, | 54 | char *cgit_fileurl(const char *reponame, const char *pagename, |
55 | const char *filename, const char *query) | 55 | const char *filename, const char *query) |
56 | { | 56 | { |
57 | char *tmp; | 57 | char *tmp; |
58 | char *delim; | 58 | char *delim; |
59 | 59 | ||
60 | if (ctx.cfg.virtual_root) { | 60 | if (ctx.cfg.virtual_root) { |
61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, | 61 | tmp = fmt("%s/%s/%s/%s", ctx.cfg.virtual_root, reponame, |
62 | pagename, (filename ? filename:"")); | 62 | pagename, (filename ? filename:"")); |
63 | delim = "?"; | 63 | delim = "?"; |
64 | } else { | 64 | } else { |
65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, | 65 | tmp = fmt("?url=%s/%s/%s", reponame, pagename, |
66 | (filename ? filename : "")); | 66 | (filename ? filename : "")); |
67 | delim = "&"; | 67 | delim = "&"; |
68 | } | 68 | } |
69 | if (query) | 69 | if (query) |
70 | tmp = fmt("%s%s%s", tmp, delim, query); | 70 | tmp = fmt("%s%s%s", tmp, delim, query); |
71 | return tmp; | 71 | return tmp; |
72 | } | 72 | } |
73 | 73 | ||
74 | char *cgit_pageurl(const char *reponame, const char *pagename, | 74 | char *cgit_pageurl(const char *reponame, const char *pagename, |
75 | const char *query) | 75 | const char *query) |
76 | { | 76 | { |
77 | return cgit_fileurl(reponame,pagename,0,query); | 77 | return cgit_fileurl(reponame,pagename,0,query); |
78 | } | 78 | } |
79 | 79 | ||
80 | const char *cgit_repobasename(const char *reponame) | 80 | const char *cgit_repobasename(const char *reponame) |
81 | { | 81 | { |
82 | /* I assume we don't need to store more than one repo basename */ | 82 | /* I assume we don't need to store more than one repo basename */ |
83 | static char rvbuf[1024]; | 83 | static char rvbuf[1024]; |
84 | int p; | 84 | int p; |
85 | const char *rv; | 85 | const char *rv; |
86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); | 86 | strncpy(rvbuf,reponame,sizeof(rvbuf)); |
87 | if(rvbuf[sizeof(rvbuf)-1]) | 87 | if(rvbuf[sizeof(rvbuf)-1]) |
88 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 88 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
89 | p = strlen(rvbuf)-1; | 89 | p = strlen(rvbuf)-1; |
90 | /* strip trailing slashes */ | 90 | /* strip trailing slashes */ |
91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; | 91 | while(p && rvbuf[p]=='/') rvbuf[p--]=0; |
92 | /* strip trailing .git */ | 92 | /* strip trailing .git */ |
93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { | 93 | if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) { |
94 | p -= 3; rvbuf[p--] = 0; | 94 | p -= 3; rvbuf[p--] = 0; |
95 | } | 95 | } |
96 | /* strip more trailing slashes if any */ | 96 | /* strip more trailing slashes if any */ |
97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; | 97 | while( p && rvbuf[p]=='/') rvbuf[p--]=0; |
98 | /* find last slash in the remaining string */ | 98 | /* find last slash in the remaining string */ |
99 | rv = strrchr(rvbuf,'/'); | 99 | rv = strrchr(rvbuf,'/'); |
100 | if(rv) | 100 | if(rv) |
101 | return ++rv; | 101 | return ++rv; |
102 | return rvbuf; | 102 | return rvbuf; |
103 | } | 103 | } |
104 | 104 | ||
105 | char *cgit_currurl() | 105 | char *cgit_currurl() |
106 | { | 106 | { |
107 | if (!ctx.cfg.virtual_root) | 107 | if (!ctx.cfg.virtual_root) |
108 | return ctx.cfg.script_name; | 108 | return ctx.cfg.script_name; |
109 | else if (ctx.qry.page) | 109 | else if (ctx.qry.page) |
110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); | 110 | return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); |
111 | else if (ctx.qry.repo) | 111 | else if (ctx.qry.repo) |
112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); | 112 | return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); |
113 | else | 113 | else |
114 | return fmt("%s/", ctx.cfg.virtual_root); | 114 | return fmt("%s/", ctx.cfg.virtual_root); |
115 | } | 115 | } |
116 | 116 | ||
117 | static void site_url(char *page, char *search, int ofs) | 117 | static void site_url(char *page, char *search, int ofs) |
118 | { | 118 | { |
119 | char *delim = "?"; | 119 | char *delim = "?"; |
120 | 120 | ||
121 | if (ctx.cfg.virtual_root) { | 121 | if (ctx.cfg.virtual_root) { |
122 | html_attr(ctx.cfg.virtual_root); | 122 | html_attr(ctx.cfg.virtual_root); |
123 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 123 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
124 | html("/"); | 124 | html("/"); |
125 | } else | 125 | } else |
126 | html(ctx.cfg.script_name); | 126 | html(ctx.cfg.script_name); |
127 | 127 | ||
128 | if (page) { | 128 | if (page) { |
129 | htmlf("?p=%s", page); | 129 | htmlf("?p=%s", page); |
130 | delim = "&"; | 130 | delim = "&"; |
131 | } | 131 | } |
132 | if (search) { | 132 | if (search) { |
133 | html(delim); | 133 | html(delim); |
134 | html("q="); | 134 | html("q="); |
135 | html_attr(search); | 135 | html_attr(search); |
136 | delim = "&"; | 136 | delim = "&"; |
137 | } | 137 | } |
138 | if (ofs) { | 138 | if (ofs) { |
139 | html(delim); | 139 | html(delim); |
140 | htmlf("ofs=%d", ofs); | 140 | htmlf("ofs=%d", ofs); |
141 | } | 141 | } |
142 | } | 142 | } |
143 | 143 | ||
144 | static void site_link(char *page, char *name, char *title, char *class, | 144 | static void site_link(char *page, char *name, char *title, char *class, |
145 | char *search, int ofs) | 145 | char *search, int ofs) |
146 | { | 146 | { |
147 | html("<a"); | 147 | html("<a"); |
148 | if (title) { | 148 | if (title) { |
149 | html(" title='"); | 149 | html(" title='"); |
150 | html_attr(title); | 150 | html_attr(title); |
151 | html("'"); | 151 | html("'"); |
152 | } | 152 | } |
153 | if (class) { | 153 | if (class) { |
154 | html(" class='"); | 154 | html(" class='"); |
155 | html_attr(class); | 155 | html_attr(class); |
156 | html("'"); | 156 | html("'"); |
157 | } | 157 | } |
158 | html(" href='"); | 158 | html(" href='"); |
159 | site_url(page, search, ofs); | 159 | site_url(page, search, ofs); |
160 | html("'>"); | 160 | html("'>"); |
161 | html_txt(name); | 161 | html_txt(name); |
162 | html("</a>"); | 162 | html("</a>"); |
163 | } | 163 | } |
164 | 164 | ||
165 | void cgit_index_link(char *name, char *title, char *class, char *pattern, | 165 | void cgit_index_link(char *name, char *title, char *class, char *pattern, |
166 | int ofs) | 166 | int ofs) |
167 | { | 167 | { |
168 | site_link(NULL, name, title, class, pattern, ofs); | 168 | site_link(NULL, name, title, class, pattern, ofs); |
169 | } | 169 | } |
170 | 170 | ||
171 | static char *repolink(char *title, char *class, char *page, char *head, | 171 | static char *repolink(char *title, char *class, char *page, char *head, |
172 | char *path) | 172 | char *path) |
173 | { | 173 | { |
174 | char *delim = "?"; | 174 | char *delim = "?"; |
175 | 175 | ||
176 | html("<a"); | 176 | html("<a"); |
177 | if (title) { | 177 | if (title) { |
178 | html(" title='"); | 178 | html(" title='"); |
179 | html_attr(title); | 179 | html_attr(title); |
180 | html("'"); | 180 | html("'"); |
181 | } | 181 | } |
182 | if (class) { | 182 | if (class) { |
183 | html(" class='"); | 183 | html(" class='"); |
184 | html_attr(class); | 184 | html_attr(class); |
185 | html("'"); | 185 | html("'"); |
186 | } | 186 | } |
187 | html(" href='"); | 187 | html(" href='"); |
188 | if (ctx.cfg.virtual_root) { | 188 | if (ctx.cfg.virtual_root) { |
189 | html_attr(ctx.cfg.virtual_root); | 189 | html_attr(ctx.cfg.virtual_root); |
190 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') | 190 | if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') |
191 | html("/"); | 191 | html("/"); |
192 | html_attr(ctx.repo->url); | 192 | html_attr(ctx.repo->url); |
193 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 193 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
194 | html("/"); | 194 | html("/"); |
195 | if (page) { | 195 | if (page) { |
196 | html(page); | 196 | html(page); |
197 | html("/"); | 197 | html("/"); |
198 | if (path) | 198 | if (path) |
199 | html_attr(path); | 199 | html_attr(path); |
200 | } | 200 | } |
201 | } else { | 201 | } else { |
202 | html(ctx.cfg.script_name); | 202 | html(ctx.cfg.script_name); |
203 | html("?url="); | 203 | html("?url="); |
204 | html_attr(ctx.repo->url); | 204 | html_attr(ctx.repo->url); |
205 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') | 205 | if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') |
206 | html("/"); | 206 | html("/"); |
207 | if (page) { | 207 | if (page) { |
208 | html(page); | 208 | html(page); |
209 | html("/"); | 209 | html("/"); |
210 | if (path) | 210 | if (path) |
211 | html_attr(path); | 211 | html_attr(path); |
212 | } | 212 | } |
213 | delim = "&"; | 213 | delim = "&"; |
214 | } | 214 | } |
215 | if (head && strcmp(head, ctx.repo->defbranch)) { | 215 | if (head && strcmp(head, ctx.repo->defbranch)) { |
216 | html(delim); | 216 | html(delim); |
217 | html("h="); | 217 | html("h="); |
218 | html_attr(head); | 218 | html_attr(head); |
219 | delim = "&"; | 219 | delim = "&"; |
220 | } | 220 | } |
221 | return fmt("%s", delim); | 221 | return fmt("%s", delim); |
222 | } | 222 | } |
223 | 223 | ||
224 | static void reporevlink(char *page, char *name, char *title, char *class, | 224 | static void reporevlink(char *page, char *name, char *title, char *class, |
225 | char *head, char *rev, char *path) | 225 | char *head, char *rev, char *path) |
226 | { | 226 | { |
227 | char *delim; | 227 | char *delim; |
228 | 228 | ||
229 | delim = repolink(title, class, page, head, path); | 229 | delim = repolink(title, class, page, head, path); |
230 | if (rev && strcmp(rev, ctx.qry.head)) { | 230 | if (rev && strcmp(rev, ctx.qry.head)) { |
231 | html(delim); | 231 | html(delim); |
232 | html("id="); | 232 | html("id="); |
233 | html_attr(rev); | 233 | html_attr(rev); |
234 | } | 234 | } |
235 | html("'>"); | 235 | html("'>"); |
236 | html_txt(name); | 236 | html_txt(name); |
237 | html("</a>"); | 237 | html("</a>"); |
238 | } | 238 | } |
239 | 239 | ||
240 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 240 | void cgit_tree_link(char *name, char *title, char *class, char *head, |
241 | char *rev, char *path) | 241 | char *rev, char *path) |
242 | { | 242 | { |
243 | reporevlink("tree", name, title, class, head, rev, path); | 243 | reporevlink("tree", name, title, class, head, rev, path); |
244 | } | 244 | } |
245 | 245 | ||
246 | void cgit_log_link(char *name, char *title, char *class, char *head, | 246 | void cgit_log_link(char *name, char *title, char *class, char *head, |
247 | char *rev, char *path, int ofs, char *grep, char *pattern) | 247 | char *rev, char *path, int ofs, char *grep, char *pattern) |
248 | { | 248 | { |
249 | char *delim; | 249 | char *delim; |
250 | 250 | ||
251 | delim = repolink(title, class, "log", head, path); | 251 | delim = repolink(title, class, "log", head, path); |
252 | if (rev && strcmp(rev, ctx.qry.head)) { | 252 | if (rev && strcmp(rev, ctx.qry.head)) { |
253 | html(delim); | 253 | html(delim); |
254 | html("id="); | 254 | html("id="); |
255 | html_attr(rev); | 255 | html_attr(rev); |
256 | delim = "&"; | 256 | delim = "&"; |
257 | } | 257 | } |
258 | if (grep && pattern) { | 258 | if (grep && pattern) { |
259 | html(delim); | 259 | html(delim); |
260 | html("qt="); | 260 | html("qt="); |
261 | html_attr(grep); | 261 | html_attr(grep); |
262 | delim = "&"; | 262 | delim = "&"; |
263 | html(delim); | 263 | html(delim); |
264 | html("q="); | 264 | html("q="); |
265 | html_attr(pattern); | 265 | html_attr(pattern); |
266 | } | 266 | } |
267 | if (ofs > 0) { | 267 | if (ofs > 0) { |
268 | html(delim); | 268 | html(delim); |
269 | html("ofs="); | 269 | html("ofs="); |
270 | htmlf("%d", ofs); | 270 | htmlf("%d", ofs); |
271 | } | 271 | } |
272 | html("'>"); | 272 | html("'>"); |
273 | html_txt(name); | 273 | html_txt(name); |
274 | html("</a>"); | 274 | html("</a>"); |
275 | } | 275 | } |
276 | 276 | ||
277 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 277 | void cgit_commit_link(char *name, char *title, char *class, char *head, |
278 | char *rev) | 278 | char *rev) |
279 | { | 279 | { |
280 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 280 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
281 | name[ctx.cfg.max_msg_len] = '\0'; | 281 | name[ctx.cfg.max_msg_len] = '\0'; |
282 | name[ctx.cfg.max_msg_len - 1] = '.'; | 282 | name[ctx.cfg.max_msg_len - 1] = '.'; |
283 | name[ctx.cfg.max_msg_len - 2] = '.'; | 283 | name[ctx.cfg.max_msg_len - 2] = '.'; |
284 | name[ctx.cfg.max_msg_len - 3] = '.'; | 284 | name[ctx.cfg.max_msg_len - 3] = '.'; |
285 | } | 285 | } |
286 | reporevlink("commit", name, title, class, head, rev, NULL); | 286 | reporevlink("commit", name, title, class, head, rev, NULL); |
287 | } | 287 | } |
288 | 288 | ||
289 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 289 | void cgit_refs_link(char *name, char *title, char *class, char *head, |
290 | char *rev, char *path) | 290 | char *rev, char *path) |
291 | { | 291 | { |
292 | reporevlink("refs", name, title, class, head, rev, path); | 292 | reporevlink("refs", name, title, class, head, rev, path); |
293 | } | 293 | } |
294 | 294 | ||
295 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 295 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, |
296 | char *rev, char *archivename) | 296 | char *rev, char *archivename) |
297 | { | 297 | { |
298 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 298 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
299 | } | 299 | } |
300 | 300 | ||
301 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 301 | void cgit_diff_link(char *name, char *title, char *class, char *head, |
302 | char *new_rev, char *old_rev, char *path) | 302 | char *new_rev, char *old_rev, char *path) |
303 | { | 303 | { |
304 | char *delim; | 304 | char *delim; |
305 | 305 | ||
306 | delim = repolink(title, class, "diff", head, path); | 306 | delim = repolink(title, class, "diff", head, path); |
307 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { | 307 | if (new_rev && strcmp(new_rev, ctx.qry.head)) { |
308 | html(delim); | 308 | html(delim); |
309 | html("id="); | 309 | html("id="); |
310 | html_attr(new_rev); | 310 | html_attr(new_rev); |
311 | delim = "&"; | 311 | delim = "&"; |
312 | } | 312 | } |
313 | if (old_rev) { | 313 | if (old_rev) { |
314 | html(delim); | 314 | html(delim); |
315 | html("id2="); | 315 | html("id2="); |
316 | html_attr(old_rev); | 316 | html_attr(old_rev); |
317 | } | 317 | } |
318 | html("'>"); | 318 | html("'>"); |
319 | html_txt(name); | 319 | html_txt(name); |
320 | html("</a>"); | 320 | html("</a>"); |
321 | } | 321 | } |
322 | 322 | ||
323 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 323 | void cgit_patch_link(char *name, char *title, char *class, char *head, |
324 | char *rev) | 324 | char *rev) |
325 | { | 325 | { |
326 | reporevlink("patch", name, title, class, head, rev, NULL); | 326 | reporevlink("patch", name, title, class, head, rev, NULL); |
327 | } | 327 | } |
328 | 328 | ||
329 | void cgit_object_link(struct object *obj) | 329 | void cgit_object_link(struct object *obj) |
330 | { | 330 | { |
331 | char *page, *arg, *url; | 331 | char *page, *arg, *url; |
332 | 332 | ||
333 | if (obj->type == OBJ_COMMIT) { | 333 | if (obj->type == OBJ_COMMIT) { |
334 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, | 334 | cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, |
335 | ctx.qry.head, sha1_to_hex(obj->sha1)); | 335 | ctx.qry.head, sha1_to_hex(obj->sha1)); |
336 | return; | 336 | return; |
337 | } else if (obj->type == OBJ_TREE) { | 337 | } else if (obj->type == OBJ_TREE) { |
338 | page = "tree"; | 338 | page = "tree"; |
339 | arg = "id"; | 339 | arg = "id"; |
340 | } else if (obj->type == OBJ_TAG) { | 340 | } else if (obj->type == OBJ_TAG) { |
341 | page = "tag"; | 341 | page = "tag"; |
342 | arg = "id"; | 342 | arg = "id"; |
343 | } else { | 343 | } else { |
344 | page = "blob"; | 344 | page = "blob"; |
345 | arg = "id"; | 345 | arg = "id"; |
346 | } | 346 | } |
347 | 347 | ||
348 | url = cgit_pageurl(ctx.qry.repo, page, | 348 | url = cgit_pageurl(ctx.qry.repo, page, |
349 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); | 349 | fmt("%s=%s", arg, sha1_to_hex(obj->sha1))); |
350 | html_link_open(url, NULL, NULL); | 350 | html_link_open(url, NULL, NULL); |
351 | htmlf("%s %s", typename(obj->type), | 351 | htmlf("%s %s", typename(obj->type), |
352 | sha1_to_hex(obj->sha1)); | 352 | sha1_to_hex(obj->sha1)); |
353 | html_link_close(); | 353 | html_link_close(); |
354 | } | 354 | } |
355 | 355 | ||
356 | void cgit_print_date(time_t secs, char *format) | 356 | void cgit_print_date(time_t secs, char *format, int local_time) |
357 | { | 357 | { |
358 | char buf[64]; | 358 | char buf[64]; |
359 | struct tm *time; | 359 | struct tm *time; |
360 | 360 | ||
361 | if (!secs) | 361 | if (!secs) |
362 | return; | 362 | return; |
363 | time = gmtime(&secs); | 363 | if(local_time) |
364 | time = localtime(&secs); | ||
365 | else | ||
366 | time = gmtime(&secs); | ||
364 | strftime(buf, sizeof(buf)-1, format, time); | 367 | strftime(buf, sizeof(buf)-1, format, time); |
365 | html_txt(buf); | 368 | html_txt(buf); |
366 | } | 369 | } |
367 | 370 | ||
368 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 371 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
369 | { | 372 | { |
370 | time_t now, secs; | 373 | time_t now, secs; |
371 | 374 | ||
372 | if (!t) | 375 | if (!t) |
373 | return; | 376 | return; |
374 | time(&now); | 377 | time(&now); |
375 | secs = now - t; | 378 | secs = now - t; |
376 | 379 | ||
377 | if (secs > max_relative && max_relative >= 0) { | 380 | if (secs > max_relative && max_relative >= 0) { |
378 | cgit_print_date(t, format); | 381 | cgit_print_date(t, format, ctx.cfg.local_time); |
379 | return; | 382 | return; |
380 | } | 383 | } |
381 | 384 | ||
382 | if (secs < TM_HOUR * 2) { | 385 | if (secs < TM_HOUR * 2) { |
383 | htmlf("<span class='age-mins'>%.0f min.</span>", | 386 | htmlf("<span class='age-mins'>%.0f min.</span>", |
384 | secs * 1.0 / TM_MIN); | 387 | secs * 1.0 / TM_MIN); |
385 | return; | 388 | return; |
386 | } | 389 | } |
387 | if (secs < TM_DAY * 2) { | 390 | if (secs < TM_DAY * 2) { |
388 | htmlf("<span class='age-hours'>%.0f hours</span>", | 391 | htmlf("<span class='age-hours'>%.0f hours</span>", |
389 | secs * 1.0 / TM_HOUR); | 392 | secs * 1.0 / TM_HOUR); |
390 | return; | 393 | return; |
391 | } | 394 | } |
392 | if (secs < TM_WEEK * 2) { | 395 | if (secs < TM_WEEK * 2) { |
393 | htmlf("<span class='age-days'>%.0f days</span>", | 396 | htmlf("<span class='age-days'>%.0f days</span>", |
394 | secs * 1.0 / TM_DAY); | 397 | secs * 1.0 / TM_DAY); |
395 | return; | 398 | return; |
396 | } | 399 | } |
397 | if (secs < TM_MONTH * 2) { | 400 | if (secs < TM_MONTH * 2) { |
398 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 401 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
399 | secs * 1.0 / TM_WEEK); | 402 | secs * 1.0 / TM_WEEK); |
400 | return; | 403 | return; |
401 | } | 404 | } |
402 | if (secs < TM_YEAR * 2) { | 405 | if (secs < TM_YEAR * 2) { |
403 | htmlf("<span class='age-months'>%.0f months</span>", | 406 | htmlf("<span class='age-months'>%.0f months</span>", |
404 | secs * 1.0 / TM_MONTH); | 407 | secs * 1.0 / TM_MONTH); |
405 | return; | 408 | return; |
406 | } | 409 | } |
407 | htmlf("<span class='age-years'>%.0f years</span>", | 410 | htmlf("<span class='age-years'>%.0f years</span>", |
408 | secs * 1.0 / TM_YEAR); | 411 | secs * 1.0 / TM_YEAR); |
409 | } | 412 | } |
410 | 413 | ||
411 | void cgit_print_http_headers(struct cgit_context *ctx) | 414 | void cgit_print_http_headers(struct cgit_context *ctx) |
412 | { | 415 | { |
413 | if (ctx->page.mimetype && ctx->page.charset) | 416 | if (ctx->page.mimetype && ctx->page.charset) |
414 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, | 417 | htmlf("Content-Type: %s; charset=%s\n", ctx->page.mimetype, |
415 | ctx->page.charset); | 418 | ctx->page.charset); |
416 | else if (ctx->page.mimetype) | 419 | else if (ctx->page.mimetype) |
417 | htmlf("Content-Type: %s\n", ctx->page.mimetype); | 420 | htmlf("Content-Type: %s\n", ctx->page.mimetype); |
418 | if (ctx->page.filename) | 421 | if (ctx->page.filename) |
419 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", | 422 | htmlf("Content-Disposition: inline; filename=\"%s\"\n", |
420 | ctx->page.filename); | 423 | ctx->page.filename); |
421 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); | 424 | htmlf("Last-Modified: %s\n", http_date(ctx->page.modified)); |
422 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); | 425 | htmlf("Expires: %s\n", http_date(ctx->page.expires)); |
423 | html("\n"); | 426 | html("\n"); |
424 | } | 427 | } |
425 | 428 | ||
426 | void cgit_print_docstart(struct cgit_context *ctx) | 429 | void cgit_print_docstart(struct cgit_context *ctx) |
427 | { | 430 | { |
428 | html(cgit_doctype); | 431 | html(cgit_doctype); |
429 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 432 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); |
430 | html("<head>\n"); | 433 | html("<head>\n"); |
431 | html("<title>"); | 434 | html("<title>"); |
432 | html_txt(ctx->page.title); | 435 | html_txt(ctx->page.title); |
433 | html("</title>\n"); | 436 | html("</title>\n"); |
434 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 437 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
435 | if (ctx->cfg.robots && *ctx->cfg.robots) | 438 | if (ctx->cfg.robots && *ctx->cfg.robots) |
436 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); | 439 | htmlf("<meta name='robots' content='%s'/>\n", ctx->cfg.robots); |
437 | html("<link rel='stylesheet' type='text/css' href='"); | 440 | html("<link rel='stylesheet' type='text/css' href='"); |
438 | html_attr(ctx->cfg.css); | 441 | html_attr(ctx->cfg.css); |
439 | html("'/>\n"); | 442 | html("'/>\n"); |
440 | if (ctx->cfg.favicon) { | 443 | if (ctx->cfg.favicon) { |
441 | html("<link rel='shortcut icon' href='"); | 444 | html("<link rel='shortcut icon' href='"); |
442 | html_attr(ctx->cfg.favicon); | 445 | html_attr(ctx->cfg.favicon); |
443 | html("'/>\n"); | 446 | html("'/>\n"); |
444 | } | 447 | } |
445 | html("</head>\n"); | 448 | html("</head>\n"); |
446 | html("<body>\n"); | 449 | html("<body>\n"); |
447 | } | 450 | } |
448 | 451 | ||
449 | void cgit_print_docend() | 452 | void cgit_print_docend() |
450 | { | 453 | { |
451 | html("</div>"); | 454 | html("</div>"); |
452 | if (ctx.cfg.footer) | 455 | if (ctx.cfg.footer) |
453 | html_include(ctx.cfg.footer); | 456 | html_include(ctx.cfg.footer); |
454 | else { | 457 | else { |
455 | html("<div class='footer'>generated "); | 458 | html("<div class='footer'>generated "); |
456 | cgit_print_date(time(NULL), FMT_LONGDATE); | 459 | cgit_print_date(time(NULL), FMT_LONGDATE, ctx.cfg.local_time); |
457 | htmlf(" by cgit %s", cgit_version); | 460 | htmlf(" by cgit %s", cgit_version); |
458 | html("</div>\n"); | 461 | html("</div>\n"); |
459 | } | 462 | } |
460 | html("</body>\n</html>\n"); | 463 | html("</body>\n</html>\n"); |
461 | } | 464 | } |
462 | 465 | ||
463 | int print_branch_option(const char *refname, const unsigned char *sha1, | 466 | int print_branch_option(const char *refname, const unsigned char *sha1, |
464 | int flags, void *cb_data) | 467 | int flags, void *cb_data) |
465 | { | 468 | { |
466 | char *name = (char *)refname; | 469 | char *name = (char *)refname; |
467 | html_option(name, name, ctx.qry.head); | 470 | html_option(name, name, ctx.qry.head); |
468 | return 0; | 471 | return 0; |
469 | } | 472 | } |
470 | 473 | ||
471 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 474 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
472 | int flags, void *cb_data) | 475 | int flags, void *cb_data) |
473 | { | 476 | { |
474 | struct tag *tag; | 477 | struct tag *tag; |
475 | struct taginfo *info; | 478 | struct taginfo *info; |
476 | struct object *obj; | 479 | struct object *obj; |
477 | char buf[256], *url; | 480 | char buf[256], *url; |
478 | unsigned char fileid[20]; | 481 | unsigned char fileid[20]; |
479 | int *header = (int *)cb_data; | 482 | int *header = (int *)cb_data; |
480 | 483 | ||
481 | if (prefixcmp(refname, "refs/archives")) | 484 | if (prefixcmp(refname, "refs/archives")) |
482 | return 0; | 485 | return 0; |
483 | strncpy(buf, refname+14, sizeof(buf)); | 486 | strncpy(buf, refname+14, sizeof(buf)); |
484 | obj = parse_object(sha1); | 487 | obj = parse_object(sha1); |
485 | if (!obj) | 488 | if (!obj) |
486 | return 1; | 489 | return 1; |
487 | if (obj->type == OBJ_TAG) { | 490 | if (obj->type == OBJ_TAG) { |
488 | tag = lookup_tag(sha1); | 491 | tag = lookup_tag(sha1); |
489 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) | 492 | if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) |
490 | return 0; | 493 | return 0; |
491 | hashcpy(fileid, tag->tagged->sha1); | 494 | hashcpy(fileid, tag->tagged->sha1); |
492 | } else if (obj->type != OBJ_BLOB) { | 495 | } else if (obj->type != OBJ_BLOB) { |
493 | return 0; | 496 | return 0; |
494 | } else { | 497 | } else { |
495 | hashcpy(fileid, sha1); | 498 | hashcpy(fileid, sha1); |
496 | } | 499 | } |
497 | if (!*header) { | 500 | if (!*header) { |
498 | html("<h1>download</h1>\n"); | 501 | html("<h1>download</h1>\n"); |
499 | *header = 1; | 502 | *header = 1; |
500 | } | 503 | } |
501 | url = cgit_pageurl(ctx.qry.repo, "blob", | 504 | url = cgit_pageurl(ctx.qry.repo, "blob", |
502 | fmt("id=%s&path=%s", sha1_to_hex(fileid), | 505 | fmt("id=%s&path=%s", sha1_to_hex(fileid), |
503 | buf)); | 506 | buf)); |
504 | html_link_open(url, NULL, "menu"); | 507 | html_link_open(url, NULL, "menu"); |
505 | html_txt(strlpart(buf, 20)); | 508 | html_txt(strlpart(buf, 20)); |
506 | html_link_close(); | 509 | html_link_close(); |
507 | return 0; | 510 | return 0; |
508 | } | 511 | } |
509 | 512 | ||
510 | void add_hidden_formfields(int incl_head, int incl_search, char *page) | 513 | void add_hidden_formfields(int incl_head, int incl_search, char *page) |
511 | { | 514 | { |
512 | char *url; | 515 | char *url; |
513 | 516 | ||
514 | if (!ctx.cfg.virtual_root) { | 517 | if (!ctx.cfg.virtual_root) { |
515 | url = fmt("%s/%s", ctx.qry.repo, page); | 518 | url = fmt("%s/%s", ctx.qry.repo, page); |
516 | if (ctx.qry.path) | 519 | if (ctx.qry.path) |
517 | url = fmt("%s/%s", url, ctx.qry.path); | 520 | url = fmt("%s/%s", url, ctx.qry.path); |
518 | html_hidden("url", url); | 521 | html_hidden("url", url); |
519 | } | 522 | } |
520 | 523 | ||
521 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && | 524 | if (incl_head && ctx.qry.head && ctx.repo->defbranch && |
522 | strcmp(ctx.qry.head, ctx.repo->defbranch)) | 525 | strcmp(ctx.qry.head, ctx.repo->defbranch)) |
523 | html_hidden("h", ctx.qry.head); | 526 | html_hidden("h", ctx.qry.head); |
524 | 527 | ||
525 | if (ctx.qry.sha1) | 528 | if (ctx.qry.sha1) |
526 | html_hidden("id", ctx.qry.sha1); | 529 | html_hidden("id", ctx.qry.sha1); |
527 | if (ctx.qry.sha2) | 530 | if (ctx.qry.sha2) |
528 | html_hidden("id2", ctx.qry.sha2); | 531 | html_hidden("id2", ctx.qry.sha2); |
529 | 532 | ||
530 | if (incl_search) { | 533 | if (incl_search) { |
531 | if (ctx.qry.grep) | 534 | if (ctx.qry.grep) |
532 | html_hidden("qt", ctx.qry.grep); | 535 | html_hidden("qt", ctx.qry.grep); |
533 | if (ctx.qry.search) | 536 | if (ctx.qry.search) |
534 | html_hidden("q", ctx.qry.search); | 537 | html_hidden("q", ctx.qry.search); |
535 | } | 538 | } |
536 | } | 539 | } |
537 | 540 | ||
538 | char *hc(struct cgit_cmd *cmd, const char *page) | 541 | char *hc(struct cgit_cmd *cmd, const char *page) |
539 | { | 542 | { |
540 | return (strcmp(cmd->name, page) ? NULL : "active"); | 543 | return (strcmp(cmd->name, page) ? NULL : "active"); |
541 | } | 544 | } |
542 | 545 | ||
543 | void cgit_print_pageheader(struct cgit_context *ctx) | 546 | void cgit_print_pageheader(struct cgit_context *ctx) |
544 | { | 547 | { |
545 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); | 548 | struct cgit_cmd *cmd = cgit_get_cmd(ctx); |
546 | 549 | ||
547 | html("<table id='header'>\n"); | 550 | html("<table id='header'>\n"); |
548 | html("<tr>\n"); | 551 | html("<tr>\n"); |
549 | html("<td class='logo' rowspan='2'><a href='"); | 552 | html("<td class='logo' rowspan='2'><a href='"); |
550 | if (ctx->cfg.logo_link) | 553 | if (ctx->cfg.logo_link) |
551 | html_attr(ctx->cfg.logo_link); | 554 | html_attr(ctx->cfg.logo_link); |
552 | else | 555 | else |
553 | html_attr(cgit_rooturl()); | 556 | html_attr(cgit_rooturl()); |
554 | html("'><img src='"); | 557 | html("'><img src='"); |
555 | html_attr(ctx->cfg.logo); | 558 | html_attr(ctx->cfg.logo); |
556 | html("' alt='cgit logo'/></a></td>\n"); | 559 | html("' alt='cgit logo'/></a></td>\n"); |
557 | 560 | ||
558 | html("<td class='main'>"); | 561 | html("<td class='main'>"); |
559 | if (ctx->repo) { | 562 | if (ctx->repo) { |
560 | cgit_index_link("index", NULL, NULL, NULL, 0); | 563 | cgit_index_link("index", NULL, NULL, NULL, 0); |
561 | html(" : "); | 564 | html(" : "); |
562 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), | 565 | reporevlink(NULL, ctx->repo->name, NULL, hc(cmd, "summary"), |
563 | ctx->qry.head, NULL, NULL); | 566 | ctx->qry.head, NULL, NULL); |
564 | html("</td><td class='form'>"); | 567 | html("</td><td class='form'>"); |
565 | html("<form method='get' action=''>\n"); | 568 | html("<form method='get' action=''>\n"); |
566 | add_hidden_formfields(0, 1, ctx->qry.page); | 569 | add_hidden_formfields(0, 1, ctx->qry.page); |
567 | html("<select name='h' onchange='this.form.submit();'>\n"); | 570 | html("<select name='h' onchange='this.form.submit();'>\n"); |
568 | for_each_branch_ref(print_branch_option, ctx->qry.head); | 571 | for_each_branch_ref(print_branch_option, ctx->qry.head); |
569 | html("</select> "); | 572 | html("</select> "); |
570 | html("<input type='submit' name='' value='switch'/>"); | 573 | html("<input type='submit' name='' value='switch'/>"); |
571 | html("</form>"); | 574 | html("</form>"); |
572 | } else | 575 | } else |
573 | html_txt(ctx->cfg.root_title); | 576 | html_txt(ctx->cfg.root_title); |
574 | html("</td></tr>\n"); | 577 | html("</td></tr>\n"); |
575 | 578 | ||
576 | html("<tr><td class='sub'>"); | 579 | html("<tr><td class='sub'>"); |
577 | if (ctx->repo) { | 580 | if (ctx->repo) { |
578 | html_txt(ctx->repo->desc); | 581 | html_txt(ctx->repo->desc); |
579 | html("</td><td class='sub right'>"); | 582 | html("</td><td class='sub right'>"); |
580 | html_txt(ctx->repo->owner); | 583 | html_txt(ctx->repo->owner); |
581 | } else { | 584 | } else { |
582 | if (ctx->cfg.root_desc) | 585 | if (ctx->cfg.root_desc) |
583 | html_txt(ctx->cfg.root_desc); | 586 | html_txt(ctx->cfg.root_desc); |
584 | else if (ctx->cfg.index_info) | 587 | else if (ctx->cfg.index_info) |
585 | html_include(ctx->cfg.index_info); | 588 | html_include(ctx->cfg.index_info); |
586 | } | 589 | } |
587 | html("</td></tr></table>\n"); | 590 | html("</td></tr></table>\n"); |
588 | 591 | ||
589 | html("<table class='tabs'><tr><td>\n"); | 592 | html("<table class='tabs'><tr><td>\n"); |
590 | if (ctx->repo) { | 593 | if (ctx->repo) { |
591 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 594 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |
592 | ctx->qry.head, NULL, NULL); | 595 | ctx->qry.head, NULL, NULL); |
593 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, | 596 | cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, |
594 | ctx->qry.sha1, NULL); | 597 | ctx->qry.sha1, NULL); |
595 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, | 598 | cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, |
596 | NULL, NULL, 0, NULL, NULL); | 599 | NULL, NULL, 0, NULL, NULL); |
597 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, | 600 | cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, |
598 | ctx->qry.sha1, NULL); | 601 | ctx->qry.sha1, NULL); |
599 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), | 602 | cgit_commit_link("commit", NULL, hc(cmd, "commit"), |
600 | ctx->qry.head, ctx->qry.sha1); | 603 | ctx->qry.head, ctx->qry.sha1); |
601 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, | 604 | cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, |
602 | ctx->qry.sha1, ctx->qry.sha2, NULL); | 605 | ctx->qry.sha1, ctx->qry.sha2, NULL); |
603 | if (ctx->repo->readme) | 606 | if (ctx->repo->readme) |
604 | reporevlink("about", "about", NULL, | 607 | reporevlink("about", "about", NULL, |
605 | hc(cmd, "about"), ctx->qry.head, NULL, | 608 | hc(cmd, "about"), ctx->qry.head, NULL, |
606 | NULL); | 609 | NULL); |
607 | html("</td><td class='form'>"); | 610 | html("</td><td class='form'>"); |
608 | html("<form class='right' method='get' action='"); | 611 | html("<form class='right' method='get' action='"); |
609 | if (ctx->cfg.virtual_root) | 612 | if (ctx->cfg.virtual_root) |
610 | html_attr(cgit_fileurl(ctx->qry.repo, "log", | 613 | html_attr(cgit_fileurl(ctx->qry.repo, "log", |
611 | ctx->qry.path, NULL)); | 614 | ctx->qry.path, NULL)); |
612 | html("'>\n"); | 615 | html("'>\n"); |
613 | add_hidden_formfields(1, 0, "log"); | 616 | add_hidden_formfields(1, 0, "log"); |
614 | html("<select name='qt'>\n"); | 617 | html("<select name='qt'>\n"); |
615 | html_option("grep", "log msg", ctx->qry.grep); | 618 | html_option("grep", "log msg", ctx->qry.grep); |
616 | html_option("author", "author", ctx->qry.grep); | 619 | html_option("author", "author", ctx->qry.grep); |
617 | html_option("committer", "committer", ctx->qry.grep); | 620 | html_option("committer", "committer", ctx->qry.grep); |
618 | html("</select>\n"); | 621 | html("</select>\n"); |
619 | html("<input class='txt' type='text' size='10' name='q' value='"); | 622 | html("<input class='txt' type='text' size='10' name='q' value='"); |
620 | html_attr(ctx->qry.search); | 623 | html_attr(ctx->qry.search); |
621 | html("'/>\n"); | 624 | html("'/>\n"); |
622 | html("<input type='submit' value='search'/>\n"); | 625 | html("<input type='submit' value='search'/>\n"); |
623 | html("</form>\n"); | 626 | html("</form>\n"); |
624 | } else { | 627 | } else { |
625 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); | 628 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL, 0); |
626 | if (ctx->cfg.root_readme) | 629 | if (ctx->cfg.root_readme) |
627 | site_link("about", "about", NULL, hc(cmd, "about"), | 630 | site_link("about", "about", NULL, hc(cmd, "about"), |
628 | NULL, 0); | 631 | NULL, 0); |
629 | html("</td><td class='form'>"); | 632 | html("</td><td class='form'>"); |
630 | html("<form method='get' action='"); | 633 | html("<form method='get' action='"); |
631 | html_attr(cgit_rooturl()); | 634 | html_attr(cgit_rooturl()); |
632 | html("'>\n"); | 635 | html("'>\n"); |
633 | html("<input type='text' name='q' size='10' value='"); | 636 | html("<input type='text' name='q' size='10' value='"); |
634 | html_attr(ctx->qry.search); | 637 | html_attr(ctx->qry.search); |
635 | html("'/>\n"); | 638 | html("'/>\n"); |
636 | html("<input type='submit' value='search'/>\n"); | 639 | html("<input type='submit' value='search'/>\n"); |
637 | html("</form>"); | 640 | html("</form>"); |
638 | } | 641 | } |
639 | html("</td></tr></table>\n"); | 642 | html("</td></tr></table>\n"); |
640 | html("<div class='content'>"); | 643 | html("<div class='content'>"); |
641 | } | 644 | } |
642 | 645 | ||
643 | void cgit_print_filemode(unsigned short mode) | 646 | void cgit_print_filemode(unsigned short mode) |
644 | { | 647 | { |
645 | if (S_ISDIR(mode)) | 648 | if (S_ISDIR(mode)) |
646 | html("d"); | 649 | html("d"); |
647 | else if (S_ISLNK(mode)) | 650 | else if (S_ISLNK(mode)) |
648 | html("l"); | 651 | html("l"); |
649 | else if (S_ISGITLINK(mode)) | 652 | else if (S_ISGITLINK(mode)) |
650 | html("m"); | 653 | html("m"); |
651 | else | 654 | else |
652 | html("-"); | 655 | html("-"); |
653 | html_fileperm(mode >> 6); | 656 | html_fileperm(mode >> 6); |
654 | html_fileperm(mode >> 3); | 657 | html_fileperm(mode >> 3); |
655 | html_fileperm(mode); | 658 | html_fileperm(mode); |
656 | } | 659 | } |
657 | 660 | ||
658 | void cgit_print_snapshot_links(const char *repo, const char *head, | 661 | void cgit_print_snapshot_links(const char *repo, const char *head, |
659 | const char *hex, int snapshots) | 662 | const char *hex, int snapshots) |
660 | { | 663 | { |
661 | const struct cgit_snapshot_format* f; | 664 | const struct cgit_snapshot_format* f; |
662 | char *filename; | 665 | char *filename; |
663 | 666 | ||
664 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 667 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
665 | if (!(snapshots & f->bit)) | 668 | if (!(snapshots & f->bit)) |
666 | continue; | 669 | continue; |
667 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, | 670 | filename = fmt("%s-%s%s", cgit_repobasename(repo), hex, |
668 | f->suffix); | 671 | f->suffix); |
669 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, | 672 | cgit_snapshot_link(filename, NULL, NULL, (char *)head, |
670 | (char *)hex, filename); | 673 | (char *)hex, filename); |
671 | html("<br/>"); | 674 | html("<br/>"); |
672 | } | 675 | } |
673 | } | 676 | } |