summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c5
-rw-r--r--ui-shared.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 2eddd2d..ee3f6fe 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -244,32 +244,37 @@ static char *repolink(char *title, char *class, char *page, char *head,
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_url_arg(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_summary_link(char *name, char *title, char *class, char *head)
261{
262 reporevlink(NULL, name, title, class, head, NULL, NULL);
263}
264
260void cgit_tree_link(char *name, char *title, char *class, char *head, 265void cgit_tree_link(char *name, char *title, char *class, char *head,
261 char *rev, char *path) 266 char *rev, char *path)
262{ 267{
263 reporevlink("tree", name, title, class, head, rev, path); 268 reporevlink("tree", name, title, class, head, rev, path);
264} 269}
265 270
266void cgit_plain_link(char *name, char *title, char *class, char *head, 271void cgit_plain_link(char *name, char *title, char *class, char *head,
267 char *rev, char *path) 272 char *rev, char *path)
268{ 273{
269 reporevlink("plain", name, title, class, head, rev, path); 274 reporevlink("plain", name, title, class, head, rev, path);
270} 275}
271 276
272void cgit_log_link(char *name, char *title, char *class, char *head, 277void cgit_log_link(char *name, char *title, char *class, char *head,
273 char *rev, char *path, int ofs, char *grep, char *pattern) 278 char *rev, char *path, int ofs, char *grep, char *pattern)
274{ 279{
275 char *delim; 280 char *delim;
diff --git a/ui-shared.h b/ui-shared.h
index 747f092..0cd5ed1 100644
--- a/ui-shared.h
+++ b/ui-shared.h
@@ -1,28 +1,29 @@
1#ifndef UI_SHARED_H 1#ifndef UI_SHARED_H
2#define UI_SHARED_H 2#define UI_SHARED_H
3 3
4extern char *cgit_hosturl(); 4extern char *cgit_hosturl();
5extern char *cgit_repourl(const char *reponame); 5extern char *cgit_repourl(const char *reponame);
6extern char *cgit_fileurl(const char *reponame, const char *pagename, 6extern char *cgit_fileurl(const char *reponame, const char *pagename,
7 const char *filename, const char *query); 7 const char *filename, const char *query);
8extern char *cgit_pageurl(const char *reponame, const char *pagename, 8extern char *cgit_pageurl(const char *reponame, const char *pagename,
9 const char *query); 9 const char *query);
10 10
11extern void cgit_index_link(char *name, char *title, char *class, 11extern void cgit_index_link(char *name, char *title, char *class,
12 char *pattern, int ofs); 12 char *pattern, int ofs);
13extern void cgit_summary_link(char *name, char *title, char *class, char *head);
13extern void cgit_tree_link(char *name, char *title, char *class, char *head, 14extern void cgit_tree_link(char *name, char *title, char *class, char *head,
14 char *rev, char *path); 15 char *rev, char *path);
15extern void cgit_plain_link(char *name, char *title, char *class, char *head, 16extern void cgit_plain_link(char *name, char *title, char *class, char *head,
16 char *rev, char *path); 17 char *rev, char *path);
17extern void cgit_log_link(char *name, char *title, char *class, char *head, 18extern void cgit_log_link(char *name, char *title, char *class, char *head,
18 char *rev, char *path, int ofs, char *grep, 19 char *rev, char *path, int ofs, char *grep,
19 char *pattern); 20 char *pattern);
20extern void cgit_commit_link(char *name, char *title, char *class, char *head, 21extern void cgit_commit_link(char *name, char *title, char *class, char *head,
21 char *rev); 22 char *rev);
22extern void cgit_patch_link(char *name, char *title, char *class, char *head, 23extern void cgit_patch_link(char *name, char *title, char *class, char *head,
23 char *rev); 24 char *rev);
24extern void cgit_refs_link(char *name, char *title, char *class, char *head, 25extern void cgit_refs_link(char *name, char *title, char *class, char *head,
25 char *rev, char *path); 26 char *rev, char *path);
26extern void cgit_snapshot_link(char *name, char *title, char *class, 27extern void cgit_snapshot_link(char *name, char *title, char *class,
27 char *head, char *rev, char *archivename); 28 char *head, char *rev, char *archivename);
28extern void cgit_diff_link(char *name, char *title, char *class, char *head, 29extern void cgit_diff_link(char *name, char *title, char *class, char *head,