summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index e991799..c99bcec 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -328,32 +328,39 @@ void cgit_commit_link(char *name, const char *title, const char *class,
328 name[ctx.cfg.max_msg_len - 2] = '.'; 328 name[ctx.cfg.max_msg_len - 2] = '.';
329 name[ctx.cfg.max_msg_len - 3] = '.'; 329 name[ctx.cfg.max_msg_len - 3] = '.';
330 } 330 }
331 331
332 char *delim; 332 char *delim;
333 333
334 delim = repolink(title, class, "commit", head, path); 334 delim = repolink(title, class, "commit", head, path);
335 if (rev && strcmp(rev, ctx.qry.head)) { 335 if (rev && strcmp(rev, ctx.qry.head)) {
336 html(delim); 336 html(delim);
337 html("id="); 337 html("id=");
338 html_url_arg(rev); 338 html_url_arg(rev);
339 delim = "&"; 339 delim = "&";
340 } 340 }
341 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { 341 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) {
342 html(delim); 342 html(delim);
343 html("ss=1"); 343 html("ss=1");
344 delim = "&";
345 }
346 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
347 html(delim);
348 html("context=");
349 htmlf("%d", ctx.qry.context);
350 delim = "&";
344 } 351 }
345 html("'>"); 352 html("'>");
346 html_txt(name); 353 html_txt(name);
347 html("</a>"); 354 html("</a>");
348} 355}
349 356
350void cgit_refs_link(const char *name, const char *title, const char *class, 357void cgit_refs_link(const char *name, const char *title, const char *class,
351 const char *head, const char *rev, const char *path) 358 const char *head, const char *rev, const char *path)
352{ 359{
353 reporevlink("refs", name, title, class, head, rev, path); 360 reporevlink("refs", name, title, class, head, rev, path);
354} 361}
355 362
356void cgit_snapshot_link(const char *name, const char *title, const char *class, 363void cgit_snapshot_link(const char *name, const char *title, const char *class,
357 const char *head, const char *rev, 364 const char *head, const char *rev,
358 const char *archivename) 365 const char *archivename)
359{ 366{
@@ -369,32 +376,39 @@ void cgit_diff_link(const char *name, const char *title, const char *class,
369 delim = repolink(title, class, "diff", head, path); 376 delim = repolink(title, class, "diff", head, path);
370 if (new_rev && ctx.qry.head != NULL && strcmp(new_rev, ctx.qry.head)) { 377 if (new_rev && ctx.qry.head != NULL && strcmp(new_rev, ctx.qry.head)) {
371 html(delim); 378 html(delim);
372 html("id="); 379 html("id=");
373 html_url_arg(new_rev); 380 html_url_arg(new_rev);
374 delim = "&amp;"; 381 delim = "&amp;";
375 } 382 }
376 if (old_rev) { 383 if (old_rev) {
377 html(delim); 384 html(delim);
378 html("id2="); 385 html("id2=");
379 html_url_arg(old_rev); 386 html_url_arg(old_rev);
380 delim = "&amp;"; 387 delim = "&amp;";
381 } 388 }
382 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) { 389 if ((ctx.qry.ssdiff && !toggle_ssdiff) || (!ctx.qry.ssdiff && toggle_ssdiff)) {
383 html(delim); 390 html(delim);
384 html("ss=1"); 391 html("ss=1");
392 delim = "&amp;";
393 }
394 if (ctx.qry.context > 0 && ctx.qry.context != 3) {
395 html(delim);
396 html("context=");
397 htmlf("%d", ctx.qry.context);
398 delim = "&amp;";
385 } 399 }
386 html("'>"); 400 html("'>");
387 html_txt(name); 401 html_txt(name);
388 html("</a>"); 402 html("</a>");
389} 403}
390 404
391void cgit_patch_link(const char *name, const char *title, const char *class, 405void cgit_patch_link(const char *name, const char *title, const char *class,
392 const char *head, const char *rev, const char *path) 406 const char *head, const char *rev, const char *path)
393{ 407{
394 reporevlink("patch", name, title, class, head, rev, path); 408 reporevlink("patch", name, title, class, head, rev, path);
395} 409}
396 410
397void cgit_stats_link(const char *name, const char *title, const char *class, 411void cgit_stats_link(const char *name, const char *title, const char *class,
398 const char *head, const char *path) 412 const char *head, const char *path)
399{ 413{
400 reporevlink("stats", name, title, class, head, NULL, path); 414 reporevlink("stats", name, title, class, head, NULL, path);