27 Content-Disposition: inline; filename=" 42c Last-Modified: Sat, 23 May 2026 06:17:20 GMT Expires: Tue, 20 May 2036 06:17:20 GMT ETag: "2ce0d6a62a885a83e700fb885e8dc357bc282e10" /* ui-repolist.c: functions for generating the repolist page * * Copyright (C) 2006 Lars Hjemli * * Licensed under GNU General Public License v2 * (see COPYING for full license text) */ #include "cgit.h" void cgit_print_repolist(struct cacheitem *item) { struct repoinfo *repo; int i; cgit_print_docstart(cgit_root_title, item); cgit_print_pageheader(cgit_root_title, 0); html("
| Name | " "Description | " "Owner | "); html_link_open(cgit_repourl(repo->url), NULL, NULL); html_txt(repo->name); html_link_close(); html(" | "); html_txt(repo->desc); html(" | "); html_txt(repo->owner); html(" | \n"); } html("
|---|