ce1c7336e5
This makes cgit read all repo-info from the configfile, instead of scanning for possible git-dirs below a common root path. This is primarily done to get better security (separate physical path from logical repo-name). In /etc/cgitrc each repo is registered with the following keys: repo.url repo.name repo.path repo.desc repo.owner Note: *Required keys are repo.url and repo.path, all others are optional *Each occurrence of repo.url starts a new repository registration *Default value for repo.name is taken from repo.url *The value of repo.url cannot contain characters with special meaning for urls (i.e. one of /?%&), while repo.name can contain anything. Example: repo.url=cgit-pub repo.name=cgit/public repo.path=/pub/git/cgit repo.desc=My public cgit repo repo.owner=Lars Hjemli repo.url=cgit-priv repo.name=cgit/private repo.path=/home/larsh/src/cgit/.git repo.desc=My private cgit repo repo.owner=Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com>
41 рядки
968 B
C
41 рядки
968 B
C
/* 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("<h2>Repositories</h2>\n");
|
|
html("<table class='list nowrap'>");
|
|
html("<tr class='nohover'>"
|
|
"<th class='left'>Name</th>"
|
|
"<th class='left'>Description</th>"
|
|
"<th class='left'>Owner</th></tr>\n");
|
|
|
|
for (i=0; i<cgit_repolist.count; i++) {
|
|
repo = &cgit_repolist.repos[i];
|
|
html("<tr><td>");
|
|
html_link_open(cgit_repourl(repo->url), NULL, NULL);
|
|
html_txt(repo->name);
|
|
html_link_close();
|
|
html("</td><td>");
|
|
html_txt(repo->desc);
|
|
html("</td><td>");
|
|
html_txt(repo->owner);
|
|
html("</td></tr>\n");
|
|
}
|
|
html("</table>");
|
|
cgit_print_docend();
|
|
}
|