1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 20:44:13 +00:00

Merge pull request #1198 from kongjian/develop

remove space after int()& add sort for commentsRouter file
This commit is contained in:
astaxie 2015-06-08 20:20:40 +08:00
commit 21586586ba

View File

@ -24,6 +24,7 @@ import (
"io/ioutil"
"os"
"path"
"sort"
"strings"
"github.com/astaxie/beego/utils"
@ -36,7 +37,7 @@ import (
)
func init() {
{{.globalinfo}}
{{.globalinfo}}
}
`
@ -129,7 +130,13 @@ func genRouterCode() {
os.Mkdir(path.Join(workPath, "routers"), 0755)
Info("generate router from comments")
var globalinfo string
for k, cList := range genInfoList {
sortKey := make([]string, 0)
for k, _ := range genInfoList {
sortKey = append(sortKey, k)
}
sort.Strings(sortKey)
for _, k := range sortKey {
cList := genInfoList[k]
for _, c := range cList {
allmethod := "nil"
if len(c.AllowHTTPMethods) > 0 {