mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
Merge pull request #1694 from withshubh/master
This commit is contained in:
commit
1258ceeb9f
|
@ -1,6 +1,6 @@
|
|||
version = 1
|
||||
|
||||
test_patterns = ["*_test.go"]
|
||||
test_patterns = ["**/*_test.go"]
|
||||
|
||||
exclude_patterns = [
|
||||
"_examples/**",
|
||||
|
|
|
@ -194,8 +194,8 @@ func init() {
|
|||
var t octetType
|
||||
isCtl := c <= 31 || c == 127
|
||||
isChar := 0 <= c && c <= 127
|
||||
isSeparator := strings.IndexRune(" \t\"(),/:;<=>?@[]\\{}", rune(c)) >= 0
|
||||
if strings.IndexRune(" \t\r\n", rune(c)) >= 0 {
|
||||
isSeparator := strings.ContainsRune(" \t\"(),/:;<=>?@[]\\{}", rune(c))
|
||||
if strings.ContainsRune(" \t\r\n", rune(c)) {
|
||||
t |= isSpace
|
||||
}
|
||||
if isChar && !isCtl && !isSeparator {
|
||||
|
|
|
@ -210,7 +210,7 @@ func (g *Group) Error() (s string) {
|
|||
}
|
||||
|
||||
func (g *Group) getAllErrors() []error {
|
||||
list := g.Errors[:]
|
||||
list := g.Errors
|
||||
|
||||
if len(g.children) > 0 {
|
||||
// return with order of definition.
|
||||
|
|
|
@ -174,8 +174,7 @@ func getCases(loc *Locale, src map[string]interface{}) []interface{} {
|
|||
cases := make([]interface{}, 0, len(pluralCases)*2)
|
||||
for _, pluralCase := range pluralCases {
|
||||
// fmt.Printf("%s=%v\n", pluralCase.Form, pluralCase.Value)
|
||||
cases = append(cases, pluralCase.Form.String())
|
||||
cases = append(cases, pluralCase.Value)
|
||||
cases = append(cases, pluralCase.Form.String(), pluralCase.Value)
|
||||
}
|
||||
|
||||
return cases
|
||||
|
|
Loading…
Reference in New Issue
Block a user