all repos — cgit @ 10451797fa2370aab6f4146c86e0fa939a9a982b

a hyperfast web frontend for git written in c

Fix cgit_parse_url when a repo url is contained in another repo url

For example, if I have two repos (remove-suffix is enabled):
  /foo
  /foo/bar

http://cgit/foo/bar/ is interpreted as "repository 'foo', command 'bar'"
instead of "repository 'foo/bar'"
Julian Maurice julian.maurice@biblibre.com
Fri, 28 Mar 2014 23:18:29 +0100
commit

10451797fa2370aab6f4146c86e0fa939a9a982b

parent

88b93113235452d47e7ce474689327c43e64b843

1 files changed, 14 insertions(+), 9 deletions(-)

jump to
M parsing.cparsing.c

@@ -17,7 +17,8 @@ *

*/ void cgit_parse_url(const char *url) { - char *cmd, *p; + char *c, *cmd, *p; + struct cgit_repo *repo; ctx.repo = NULL; if (!url || url[0] == '\0')

@@ -29,16 +30,20 @@ ctx.qry.repo = ctx.repo->url;

return; } - cmd = strchr(url, '/'); - while (!ctx.repo && cmd) { - cmd[0] = '\0'; - ctx.repo = cgit_get_repoinfo(url); - if (ctx.repo == NULL) { - cmd[0] = '/'; - cmd = strchr(cmd + 1, '/'); - continue; + cmd = NULL; + c = strchr(url, '/'); + while (c) { + c[0] = '\0'; + repo = cgit_get_repoinfo(url); + if (repo) { + ctx.repo = repo; + cmd = c; } + c[0] = '/'; + c = strchr(c + 1, '/'); + } + if (ctx.repo) { ctx.qry.repo = ctx.repo->url; p = strchr(cmd + 1, '/'); if (p) {