summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-shared.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/ui-shared.c b/ui-shared.c
index c23bc75..a2f636c 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -200,167 +200,167 @@ static char *repolink(char *title, char *class, char *page, char *head,
200 html("'"); 200 html("'");
201 } 201 }
202 if (class) { 202 if (class) {
203 html(" class='"); 203 html(" class='");
204 html_attr(class); 204 html_attr(class);
205 html("'"); 205 html("'");
206 } 206 }
207 html(" href='"); 207 html(" href='");
208 if (ctx.cfg.virtual_root) { 208 if (ctx.cfg.virtual_root) {
209 html_attr(ctx.cfg.virtual_root); 209 html_attr(ctx.cfg.virtual_root);
210 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') 210 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
211 html("/"); 211 html("/");
212 html_attr(ctx.repo->url); 212 html_attr(ctx.repo->url);
213 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 213 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
214 html("/"); 214 html("/");
215 if (page) { 215 if (page) {
216 html(page); 216 html(page);
217 html("/"); 217 html("/");
218 if (path) 218 if (path)
219 html_attr(path); 219 html_attr(path);
220 } 220 }
221 } else { 221 } else {
222 html(ctx.cfg.script_name); 222 html(ctx.cfg.script_name);
223 html("?url="); 223 html("?url=");
224 html_attr(ctx.repo->url); 224 html_url_arg(ctx.repo->url);
225 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 225 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
226 html("/"); 226 html("/");
227 if (page) { 227 if (page) {
228 html(page); 228 html_url_arg(page);
229 html("/"); 229 html("/");
230 if (path) 230 if (path)
231 html_attr(path); 231 html_url_arg(path);
232 } 232 }
233 delim = "&"; 233 delim = "&";
234 } 234 }
235 if (head && strcmp(head, ctx.repo->defbranch)) { 235 if (head && strcmp(head, ctx.repo->defbranch)) {
236 html(delim); 236 html(delim);
237 html("h="); 237 html("h=");
238 html_attr(head); 238 html_url_arg(head);
239 delim = "&"; 239 delim = "&";
240 } 240 }
241 return fmt("%s", delim); 241 return fmt("%s", delim);
242} 242}
243 243
244static void reporevlink(char *page, char *name, char *title, char *class, 244static void reporevlink(char *page, char *name, char *title, char *class,
245 char *head, char *rev, char *path) 245 char *head, char *rev, char *path)
246{ 246{
247 char *delim; 247 char *delim;
248 248
249 delim = repolink(title, class, page, head, path); 249 delim = repolink(title, class, page, head, path);
250 if (rev && strcmp(rev, ctx.qry.head)) { 250 if (rev && strcmp(rev, ctx.qry.head)) {
251 html(delim); 251 html(delim);
252 html("id="); 252 html("id=");
253 html_attr(rev); 253 html_url_arg(rev);
254 } 254 }
255 html("'>"); 255 html("'>");
256 html_txt(name); 256 html_txt(name);
257 html("</a>"); 257 html("</a>");
258} 258}
259 259
260void cgit_tree_link(char *name, char *title, char *class, char *head, 260void cgit_tree_link(char *name, char *title, char *class, char *head,
261 char *rev, char *path) 261 char *rev, char *path)
262{ 262{
263 reporevlink("tree", name, title, class, head, rev, path); 263 reporevlink("tree", name, title, class, head, rev, path);
264} 264}
265 265
266void cgit_plain_link(char *name, char *title, char *class, char *head, 266void cgit_plain_link(char *name, char *title, char *class, char *head,
267 char *rev, char *path) 267 char *rev, char *path)
268{ 268{
269 reporevlink("plain", name, title, class, head, rev, path); 269 reporevlink("plain", name, title, class, head, rev, path);
270} 270}
271 271
272void cgit_log_link(char *name, char *title, char *class, char *head, 272void cgit_log_link(char *name, char *title, char *class, char *head,
273 char *rev, char *path, int ofs, char *grep, char *pattern) 273 char *rev, char *path, int ofs, char *grep, char *pattern)
274{ 274{
275 char *delim; 275 char *delim;
276 276
277 delim = repolink(title, class, "log", head, path); 277 delim = repolink(title, class, "log", head, path);
278 if (rev && strcmp(rev, ctx.qry.head)) { 278 if (rev && strcmp(rev, ctx.qry.head)) {
279 html(delim); 279 html(delim);
280 html("id="); 280 html("id=");
281 html_attr(rev); 281 html_url_arg(rev);
282 delim = "&"; 282 delim = "&";
283 } 283 }
284 if (grep && pattern) { 284 if (grep && pattern) {
285 html(delim); 285 html(delim);
286 html("qt="); 286 html("qt=");
287 html_attr(grep); 287 html_url_arg(grep);
288 delim = "&"; 288 delim = "&";
289 html(delim); 289 html(delim);
290 html("q="); 290 html("q=");
291 html_attr(pattern); 291 html_url_arg(pattern);
292 } 292 }
293 if (ofs > 0) { 293 if (ofs > 0) {
294 html(delim); 294 html(delim);
295 html("ofs="); 295 html("ofs=");
296 htmlf("%d", ofs); 296 htmlf("%d", ofs);
297 } 297 }
298 html("'>"); 298 html("'>");
299 html_txt(name); 299 html_txt(name);
300 html("</a>"); 300 html("</a>");
301} 301}
302 302
303void cgit_commit_link(char *name, char *title, char *class, char *head, 303void cgit_commit_link(char *name, char *title, char *class, char *head,
304 char *rev) 304 char *rev)
305{ 305{
306 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { 306 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
307 name[ctx.cfg.max_msg_len] = '\0'; 307 name[ctx.cfg.max_msg_len] = '\0';
308 name[ctx.cfg.max_msg_len - 1] = '.'; 308 name[ctx.cfg.max_msg_len - 1] = '.';
309 name[ctx.cfg.max_msg_len - 2] = '.'; 309 name[ctx.cfg.max_msg_len - 2] = '.';
310 name[ctx.cfg.max_msg_len - 3] = '.'; 310 name[ctx.cfg.max_msg_len - 3] = '.';
311 } 311 }
312 reporevlink("commit", name, title, class, head, rev, NULL); 312 reporevlink("commit", name, title, class, head, rev, NULL);
313} 313}
314 314
315void cgit_refs_link(char *name, char *title, char *class, char *head, 315void cgit_refs_link(char *name, char *title, char *class, char *head,
316 char *rev, char *path) 316 char *rev, char *path)
317{ 317{
318 reporevlink("refs", name, title, class, head, rev, path); 318 reporevlink("refs", name, title, class, head, rev, path);
319} 319}
320 320
321void cgit_snapshot_link(char *name, char *title, char *class, char *head, 321void cgit_snapshot_link(char *name, char *title, char *class, char *head,
322 char *rev, char *archivename) 322 char *rev, char *archivename)
323{ 323{
324 reporevlink("snapshot", name, title, class, head, rev, archivename); 324 reporevlink("snapshot", name, title, class, head, rev, archivename);
325} 325}
326 326
327void cgit_diff_link(char *name, char *title, char *class, char *head, 327void cgit_diff_link(char *name, char *title, char *class, char *head,
328 char *new_rev, char *old_rev, char *path) 328 char *new_rev, char *old_rev, char *path)
329{ 329{
330 char *delim; 330 char *delim;
331 331
332 delim = repolink(title, class, "diff", head, path); 332 delim = repolink(title, class, "diff", head, path);
333 if (new_rev && strcmp(new_rev, ctx.qry.head)) { 333 if (new_rev && strcmp(new_rev, ctx.qry.head)) {
334 html(delim); 334 html(delim);
335 html("id="); 335 html("id=");
336 html_attr(new_rev); 336 html_url_arg(new_rev);
337 delim = "&amp;"; 337 delim = "&amp;";
338 } 338 }
339 if (old_rev) { 339 if (old_rev) {
340 html(delim); 340 html(delim);
341 html("id2="); 341 html("id2=");
342 html_attr(old_rev); 342 html_url_arg(old_rev);
343 } 343 }
344 html("'>"); 344 html("'>");
345 html_txt(name); 345 html_txt(name);
346 html("</a>"); 346 html("</a>");
347} 347}
348 348
349void cgit_patch_link(char *name, char *title, char *class, char *head, 349void cgit_patch_link(char *name, char *title, char *class, char *head,
350 char *rev) 350 char *rev)
351{ 351{
352 reporevlink("patch", name, title, class, head, rev, NULL); 352 reporevlink("patch", name, title, class, head, rev, NULL);
353} 353}
354 354
355void cgit_object_link(struct object *obj) 355void cgit_object_link(struct object *obj)
356{ 356{
357 char *page, *arg, *url; 357 char *page, *arg, *url;
358 358
359 if (obj->type == OBJ_COMMIT) { 359 if (obj->type == OBJ_COMMIT) {
360 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 360 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
361 ctx.qry.head, sha1_to_hex(obj->sha1)); 361 ctx.qry.head, sha1_to_hex(obj->sha1));
362 return; 362 return;
363 } else if (obj->type == OBJ_TREE) { 363 } else if (obj->type == OBJ_TREE) {
364 page = "tree"; 364 page = "tree";
365 arg = "id"; 365 arg = "id";
366 } else if (obj->type == OBJ_TAG) { 366 } else if (obj->type == OBJ_TAG) {