summaryrefslogtreecommitdiffabout
path: root/cgit.c
Side-by-side diff
Diffstat (limited to 'cgit.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c47
1 files changed, 44 insertions, 3 deletions
diff --git a/cgit.c b/cgit.c
index a47cad0..5a93fcd 100644
--- a/cgit.c
+++ b/cgit.c
@@ -14,2 +14,3 @@
#include "ui-shared.h"
+#include "scan-tree.h"
@@ -322,2 +323,31 @@ static void process_request(void *cbdata)
+int cmp_repos(const void *a, const void *b)
+{
+ const struct cgit_repo *ra = a, *rb = b;
+ return strcmp(ra->url, rb->url);
+}
+
+void print_repo(struct cgit_repo *repo)
+{
+ printf("repo.url=%s\n", repo->url);
+ printf("repo.name=%s\n", repo->name);
+ printf("repo.path=%s\n", repo->path);
+ if (repo->owner)
+ printf("repo.owner=%s\n", repo->owner);
+ if (repo->desc)
+ printf("repo.desc=%s\n", repo->desc);
+ if (repo->readme)
+ printf("repo.readme=%s\n", repo->readme);
+ printf("\n");
+}
+
+void print_repolist(struct cgit_repolist *list)
+{
+ int i;
+
+ for(i = 0; i < list->count; i++)
+ print_repo(&list->repos[i]);
+}
+
+
static void cgit_parse_args(int argc, const char **argv)
@@ -325,2 +355,3 @@ static void cgit_parse_args(int argc, const char **argv)
int i;
+ int scan = 0;
@@ -353,2 +384,12 @@ static void cgit_parse_args(int argc, const char **argv)
}
+ if (!strncmp(argv[i], "--scan-tree=", 12)) {
+ scan++;
+ scan_tree(argv[i] + 12);
+ }
+ }
+ if (scan) {
+ qsort(cgit_repolist.repos, cgit_repolist.count,
+ sizeof(struct cgit_repo), cmp_repos);
+ print_repolist(&cgit_repolist);
+ exit(0);
}
@@ -385,5 +426,2 @@ int main(int argc, const char **argv)
- parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG,
- config_cb);
- ctx.repo = NULL;
if (getenv("SCRIPT_NAME"))
@@ -393,2 +431,5 @@ int main(int argc, const char **argv)
cgit_parse_args(argc, argv);
+ parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG,
+ config_cb);
+ ctx.repo = NULL;
http_parse_querystring(ctx.qry.raw, querystring_cb);