From b83c12224f9e544a867c005f2c21931346c975a8 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Tue, 12 May 2020 01:33:14 +0800 Subject: [PATCH] Sort summary table --- frontend/template.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/template.go b/frontend/template.go index 6e3710c..d7bd690 100644 --- a/frontend/template.go +++ b/frontend/template.go @@ -3,6 +3,7 @@ package main import ( "net" "net/http" + "sort" "strconv" "strings" ) @@ -219,6 +220,14 @@ func smartWriter(w http.ResponseWriter, s string) { // Output a table for the summary page func summaryTable(w http.ResponseWriter, isIPv6 bool, data string, serverName string) { + // Sort the table, excluding title row + stringsSplitted := strings.Split(data, "\n") + if len(stringsSplitted) > 1 { + stringsWithoutTitle := stringsSplitted[1:] + sort.Strings(stringsWithoutTitle) + data = stringsSplitted[0] + "\n" + strings.Join(stringsWithoutTitle, "\n") + } + // w.Write([]byte("
" + data + "
")) w.Write([]byte("")) for lineID, line := range strings.Split(data, "\n") {