astaxie
33ad6c1370
beego: remove app funciont & fix #590
...
config := tls.Config{
ClientAuth: tls.RequireAndVerifyClientCert,
Certificates: []tls.Certificate{cert},
ClientCAs: pool,
}
config.Rand = rand.Reader
beego.BeeApp.Server. TLSConfig = &config
2014-05-20 17:28:06 +08:00
astaxie
04290dfc68
beego: delete hotupdate
2014-05-20 16:41:39 +08:00
astaxie
03080b3ef2
beego:1.2.0
2014-05-20 15:53:41 +08:00
astaxie
3f2a712ba8
beego:change default port
2014-05-20 15:40:05 +08:00
astaxie
f215aa4810
beego: change the error tips
2014-05-20 15:34:27 +08:00
astaxie
18a02d7d60
beego:support https & http listen
2014-05-20 15:30:17 +08:00
astaxie
3f4d750dc4
utils: improve the file grep
2014-05-20 14:32:06 +08:00
astaxie
9f01aeed31
beego:remove unused code
2014-05-19 18:52:48 +08:00
astaxie
b45f0b9bf6
beego: fix #478
2014-05-17 02:56:50 +08:00
astaxie
cf04ade603
merger master
2014-05-17 02:29:41 +08:00
astaxie
92f6181616
beego: change the version to 1.2.0
2014-05-17 02:26:52 +08:00
astaxie
9270a0504a
beego: admin support link
2014-05-17 02:26:52 +08:00
astaxie
1da37f6ce1
beego: controller add ServeFormatted
...
ServeFormatted serve Xml OR Json, depending on the value of the Accept
header
2014-05-17 02:26:52 +08:00
astaxie
ef6d9b9a94
session: support memcache interface
2014-05-17 02:26:52 +08:00
astaxie
c265786251
session:support struct.
...
gob.Register(v)
2014-05-17 02:26:51 +08:00
astaxie
c5c806b58e
beego: XSRF support Controller level fix #610
...
default value is true when you Enable Global XSRF, also can control in
the prepare function to change the value.
2014-05-17 02:26:51 +08:00
astaxie
e657dcfd5f
beego: support namespace
...
ns := beego.NewNamespace("/v1/api/")
ns.Cond(func(ctx *context.Context)bool{
if ctx.Input.Domain() == "www.beego.me" {
return true
}
return false
})
.Filter("before", Authenticate)
.Router("/order", &admin.OrderController{})
.Get("/version",func (ctx *context.Context) {
ctx.Output.Body([]byte("1.0.0"))
})
.Post("/login",func (ctx *context.Context) {
if ctx.Query("username") == "admin" && ctx.Query("username") ==
"password" {
}
})
.Namespace(
NewNamespace("/shop").
Get("/order/:id", func(ctx *context.Context) {
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
}),
)
2014-05-17 02:26:51 +08:00
slene
2ed9b2bffd
orm: add test for unexported struct field
2014-05-17 02:26:51 +08:00
astaxie
55ad951bce
beego: support more router
...
//design model
beego.Get(router, beego.FilterFunc)
beego.Post(router, beego.FilterFunc)
beego.Put(router, beego.FilterFunc)
beego.Head(router, beego.FilterFunc)
beego.Options(router, beego.FilterFunc)
beego.Delete(router, beego.FilterFunc)
beego.Handler(router, http.Handler)
//example
beego.Get("/user", func(ctx *context.Context) {
ctx.Output.Body([]byte("Get userlist"))
})
beego.Post("/user", func(ctx *context.Context) {
ctx.Output.Body([]byte("add userlist"))
})
beego.Delete("/user/:id", func(ctx *context.Context) {
ctx.Output.Body([]byte([]byte(ctx.Input.Param(":id")))
})
import (
"http"
"github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
)
func init() {
s := rpc.NewServer()
s.RegisterCodec(json.NewCodec(), "application/json")
s.RegisterService(new(HelloService), "")
beego.Handler("/rpc", s)
}
2014-05-17 02:26:51 +08:00
astaxie
ef815bf5fc
config: fix the import issue
2014-05-17 02:26:51 +08:00
jessonchan
6082a0af3e
bug fixed
2014-05-17 02:26:51 +08:00
jessonchan
be30fb7937
refator func
2014-05-17 02:26:51 +08:00
toby.zxj
f4e7d63e65
httplib support to set the protocol version for incoming requests
2014-05-17 02:26:51 +08:00
astaxie
14688f240f
httplib:support file upload
2014-05-17 02:26:51 +08:00
astaxie
dce09837b9
fix the typo
2014-05-17 02:26:50 +08:00
astaxie
3b9a404138
beego: support other analisys & fix typo
2014-05-17 02:26:50 +08:00
astaxie
a6f55b59cf
beego: add link in the admin console
2014-05-17 02:26:50 +08:00
astaxie
c188cbbcb4
update all files License
2014-05-17 02:26:50 +08:00
astaxie
4245521660
fix #576
2014-05-17 02:26:50 +08:00
astaxie
05e5baaa9f
beego:add post test case
2014-05-17 02:26:50 +08:00
astaxie
54b92e9599
context:add Bind function
...
// Bind data from request.Form[key] to dest
// like
/?id=123&isok=true&ft=1.2&ol[0]=1&ol[1]=2&ul[]=str&ul[]=array&user.Name=
astaxie
// var id int beegoInput.Bind(&id, "id") id ==123
// var isok bool beegoInput.Bind(&isok, "isok") id ==true
// var ft float64 beegoInput.Bind(&ft, "ft") ft ==1.2
// ol := make([]int, 0, 2) beegoInput.Bind(&ol, "ol") ol ==[1 2]
// ul := make([]string, 0, 2) beegoInput.Bind(&ul, "ul") ul ==[str
array]
// user struct{Name} beegoInput.Bind(&user, "user") user ==
{Name:"astaxie"}
2014-05-17 02:26:50 +08:00
astaxie
aa68ffecec
beego: support not-empty value in router fix #555
2014-05-17 02:26:50 +08:00
Lin Luxiang
78991c81ab
make Maxage work
2014-05-17 02:26:49 +08:00
Donald Zhan
348ff13857
update the error message
2014-05-17 02:26:49 +08:00
Kyle McCullough
52817fb668
allow unexported fields on model structs
2014-05-17 02:26:49 +08:00
astaxie
2c59ff1cc6
beego: admin support link
2014-05-17 02:20:48 +08:00
astaxie
6bdf0838ce
beego: controller add ServeFormatted
...
ServeFormatted serve Xml OR Json, depending on the value of the Accept
header
2014-05-17 01:26:59 +08:00
astaxie
31a63c5d50
session: support memcache interface
2014-05-17 01:19:47 +08:00
astaxie
237aaadd65
session:support struct.
...
gob.Register(v)
2014-05-17 00:43:51 +08:00
astaxie
34ddcef1dc
beego: XSRF support Controller level fix #610
...
default value is true when you Enable Global XSRF, also can control in
the prepare function to change the value.
2014-05-17 00:12:25 +08:00
astaxie
f6ce2656db
beego: support namespace
...
ns := beego.NewNamespace("/v1/api/")
ns.Cond(func(ctx *context.Context)bool{
if ctx.Input.Domain() == "www.beego.me" {
return true
}
return false
})
.Filter("before", Authenticate)
.Router("/order", &admin.OrderController{})
.Get("/version",func (ctx *context.Context) {
ctx.Output.Body([]byte("1.0.0"))
})
.Post("/login",func (ctx *context.Context) {
if ctx.Query("username") == "admin" && ctx.Query("username") ==
"password" {
}
})
.Namespace(
NewNamespace("/shop").
Get("/order/:id", func(ctx *context.Context) {
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
}),
)
2014-05-16 23:47:29 +08:00
slene
b647026dff
orm: add test for unexported struct field
2014-05-16 13:14:15 +08:00
slene
568c0c47f0
Merge pull request #542 from kylemcc/develop
...
orm: allow unexported fields on model structs
2014-05-16 13:11:55 +08:00
astaxie
2629de28f2
beego: support more router
...
//design model
beego.Get(router, beego.FilterFunc)
beego.Post(router, beego.FilterFunc)
beego.Put(router, beego.FilterFunc)
beego.Head(router, beego.FilterFunc)
beego.Options(router, beego.FilterFunc)
beego.Delete(router, beego.FilterFunc)
beego.Handler(router, http.Handler)
//example
beego.Get("/user", func(ctx *context.Context) {
ctx.Output.Body([]byte("Get userlist"))
})
beego.Post("/user", func(ctx *context.Context) {
ctx.Output.Body([]byte("add userlist"))
})
beego.Delete("/user/:id", func(ctx *context.Context) {
ctx.Output.Body([]byte([]byte(ctx.Input.Param(":id")))
})
import (
"http"
"github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
)
func init() {
s := rpc.NewServer()
s.RegisterCodec(json.NewCodec(), "application/json")
s.RegisterService(new(HelloService), "")
beego.Handler("/rpc", s)
}
2014-05-16 10:18:19 +08:00
astaxie
10d2c7c328
config: fix the import issue
2014-05-16 10:18:19 +08:00
astaxie
af7ac98bd6
Merge pull request #609 from JessonChan/develop
...
[important] bug fixed
2014-05-15 11:47:07 +08:00
jessonchan
6f78f1d4b2
bug fixed
2014-05-15 11:34:44 +08:00
astaxie
9f95fd3309
Merge pull request #608 from JessonChan/develop
...
refactor func
2014-05-14 20:47:01 +08:00
jessonchan
74c309cefd
refator func
2014-05-14 20:08:51 +08:00
astaxie
b6d63c84ae
Merge pull request #605 from francoishill/patch-6
...
Update app.go
2014-05-14 13:12:15 +08:00