astaxie
|
2820f630c8
|
config: add more method
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
|
2014-08-07 17:24:21 +08:00 |
|
fuxiaohei
|
9d0ad3f974
|
code style simplify
|
2014-07-13 18:11:13 +08:00 |
|
fuxiaohei
|
9457e61a0c
|
code style simplify
|
2014-07-12 22:12:06 +08:00 |
|
astaxie
|
fefd8ddb5b
|
beego: update licence& fix #669
|
2014-07-03 23:40:21 +08:00 |
|
astaxie
|
0f170a80da
|
update the comments fix #658
|
2014-06-25 10:39:37 +08:00 |
|
astaxie
|
c188cbbcb4
|
update all files License
|
2014-05-17 02:26:50 +08:00 |
|
astaxie
|
fee3c2b8f9
|
add Strings interface can return []string sep by ;
Example:
peers = one;Two;Three
|
2014-01-15 17:19:03 +08:00 |
|
傅小黑
|
6f3803ce8c
|
Merge remote-tracking branch 'astaxie/master'
|
2013-12-24 21:59:37 +08:00 |
|
傅小黑
|
a1f6039d82
|
gofmt code
|
2013-12-24 21:59:00 +08:00 |
|
傅小黑
|
0183608a59
|
add comments for config package.
|
2013-12-24 21:57:33 +08:00 |
|
astaxie
|
d0e2c5c67a
|
config ini module when set section is not exist will panic!
|
2013-12-24 21:57:15 +08:00 |
|
astaxie
|
b97d9896a4
|
update config to change section . to ::
|
2013-12-09 23:54:35 +08:00 |
|
Pengfei Xue
|
8e7fe8bb66
|
case insensitive for section and key for ini config
|
2013-11-29 10:17:35 +08:00 |
|
smallfish
|
23ff7af0b7
|
update logic for check ini comments
|
2013-11-28 11:56:13 +08:00 |
|
astaxie
|
63b82c438d
|
support section
if iniconf.String("demo.key1") != "asta" {
+ t.Fatal("get demo.key1 error")
+ }
+ if iniconf.String("demo.key2") != "xie" {
+ t.Fatal("get demo.key2 error")
+ }
|
2013-11-27 23:55:26 +08:00 |
|
astaxie
|
87f8fb0750
|
finish config module support ini/json/xml/yaml
|
2013-08-22 00:07:33 +08:00 |
|