all repos — cgit @ 271ac5a7e6b5b67f54fdd16e8542aa282f1c7140

a hyperfast web frontend for git written in c

ui-repolist.c (view raw)

 1/* ui-repolist.c: functions for generating the repolist page
 2 *
 3 * Copyright (C) 2006 Lars Hjemli
 4 *
 5 * Licensed under GNU General Public License v2
 6 *   (see COPYING for full license text)
 7 */
 8
 9#include "cgit.h"
10
11void cgit_print_repolist(struct cacheitem *item)
12{
13	struct repoinfo *repo;
14	int i;
15	char *last_group = NULL;
16
17	cgit_print_docstart(cgit_root_title, item);
18	cgit_print_pageheader(cgit_root_title, 0);
19
20	html("<table class='list nowrap'>");
21	if (cgit_index_header) {
22		html("<tr class='nohover'><td colspan='4' class='include-block'>");
23		html_include(cgit_index_header);
24		html("</td></tr>");
25	}
26	html("<tr class='nohover'>"
27	     "<th class='left'>Name</th>"
28	     "<th class='left'>Description</th>"
29	     "<th class='left'>Owner</th>"
30	     "<th class='left'>Links</th></tr>\n");
31
32	for (i=0; i<cgit_repolist.count; i++) {
33		repo = &cgit_repolist.repos[i];
34		if ((last_group == NULL && repo->group != NULL) ||
35		    (last_group != NULL && repo->group == NULL) ||
36		    (last_group != NULL && repo->group!= NULL &&
37		     strcmp(repo->group, last_group))) {
38			html("<tr class='nohover'><td colspan='4' class='repogroup'>");
39			html_txt(repo->group);
40			html("</td></tr>");
41			last_group = repo->group;
42		}
43		html("<tr><td>");
44		html_link_open(cgit_repourl(repo->url), NULL, NULL);
45		html_txt(repo->name);
46		html_link_close();
47		html("</td><td>");
48		html_ntxt(cgit_max_repodesc_len, repo->desc);
49		html("</td><td>");
50		html_txt(repo->owner);
51		html("</td><td>");
52		html_link_open(cgit_pageurl(repo->name, "commit", NULL),
53			       "Commit: display last commit", NULL);
54		html("C</a> ");
55		html_link_open(cgit_pageurl(repo->name, "diff", NULL),
56			       "Diff: see changes introduced by last commit", NULL);
57		html("D</a> ");
58		html_link_open(cgit_pageurl(repo->name, "log", NULL),
59			       "Log: show history of the main branch", NULL);
60		html("L</a> ");
61		html_link_open(cgit_pageurl(repo->name, "tree", NULL),
62			       "Tree: browse the files in the main branch", NULL);
63		html("T</a>");
64		html("</td></tr>\n");
65	}
66	html("</table>");
67	cgit_print_docend();
68}