mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
ui-repolist: Rename section-sort to repository-sort.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
8f40be229c
commit
fdfb6a6d80
6
cgit.c
6
cgit.c
@ -233,8 +233,8 @@ void config_cb(const char *name, const char *value)
|
|||||||
ctx.cfg.scan_hidden_path = atoi(value);
|
ctx.cfg.scan_hidden_path = atoi(value);
|
||||||
else if (!strcmp(name, "section-from-path"))
|
else if (!strcmp(name, "section-from-path"))
|
||||||
ctx.cfg.section_from_path = atoi(value);
|
ctx.cfg.section_from_path = atoi(value);
|
||||||
else if (!strcmp(name, "section-sort"))
|
else if (!strcmp(name, "repository-sort"))
|
||||||
ctx.cfg.section_sort = xstrdup(value);
|
ctx.cfg.repository_sort = xstrdup(value);
|
||||||
else if (!strcmp(name, "source-filter"))
|
else if (!strcmp(name, "source-filter"))
|
||||||
ctx.cfg.source_filter = new_filter(value, SOURCE);
|
ctx.cfg.source_filter = new_filter(value, SOURCE);
|
||||||
else if (!strcmp(name, "summary-log"))
|
else if (!strcmp(name, "summary-log"))
|
||||||
@ -364,7 +364,7 @@ static void prepare_context(struct cgit_context *ctx)
|
|||||||
ctx->cfg.scan_hidden_path = 0;
|
ctx->cfg.scan_hidden_path = 0;
|
||||||
ctx->cfg.script_name = CGIT_SCRIPT_NAME;
|
ctx->cfg.script_name = CGIT_SCRIPT_NAME;
|
||||||
ctx->cfg.section = "";
|
ctx->cfg.section = "";
|
||||||
ctx->cfg.section_sort = "name";
|
ctx->cfg.repository_sort = "name";
|
||||||
ctx->cfg.summary_branches = 10;
|
ctx->cfg.summary_branches = 10;
|
||||||
ctx->cfg.summary_log = 10;
|
ctx->cfg.summary_log = 10;
|
||||||
ctx->cfg.summary_tags = 10;
|
ctx->cfg.summary_tags = 10;
|
||||||
|
2
cgit.h
2
cgit.h
@ -187,7 +187,7 @@ struct cgit_config {
|
|||||||
char *root_readme;
|
char *root_readme;
|
||||||
char *script_name;
|
char *script_name;
|
||||||
char *section;
|
char *section;
|
||||||
char *section_sort;
|
char *repository_sort;
|
||||||
char *virtual_root;
|
char *virtual_root;
|
||||||
char *strict_export;
|
char *strict_export;
|
||||||
int cache_size;
|
int cache_size;
|
||||||
|
@ -72,7 +72,7 @@ cache-static-ttl::
|
|||||||
|
|
||||||
case-sensitive-sort::
|
case-sensitive-sort::
|
||||||
Sort items in the repo list case sensitively. Default value: "1".
|
Sort items in the repo list case sensitively. Default value: "1".
|
||||||
See also: section-sort.
|
See also: repository-sort.
|
||||||
|
|
||||||
clone-prefix::
|
clone-prefix::
|
||||||
Space-separated list of common prefixes which, when combined with a
|
Space-separated list of common prefixes which, when combined with a
|
||||||
@ -337,7 +337,7 @@ section::
|
|||||||
after this option will inherit the current section name. Default value:
|
after this option will inherit the current section name. Default value:
|
||||||
none.
|
none.
|
||||||
|
|
||||||
section-sort::
|
repository-sort::
|
||||||
The way in which repositories in each section are sorted. Valid values
|
The way in which repositories in each section are sorted. Valid values
|
||||||
are "name" for sorting by the repo name or "age" for sorting by the
|
are "name" for sorting by the repo name or "age" for sorting by the
|
||||||
most recently updated repository. Default value: "name". See also:
|
most recently updated repository. Default value: "name". See also:
|
||||||
|
@ -160,7 +160,7 @@ static int sort_section(const void *a, const void *b)
|
|||||||
|
|
||||||
result = cmp(r1->section, r2->section);
|
result = cmp(r1->section, r2->section);
|
||||||
if (!result) {
|
if (!result) {
|
||||||
if (!strcmp(ctx.cfg.section_sort, "age")) {
|
if (!strcmp(ctx.cfg.repository_sort, "age")) {
|
||||||
// get_repo_modtime caches the value in r->mtime, so we don't
|
// get_repo_modtime caches the value in r->mtime, so we don't
|
||||||
// have to worry about inefficiencies here.
|
// have to worry about inefficiencies here.
|
||||||
if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t))
|
if (get_repo_modtime(r1, &t) && get_repo_modtime(r2, &t))
|
||||||
|
Loading…
Reference in New Issue
Block a user