Add Sort in "Repository" menu
Sometimes, I want to sort "File Count" field with desc, asc.

I wonder how hard this would be to implement considering that the interface is paged.
Are you using this on some dashboard interface somewhere?
Are you using this on some dashboard interface somewhere?
No. :-(
FYI, My internal repository list : 30 pages, about 600 repos. I don't know how much this change would impact the performance decrease. IMHO, it would be small within 1,000 repos, and the most users/customers' repos will not exceed 1,000 repos.
I wonder how hard this would be to implement considering that the interface is paged.
IMHO, If you override getPagedRepo to get variable for 'order by' from repository list form, it would not be hard. (Yup, there is a possibility of sql injection, but you are already using prepared statement and variable binding, so that will not be the issue)
Thanks.
Just curious. There may be something I could have done in that case.
Are you just trying to keep an eye on which repositories are taking long to process? 600 repo's is quite a lot actually. How large is the index for that?
600 repo's is quite a lot actually. How large is the index for that?
about 15GB
Via @sschuberth in #183
There currently seems to be no way to filter / search the list of repositories at repository/list/. I tried using a literal rn:name search, but that did not actually list anything, which is probably by design, as such a search is supposed to limit searches in repositories to the matching repository names, and not only list the repository names themselves. In a way this feature request might be related to #178 in the sense that the repository list should be more dynamic and less static.