ui-repolist: Add "section-sort" flag to control section sorting.

Flag which, when set to "1", will sort the sections on the repository
listing by name. Set this flag to "0" if the order in the cgitrc file
should be preserved. Default value: "1".

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Tobias Bieniek
2012-10-09 20:53:29 +02:00
committed by Jason A. Donenfeld
부모 521e10c884
커밋 7a4e7c8ffb
4개의 변경된 파일13개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -257,7 +257,7 @@ void cgit_print_repolist()
if(ctx.qry.sort)
sorted = sort_repolist(ctx.qry.sort);
else
else if (ctx.cfg.section_sort)
sort_repolist("section");
html("<table summary='repository list' class='list nowrap'>");