diff options
author | Lars Hjemli | 2007-02-03 15:02:55 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-02-04 21:47:46 +0100 |
commit | ce1c7336e5b3e3ebe8f8c9029c405aedec98c208 (patch) | |
tree | b51a59a9552b32519cf694c0f5dc68c5a739069c /ui-repolist.c | |
parent | ebd7b0fbc378e9beca0b275c5cd9150c930bde56 (diff) | |
download | cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.tar.gz cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.tar.bz2 cgit-ce1c7336e5b3e3ebe8f8c9029c405aedec98c208.zip |
Read repo-info from /etc/cgitrc
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>
Diffstat (limited to 'ui-repolist.c')
-rw-r--r-- | ui-repolist.c | 39 |
1 files changed, 8 insertions, 31 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index bd4af59..011ec95 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -10,54 +10,31 @@ | |||
10 | 10 | ||
11 | void cgit_print_repolist(struct cacheitem *item) | 11 | void cgit_print_repolist(struct cacheitem *item) |
12 | { | 12 | { |
13 | DIR *d; | 13 | struct repoinfo *repo; |
14 | struct dirent *de; | 14 | int i; |
15 | struct stat st; | ||
16 | char *name; | ||
17 | 15 | ||
18 | chdir(cgit_root); | ||
19 | cgit_print_docstart(cgit_root_title, item); | 16 | cgit_print_docstart(cgit_root_title, item); |
20 | cgit_print_pageheader(cgit_root_title, 0); | 17 | cgit_print_pageheader(cgit_root_title, 0); |
21 | 18 | ||
22 | if (!(d = opendir("."))) { | ||
23 | cgit_print_error(fmt("Unable to scan repository directory: %s", | ||
24 | strerror(errno))); | ||
25 | cgit_print_docend(); | ||
26 | return; | ||
27 | } | ||
28 | |||
29 | html("<h2>Repositories</h2>\n"); | 19 | html("<h2>Repositories</h2>\n"); |
30 | html("<table class='list nowrap'>"); | 20 | html("<table class='list nowrap'>"); |
31 | html("<tr class='nohover'>" | 21 | html("<tr class='nohover'>" |
32 | "<th class='left'>Name</th>" | 22 | "<th class='left'>Name</th>" |
33 | "<th class='left'>Description</th>" | 23 | "<th class='left'>Description</th>" |
34 | "<th class='left'>Owner</th></tr>\n"); | 24 | "<th class='left'>Owner</th></tr>\n"); |
35 | while ((de = readdir(d)) != NULL) { | ||
36 | if (de->d_name[0] == '.') | ||
37 | continue; | ||
38 | if (stat(de->d_name, &st) < 0) | ||
39 | continue; | ||
40 | if (!S_ISDIR(st.st_mode)) | ||
41 | continue; | ||
42 | |||
43 | cgit_repo_name = cgit_repo_desc = cgit_repo_owner = NULL; | ||
44 | name = fmt("%s/info/cgit", de->d_name); | ||
45 | if (cgit_read_config(name, cgit_repo_config_cb)) | ||
46 | continue; | ||
47 | 25 | ||
26 | for (i=0; i<cgit_repolist.count; i++) { | ||
27 | repo = &cgit_repolist.repos[i]; | ||
48 | html("<tr><td>"); | 28 | html("<tr><td>"); |
49 | html_link_open(cgit_repourl(de->d_name), NULL, NULL); | 29 | html_link_open(cgit_repourl(repo->url), NULL, NULL); |
50 | html_txt(cgit_repo_name); | 30 | html_txt(repo->name); |
51 | html_link_close(); | 31 | html_link_close(); |
52 | html("</td><td>"); | 32 | html("</td><td>"); |
53 | html_txt(cgit_repo_desc); | 33 | html_txt(repo->desc); |
54 | html("</td><td>"); | 34 | html("</td><td>"); |
55 | html_txt(cgit_repo_owner); | 35 | html_txt(repo->owner); |
56 | html("</td></tr>\n"); | 36 | html("</td></tr>\n"); |
57 | } | 37 | } |
58 | closedir(d); | ||
59 | html("</table>"); | 38 | html("</table>"); |
60 | cgit_print_docend(); | 39 | cgit_print_docend(); |
61 | } | 40 | } |
62 | |||
63 | |||