summaryrefslogtreecommitdiffabout
path: root/ui-repolist.c
Unidiff
Diffstat (limited to 'ui-repolist.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-repolist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index d341193..d7311e4 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -21,25 +21,25 @@ void cgit_print_repolist(struct cacheitem *item)
21 "<th class='left'>Name</th>" 21 "<th class='left'>Name</th>"
22 "<th class='left'>Description</th>" 22 "<th class='left'>Description</th>"
23 "<th class='left'>Owner</th>" 23 "<th class='left'>Owner</th>"
24 "<th class='left'>Links</th></tr>\n"); 24 "<th class='left'>Links</th></tr>\n");
25 25
26 for (i=0; i<cgit_repolist.count; i++) { 26 for (i=0; i<cgit_repolist.count; i++) {
27 repo = &cgit_repolist.repos[i]; 27 repo = &cgit_repolist.repos[i];
28 html("<tr><td>"); 28 html("<tr><td>");
29 html_link_open(cgit_repourl(repo->url), NULL, NULL); 29 html_link_open(cgit_repourl(repo->url), NULL, NULL);
30 html_txt(repo->name); 30 html_txt(repo->name);
31 html_link_close(); 31 html_link_close();
32 html("</td><td>"); 32 html("</td><td>");
33 html_txt(repo->desc); 33 html_ntxt(cgit_max_repodesc_len, repo->desc);
34 html("</td><td>"); 34 html("</td><td>");
35 html_txt(repo->owner); 35 html_txt(repo->owner);
36 html("</td><td>"); 36 html("</td><td>");
37 html_link_open(cgit_pageurl(repo->name, "commit", NULL), 37 html_link_open(cgit_pageurl(repo->name, "commit", NULL),
38 "Commit: display last commit", NULL); 38 "Commit: display last commit", NULL);
39 html("C</a> "); 39 html("C</a> ");
40 html_link_open(cgit_pageurl(repo->name, "diff", NULL), 40 html_link_open(cgit_pageurl(repo->name, "diff", NULL),
41 "Diff: see changes introduced by last commit", NULL); 41 "Diff: see changes introduced by last commit", NULL);
42 html("D</a> "); 42 html("D</a> ");
43 html_link_open(cgit_pageurl(repo->name, "log", NULL), 43 html_link_open(cgit_pageurl(repo->name, "log", NULL),
44 "Log: show history of the main branch", NULL); 44 "Log: show history of the main branch", NULL);
45 html("L</a> "); 45 html("L</a> ");