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

Merge branch 'master' of https://github.com/astaxie/beego into form

This commit is contained in:
miraclesu 2013-07-26 16:29:22 +08:00
commit d31ac49ead
4 changed files with 4 additions and 13 deletions

2
log.go
View File

@ -32,7 +32,7 @@ type FileLogWriter struct {
rotate bool
startLock sync.Mutex //only one log can writer to the file
startLock sync.Mutex // Only one log can write to the file
}
type MuxWriter struct {

View File

@ -94,7 +94,8 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
}
}
}
t := reflect.Indirect(reflect.ValueOf(c)).Type()
reflectVal := reflect.ValueOf(c)
t := reflect.Indirect(reflectVal).Type()
methods := make(map[string]string)
if len(mappingMethods) > 0 {
semi := strings.Split(mappingMethods[0], ";")
@ -106,7 +107,7 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface, mappingM
comma := strings.Split(colon[0], ",")
for _, m := range comma {
if m == "*" || inSlice(strings.ToLower(m), HTTPMETHOD) {
if _, ok := t.MethodByName(colon[1]); ok {
if val := reflectVal.MethodByName(colon[1]); val.IsValid() {
methods[strings.ToLower(m)] = colon[1]
} else {
panic(colon[1] + " method don't exist in the controller " + t.Name())

View File

@ -23,7 +23,6 @@ func init() {
beegoTplFuncMap = make(template.FuncMap)
BeeTemplateExt = make([]string, 0)
BeeTemplateExt = append(BeeTemplateExt, "tpl", "html")
beegoTplFuncMap["markdown"] = MarkDown
beegoTplFuncMap["dateformat"] = DateFormat
beegoTplFuncMap["date"] = Date
beegoTplFuncMap["compare"] = Compare

View File

@ -2,7 +2,6 @@ package beego
import (
"fmt"
"github.com/russross/blackfriday"
"html/template"
"net/url"
"reflect"
@ -20,14 +19,6 @@ func webTime(t time.Time) string {
return ftime
}
// MarkDown parses a string in MarkDown format and returns HTML. Used by the template parser as "markdown"
func MarkDown(raw string) (output template.HTML) {
input := []byte(raw)
bOutput := blackfriday.MarkdownBasic(input)
output = template.HTML(string(bOutput))
return
}
func Substr(s string, start, length int) string {
bt := []rune(s)
if start < 0 {