1. 14 Aug, 2014 13 commits
  2. 13 Aug, 2014 9 commits
  3. 12 Aug, 2014 4 commits
  4. 11 Aug, 2014 8 commits
  5. 09 Aug, 2014 1 commit
    • Francois's avatar
      Update captcha.go · 58ac0d5e
      Francois authored
      Captcha must be deleted if the user entered a "challenge" with a different length than the captcha.
      58ac0d5e
  6. 08 Aug, 2014 4 commits
  7. 07 Aug, 2014 1 commit
    • astaxie's avatar
      config: add more method · 2820f630
      astaxie authored
      DefaultString(key string, defaultval string) string      // support
      section::key type in key string when using ini and json type;
      Int,Int64,Bool,Float,DIY are same.
      	DefaultStrings(key string, defaultval []string) []string //get string
      slice
      	DefaultInt(key string, defaultval int) int
      	DefaultInt64(key string, defaultval int64) int64
      	DefaultBool(key string, defaultval bool) bool
      	DefaultFloat(key string, defaultval float64) float64
      	DIY(key string) (interface{}, error)
      	GetSection(section string) (map[string]string, error)
      	SaveConfigFile(filename string) error
      2820f630