all repos — honk @ e477f924e055b682f7cb031e1164f630f9cd2a5d

my fork of honk

go fmt
Ted Unangst tedu@tedunangst.com
Thu, 25 Apr 2019 00:49:40 -0400
commit

e477f924e055b682f7cb031e1164f630f9cd2a5d

parent

2532e0bf7e7bffc4abc00f4931dd6d4521985b67

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M honk.gohonk.go

@@ -441,14 +441,14 @@ func viewhonker(w http.ResponseWriter, r *http.Request) {

name := mux.Vars(r)["name"] u := login.GetUserInfo(r) honks := gethonksbyhonker(u.UserID, name) - honkpage(w, r, u, nil, honks, "honks by honker: " + name) + honkpage(w, r, u, nil, honks, "honks by honker: "+name) } func viewcombo(w http.ResponseWriter, r *http.Request) { name := mux.Vars(r)["name"] u := login.GetUserInfo(r) honks := gethonksbycombo(u.UserID, name) - honkpage(w, r, u, nil, honks, "honks by combo: " + name) + honkpage(w, r, u, nil, honks, "honks by combo: "+name) } func viewconvoy(w http.ResponseWriter, r *http.Request) { c := r.FormValue("c")

@@ -458,7 +458,7 @@ if u != nil {

userid = u.UserID } honks := gethonksbyconvoy(userid, c) - honkpage(w, r, u, nil, honks, "honks in convoy: " + c) + honkpage(w, r, u, nil, honks, "honks in convoy: "+c) } func fingerlicker(w http.ResponseWriter, r *http.Request) {

@@ -536,7 +536,7 @@ honkpage(w, r, u, nil, []*Honk{h}, "one honk")

} func honkpage(w http.ResponseWriter, r *http.Request, u *login.UserInfo, user *WhatAbout, -honks []*Honk, infomsg string) { + honks []*Honk, infomsg string) { reverbolate(honks) templinfo := getInfo(r) if u != nil {