astaxie
ff5b09fc19
golint context
2015-09-10 15:31:09 +08:00
astaxie
c11740b647
make golint happy router.go
2015-09-08 22:01:13 +08:00
astaxie
67b36d7c48
make golint happy
2015-09-08 21:41:38 +08:00
astaxie
61570ac2f7
make golint happy with controller.go
2015-09-08 10:43:42 +08:00
astaxie
f28a941e26
make golint happy and also make the config readable
2015-09-07 23:19:42 +08:00
陈小玉
506f54a080
Update router.go, add Flush for responseWriter
2015-08-19 15:23:50 +08:00
JessonChan
b26ef5b2e5
typo fixed
...
registor==>register
innner ==> inner
2015-07-27 08:44:58 +08:00
MrLee.Kun
87e8bcc9be
fix FilterHandler crash issue
...
Filter Handler will crash with error assignment to entry in nil map , params from function Tree.Match() maybe nil.
2015-06-19 11:19:35 +08:00
astaxie
ba1232dfaf
filter should be always the same
2015-06-14 18:35:46 +08:00
astaxie
b275d7c6f5
Revert "Revert "fix multiple filters execute issue""
2015-06-14 01:14:33 +08:00
astaxie
fc11169ee3
Revert "fix multiple filters execute issue"
2015-06-14 01:13:34 +08:00
MrLee.Kun
2af0c569a5
The last filterFunc with returnOnOutput=ture won't be executed
...
ex:
beego.InsertFilter("/*", beego.BeforeExec, FilterLoginCheck1,false)
beego.InsertFilter("/*", beego.BeforeExec, FilterLoginCheck2)
In function FilterLoginCheck1 , I'll write data via ResponseWriter, and w.started = true
FilterLoginCheck2 won't be executed, it should be.
2015-06-14 01:02:41 +08:00
astaxie
e619d83990
fix the filter router issues
2015-06-13 12:47:01 +08:00
MrLee.Kun
491238ce7d
Don't overwrite the params from function ValidRouter
...
just add new params to context.Input.Params
2015-06-13 01:04:46 +08:00
astaxie
4d70b22f96
Merge pull request #1157 from ziyel/master
...
Let filter function get more params info from ctx.Input.Params
2015-06-11 14:38:19 +08:00
ziyel
d943d16d52
gofmt
2015-06-10 21:26:04 +08:00
astaxie
364cacf659
record the critical logs in Prod
2015-06-08 22:00:28 +08:00
astaxie
26130a5df6
fix #1073
2015-05-25 09:10:35 +08:00
astaxie
1d8afdc9c9
gofmt -s & go_vet
2015-05-25 09:10:34 +08:00
ziyel
9bb9855153
Let filter function get more params info from ctx.Input.Params
2015-05-18 14:42:18 +08:00
astaxie
3aceaf8838
error support controller
2015-02-26 23:34:43 +08:00
astaxie
3caba06189
Merge pull request #967 from athurg/support_all_type_on_urlfor
...
Add all type support for UrlFor’s params
2014-12-18 21:14:44 +08:00
Jianbo Feng
e34f8479bb
Add all type support for UrlFor’s params
2014-12-17 15:52:48 +08:00
astaxie
9c665afc04
improve the error tips
2014-12-08 14:57:45 +08:00
astaxie
f96245786a
fix #912
2014-11-08 15:10:47 +08:00
astaxie
76522d43af
simple the session
2014-11-04 19:07:49 +08:00
astaxie
c4d8e4a244
fix #759
2014-11-04 15:29:33 +08:00
astaxie
8d797a4a5e
file the static filter
2014-11-03 16:14:40 +08:00
astaxie
fda841208d
fix #893
2014-10-30 16:05:48 +08:00
WithGJR
efc14a1e8d
fix router bug with more better way
2014-10-16 18:58:12 +08:00
WithGJR
fa1281002e
fix router bug: when the request is PUT or DELETE, router can't find the actual route and will throw 404 page to user
2014-10-16 18:26:01 +08:00
Bill Davis
1ba7847913
Changing check from nil to len based on slice
2014-10-08 09:21:34 -04:00
Bill Davis
b6f789c497
Changes to handle multi filters on execution pt
2014-10-07 16:35:30 -04:00
astaxie
aae89576c6
fix #814
2014-10-01 22:31:44 +08:00
astaxie
a907a86476
fix #814
2014-10-01 22:28:49 +08:00
astaxie
3a5de83ec2
beego: support router case sensitive
2014-09-28 22:10:43 +08:00
astaxie
f267ee8a12
fix the same name controller for UrlFor
2014-09-23 00:26:07 +08:00
astaxie
6eee223352
beego: fix the Upper for the _method value
2014-09-03 09:25:34 +08:00
Francois
bc4780091b
Proposal for adding a ":" for stack trace printout
...
Mainly useful for Sublime users with goto anything.
2014-08-30 21:27:21 +02:00
astaxie
7f977a0c8c
beego: change the colour
2014-08-20 11:54:25 +08:00
astaxie
aaabeff44f
change the route info
2014-08-20 10:59:38 +08:00
astaxie
a144769515
update the documents & comments
2014-08-18 16:41:43 +08:00
astaxie
e07d780dcf
update the router info
2014-08-18 15:00:27 +08:00
astaxie
986e91b7d6
beego: update the debug info rules
2014-08-18 14:35:43 +08:00
Francois
75904effd9
Makes more sense to Use Debug instead of Info?
2014-08-15 21:11:16 +02:00
liulixiang1988
118e07158e
improve the 'geturl'
...
If we have a url mapping like this:
`beego.Router(“/test”, &controllers.WeightController{},
"get:GetDetails”)`
when u use `UrlFor(“WeightController.GetDetails”, “foo”, 1, “bar”, 2 `,
it should return `/test?foo=1&bar=2` rather than `/test`.
2014-08-11 22:19:59 +08:00
astaxie
885c0678ff
move filter wrong http method
2014-08-04 16:21:34 +08:00
astaxie
474a16a7a0
beego: improve the static file server
2014-08-04 15:31:27 +08:00
astaxie
d17f107fc4
beego: fix #702 auto render
2014-07-18 13:29:54 +08:00
astaxie
19c3a5b41c
beego: improve the router debug infomation
2014-07-09 09:38:36 +08:00