func init() { runtime.GOMAXPROCS(runtime.NumCPU()) r.InterceptMethod((*XormController).Begin, r.BEFORE) r.InterceptMethod((*XormController).Commit, r.AFTER) r.InterceptMethod((*XormController).Rollback, r.FINALLY) }
func init() { revel.OnAppStart(models.Init) revel.OnAppStart(GorpInit) revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) revel.InterceptMethod((*GorpController).Commit, revel.AFTER) revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) }
func init() { revel.OnAppStart(Init) revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) // revel.InterceptMethod(Application.AddUser, revel.BEFORE) // revel.InterceptMethod(Hotels.checkUser, revel.BEFORE) revel.InterceptMethod((*GorpController).Commit, revel.AFTER) revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) }
func init() { revel.OnAppStart(Init) yield.DefaultLayout["html"] = "application.html" revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) revel.InterceptMethod(Application.AddUser, revel.BEFORE) revel.InterceptMethod(Hotels.checkUser, revel.BEFORE) revel.InterceptMethod((*GorpController).Commit, revel.AFTER) revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) }
func init() { revel.OnAppStart(Init) revel.InterceptMethod((*Qbs).Begin, revel.BEFORE) revel.InterceptMethod((*Application).inject, revel.BEFORE) revel.InterceptMethod((*Qbs).End, revel.AFTER) //注册模板函数, //不等于 revel.TemplateFuncs["notEq"] = func(a, b interface{}) bool { return a != b } revel.TemplateFuncs["dateFormat"] = func(t time.Time) string { return t.Format("2006-01-02") } }
func init() { revel.OnAppStart(func() { uploadPath = fmt.Sprintf("%s/public/upload/", revel.BasePath) }) revel.InterceptMethod((*Application).inject, revel.BEFORE) }
func init() { revel.OnAppStart(Init) revel.InterceptMethod((*Application).checkUser, revel.BEFORE) revel.TemplateFuncs["eqis"] = func(i int64, s string) bool { return strconv.FormatInt(i, 10) == s } }
func init() { // Seed the random library rand.Seed(time.Now().UTC().UnixNano()) revel.OnAppStart(Init) revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) //revel.InterceptMethod(Application.AddUser, revel.BEFORE) revel.InterceptMethod(App.AddUser, revel.BEFORE) revel.InterceptMethod(App.logEntry, revel.BEFORE) //revel.InterceptMethod(Hotels.checkUser, revel.BEFORE) revel.InterceptMethod((*GorpController).Commit, revel.AFTER) revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) revel.TemplateFuncs["countryOption"] = getCountryOptions revel.TemplateFuncs["keyOption"] = getKeyOptions revel.TemplateFuncs["keyUsageOption"] = getKeyUsageOptions revel.TemplateFuncs["extKeyUsageOption"] = getExtKeyUsageOptions }
func init() { ChatServer = chatserver.NewServer() ChatServer.RunRooms() //revel.InterceptMethod(Rooms.CheckUser, revel.BEFORE) revel.InterceptMethod(Application.AddUser, revel.BEFORE) revel.TemplateFuncs["ueq"] = func(a, b interface{}) bool { return !(a == b) } revel.TemplateFuncs["add"] = func(a, b int) int { return a + b } revel.TemplateFuncs["minus"] = func(a, b int) int { return a - b } revel.TemplateFuncs["less"] = func(a, b int) bool { return a < b } }
func init() { revel.OnAppStart(func() { revel.WARN.Println("开始执行") //检测是否登陆 revel.InterceptMethod(CheckLogin, revel.BEFORE) //多核运行 np := runtime.NumCPU() if np >= 2 { runtime.GOMAXPROCS(np - 1) } }) }
func New() { revel.InterceptMethod((*MgoController).new, revel.BEFORE) }
func init() { revel.OnAppStart(Init) revel.InterceptMethod((*CassandraController).Begin, revel.BEFORE) revel.InterceptMethod((*CassandraController).Finish, revel.AFTER) }
func init() { revel.ERROR_CLASS = "error" revmgo.ControllerInit() revel.InterceptMethod(Admin.checkUser, revel.BEFORE) }
func init() { revmgo.ControllerInit() revel.InterceptMethod(Admin.checkUser, revel.BEFORE) }
func init() { revel.OnAppStart(InitDB) // DBやテーブルの作成 revel.InterceptMethod((*GorpController).Begin, revel.BEFORE) // transaction開始 revel.InterceptMethod((*GorpController).Commit, revel.AFTER) // 変更反映 revel.InterceptMethod((*GorpController).Rollback, revel.FINALLY) // 異常時処理 }
func init() { revel.InterceptMethod(Radio.LogVisitorByIP, revel.BEFORE) revel.InterceptMethod((*Radio).Prepare, revel.BEFORE) }
func init() { revmgo.ControllerInit() revel.InterceptMethod((*Application).Setup, revel.BEFORE) }
func init() { revel.InterceptMethod((*MgoController).close, revel.FINALLY) }
func Clone() { revel.InterceptMethod((*MgoController).clone, revel.BEFORE) }
func init() { revel.OnAppStart(Init) revel.InterceptMethod((*ModelController).Begin, revel.BEFORE) }
func init() { revel.InterceptMethod(App.Maintenance, revel.BEFORE) }
// init is called when the first request into the controller is made func init() { revel.InterceptMethod((*Buoy).Before, revel.BEFORE) revel.InterceptMethod((*Buoy).After, revel.AFTER) revel.InterceptMethod((*Buoy).Panic, revel.PANIC) }
func init() { revel.InterceptMethod(Application.checkUser, revel.BEFORE) }
func init() { revel.InterceptMethod((*Docker).Begin, revel.BEFORE) }
func Copy() { revel.InterceptMethod((*MgoController).copy, revel.BEFORE) }
func ControllerInit() { revel.InterceptMethod((*MongoController).Begin, revel.BEFORE) revel.InterceptMethod((*MongoController).End, revel.FINALLY) }
func init() { revel.InterceptMethod((*Transactional).Begin, revel.BEFORE) revel.InterceptMethod((*Transactional).Commit, revel.AFTER) revel.InterceptMethod((*Transactional).Rollback, revel.FINALLY) }