mod_http_index: Sort list of HTTP applications by name
authorKim Alvefur <zash@zash.se>
Sat, 10 Mar 2018 05:01:15 +0100
changeset 2931 7953b7dde6e7
parent 2930 1dd1e5a1c707
child 2932 b0d92332b87f
mod_http_index: Sort list of HTTP applications by name
mod_http_index/mod_http_index.lua
--- a/mod_http_index/mod_http_index.lua	Sat Mar 10 05:00:28 2018 +0100
+++ b/mod_http_index/mod_http_index.lua	Sat Mar 10 05:01:15 2018 +0100
@@ -36,6 +36,7 @@
 			});
 		end
 	end
+	table.sort(http_apps, function (a, b) return a.name < b.name; end);
 	event.response.headers.content_type = "text/html";
 	return render(base_template, {
 		title = "HTTP Apps";