func main() { config = loadConfig() initMongo() initLayout() h = new(session.MHandler) h.SetSession(mSession) web.Config.StaticDir = config.Get("staticdir") web.Get("/", index) web.Get("/post/list", listPosts) web.Get("/post/([A-Za-z0-9]+)", readPost) web.Get("/page/([a-z0-9\\-]+)\\.html", readPage) web.Get("/admin", adminIndexGet) web.Get("/admin/post/new", newPostGet) web.Post("/admin/post/new", newPostPost) web.Get("/admin/post/list", listPost) web.Get("/admin/post/edit/(.*)", editPostGet) web.Post("/admin/post/edit/(.*)", editPostPost) web.Get("/admin/post/del/(.*)", delPost) web.Get("/admin/login", adminLoginGet) web.Post("/admin/login", adminLoginPost) web.Get("/admin/page/new", adminNewPageGet) web.Post("/admin/page/new", adminNewPagePost) web.Get("/admin/page/list", adminListPagesGet) web.Get("/admin/page/edit/(.*)", adminEditPageGet) web.Post("/admin/page/edit/(.*)", adminEditPagePost) web.Get("/admin/page/del/(.*)", adminDelPage) web.Run(config.Get("host") + ":" + config.Get("port")) }
func main() { starter.Start() web.Config.StaticDir = "web-app/" web.Post("/(.*)", starter.Get) web.Get("/(.*)", starter.Get) web.Run("0.0.0.0:8080") }
func TestMain(t *testing.T) { web.Post("/(.*)/(.*)", hello) //m2go.Run("tcp://127.0.0.1:9555|tcp://127.0.0.1:9556|54c6755b-9628-40a4-9a2d-cc82a816345e") }
// prefix should be something like "/" or "/wiki/" func RegisterHandlers(prefix string) { urlPrefix = prefix web.Get(urlPrefix, func(ctx *web.Context) { redirect(ctx, "view", "FrontPage") }) web.Get(urlPrefix+"view/(.+)", viewHandler) web.Get(urlPrefix+"edit/(.+)", editHandler) web.Post(urlPrefix+"save/(.+)", saveHandler) web.Get(urlPrefix+"cancel/(.+)", cancelHandler) }
func main() { viewInit() mysqlInit() web.Get("/edit/(.*)", edit) web.Get("/(.*)", show) web.Post("/(.*)", update) web.Run("0.0.0.0:1111") }
func main() { m = monitor.NewMonitor(maxQuery, defaultTick) web.Post("/dcb/submit", addSub) web.Get("/dcb/", listSub) web.Get("/dcb/list", listSub) web.Get(`/dcb/remove/(.*)`, removeSub) web.RunFcgi("127.0.0.1:9006") //web.Run("127.0.0.1:9002") }
func main() { web.Get("/said", func() string { return tmpl }) web.Post("/say", func(ctx *web.Context) string { input = ctx.Request.Form["said"][0] return `<a href="/final">Click Here</a>` }) web.Get("/final", func() string { return "You said " + input }) web.Run("0.0.0.0:9999") }
func RunWebServer(line *util.ChannelLine) { util.WebOut = line web.SetLogger(log.New(new(dummy), "", 0)) web.Config.CookieSecret = util.Settings.CookieSecret() web.Get("/Liberator/(.*)", get) web.Get("/(.*)", index) web.Post("/Liberator/(.*)", post) web.Run("0.0.0.0:" + strconv.Uitoa(util.Settings.WebPort())) }
func main() { Db = NewMongoDB() Db.Connect() web.Config.CookieSecret = "7C19QRmwf3mHZ9CPAaPQ0hsWeufKd" web.Get("/", index) web.Get("/post", post) web.Get("/rss.xml", rss) web.Get("/index.php/feed/", rss) web.Get("/index.php/feed/atom/", rss) web.Get("/admin/edit", editGet) web.Post("/admin/edit", editPost) web.Get("/admin", adminGet) web.Post("/admin", adminPost) web.Run("0.0.0.0:9876") }
func main() { /*setup redis connection*/ redisClient.Addr = "localhost:6379" redisClient.Db = 13 /*setup web.go stuff*/ web.Get("/", index) web.Get("/s/(.*)", show) web.Get("/u/(.*)", redirect) web.Post("/shorten", shorten) web.Run("0.0.0.0:8080") }
func main() { conn := need_connection() var p Personne var c Car Personnes := gouda.M(p) Cars := gouda.M(c) Cars.BelongsToKey(Personnes, "owner", "Owner_id") Personnes.HasManyKey(Cars, "cars", "Owner_id") //web.Get("/(.*)", hello) web.Get("/new_person/", new_person) web.Get("/persons/", persons) web.Get("/", persons) web.Get("/person/(.*)", person_detail) web.Get("/edit_person/(.*)", person_edit) web.Get("/delete_person/(.*)", person_delete) web.Post("/person", create_person) web.Post("/update_person", update_person) web.Run("0.0.0.0:9999") conn.Close() }
func main() { flag.Parse() Init(NewDiskvStore(*dir, uint32(*maxsz)), *pwhash) log.Printf("nobodycares engine starting up...") web.Get("/", get_root) web.Get("/from/([0-9a-f]+)", get_from) web.Get("/post", get_post) web.Get("/edit/([0-9a-f]+)", get_edit) web.Get("/([0-9a-f]+)/edit", get_edit) web.Get("/delete/([0-9a-f]+)", get_delete) web.Get("/([0-9a-f]+)/delete", get_delete) web.Get("/([0-9a-f]+)", get_specific_id) web.Get("/rss", get_rss) web.Get("/css/(.*)", get_css) web.Post("/post", post_post) web.Post("/edit", post_edit) web.Post("/delete", post_delete) web.Run(fmt.Sprintf("%s:%d", *host, *port)) }
func main() { rand.Seed(time.Nanoseconds()) web.Config.CookieSecret = "7C19QRmwf3mHZ9CPAaPQ0hsWeufKd" web.Get("/said", func() string { return form }) web.Post("/say", func(ctx *web.Context) string { uid := strconv.Itoa64(rand.Int63()) ctx.SetSecureCookie("user", uid, 3600) users[uid] = ctx.Request.Params["said"] return `<a href="/final">Click Here</a>` }) web.Get("/final", func(ctx *web.Context) string { uid, _ := ctx.GetSecureCookie("user") return "You said " + users[uid] }) web.Run("0.0.0.0:9999") }
func main() { fmt.Printf("start\n") out, err := ioutil.ReadFile("./index.php") if err != nil { return } s := string(out) hello := func() string { return s } web.Get("/", hello) web.Get("/dnd/dnd.go", hello) web.Post("/dnd/dnd.go", bye) web.RunFcgi("127.0.0.1:9001") //web.Run("0.0.0.0:9000") }
func main() { config = loadConfig() initMongo() initLayout() h = new(session.MHandler) h.SetSession(mSession) blogConfig = PreferenceInit() path, _ := os.Getwd() web.Config.StaticDir = path + "/" + config.Get("staticdir") i := &Index{} a := &Admin{} web.Get("/", web.MethodHandler(i, "Index")) web.Get("/post/list", web.MethodHandler(i, "ListPosts")) web.Get("/post/([A-Za-z0-9]+)", web.MethodHandler(i, "ReadPost")) web.Get("/page/([a-z0-9\\-]+)\\.html", web.MethodHandler(i, "ReadPage")) web.Post("/post/([A-Za-z0-9]+)/comment/new", web.MethodHandler(i, "NewComment")) web.Get("/admin", web.MethodHandler(a, "IndexGet")) web.Get("/admin/preferences", web.MethodHandler(a, "PreferencesGet")) web.Post("/admin/preferences", web.MethodHandler(a, "PreferencesPost")) web.Get("/admin/post/new", web.MethodHandler(a, "NewPostGet")) web.Post("/admin/post/new", web.MethodHandler(a, "NewPostPost")) web.Get("/admin/post/list", web.MethodHandler(a, "ListPost")) web.Post("/admin/post/list", web.MethodHandler(a, "BulkActions")) web.Get("/admin/post/edit/(.*)", web.MethodHandler(a, "EditPostGet")) web.Post("/admin/post/edit/(.*)", web.MethodHandler(a, "EditPostPost")) web.Get("/admin/post/del/(.*)", web.MethodHandler(a, "DelPost")) web.Get("/admin/login", web.MethodHandler(a, "LoginGet")) web.Post("/admin/login", web.MethodHandler(a, "LoginPost")) web.Get("/admin/page/new", web.MethodHandler(a, "NewPageGet")) web.Post("/admin/page/new", web.MethodHandler(a, "NewPagePost")) web.Get("/admin/page/list", web.MethodHandler(a, "ListPagesGet")) web.Get("/admin/page/edit/(.*)", web.MethodHandler(a, "EditPageGet")) web.Post("/admin/page/edit/(.*)", web.MethodHandler(a, "EditPagePost")) web.Get("/admin/page/del/(.*)", web.MethodHandler(a, "DelPage")) web.Get("/admin/comment/del/(.*)/(.*)", web.MethodHandler(a, "DelComment")) web.Get("/admin/bloody/restart", web.MethodHandler(a, "RestartBloody")) web.Get("/rss", web.MethodHandler(i, "RSS")) web.Run(config.Get("host") + ":" + config.Get("port")) }
// bootstraps the server func bootstrap(path string) os.Error { config = NewConfig(path) config.Parse() host := config.GetStringDefault("redis.address", "tcp:localhost:6379") db := config.GetIntDefault("redis.database", 0) passwd := config.GetStringDefault("redis.password", "") redis = godis.New(host, db, passwd) web.Config.StaticDir = config.GetStringDefault("static-directory", "") web.Post("/shorten/(.*)", shorten) // support for Get makes it easier to implement a bookmarklet web.Get("/shorten/(.*)", shorten) web.Get("/", index) web.Get("/([a-zA-Z0-9]*)", resolve) web.Get("/([a-zA-Z0-9]*)\\+", info) web.Get("/latest/([0-9]*)", latest) web.Get("/info/([a-zA-Z0-9]*)", info) return nil }
func main() { web.Get("/", index) web.Post("/multipart", multipart) web.Run("0.0.0.0:9999") }
func main() { web.Get("/", index) web.Post("/update", update) web.Run("0.0.0.0:9999") }
func main() { web.Get("/", index) web.Post("/process", process) web.Run("0.0.0.0:9999") }
func Post(route string, handler func(*Action, []string)) { web.Post(route, ctxHandler(handler)) }
func main() { web.Get("/date", hello) web.Post("/date", bye) web.RunFcgi("127.0.0.1:9002") }