diff options
| author | bnewbold <bnewbold@robocracy.org> | 2016-09-06 19:38:33 -0700 | 
|---|---|---|
| committer | bnewbold <bnewbold@robocracy.org> | 2016-09-06 19:38:33 -0700 | 
| commit | 60405b46d713e1fe4b2ecf99dabf88a3f58e7368 (patch) | |
| tree | 2cac11a9bae78ad07462b6ffa9df60b4816e0b91 | |
| parent | 6dde0c343e046857395014cc40b7409e5c4be506 (diff) | |
| download | bommom-master.tar.gz bommom-master.zip  | |
| -rw-r--r-- | README | 10 | ||||
| -rw-r--r-- | core.go | 2 | ||||
| -rw-r--r-- | serve.go | 2 | ||||
| -rw-r--r-- | templates/base.html | 2 | 
4 files changed, 8 insertions, 8 deletions
@@ -1,10 +1,10 @@   _                                                                     -| |__   ___  _ __ ___  _ __ ___   ___  _ __ ___    ___ ___  _ __ ___   -| '_ \ / _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ ` _ \  / __/ _ \| '_ ` _ \  -| |_) | (_) | | | | | | | | | | | (_) | | | | | || (_| (_) | | | | | | -|_.__/ \___/|_| |_| |_|_| |_| |_|\___/|_| |_| |_(_)___\___/|_| |_| |_| +| |__   ___  _ __ ___  _ __ ___   ___  _ __ ___   +| '_ \ / _ \| '_ ` _ \| '_ ` _ \ / _ \| '_ ` _ \  +| |_) | (_) | | | | | | | | | | | (_) | | | | | | +|_.__/ \___/|_| |_| |_|_| |_| |_|\___/|_| |_| |_| -                                   (rhymes with "nom nom nom nom") +                                   (rhymes with "nom nom")  ------------------------------------------------------------------------------- @@ -127,6 +127,6 @@ func makeTestBom() (*BomMeta, *Bom) {  	b.AddLineItem(&li)  	b.AddLineItem(&li2)  	b.AddLineItem(&li3) -	bm := &BomMeta{Name: "Some Bom", Owner: "Some Owner", Description: "This is such a thing!", HeadVersion: b.Version, Homepage: "http://bommom.com", IsPublicView: true, IsPublicEdit: false} +	bm := &BomMeta{Name: "Some Bom", Owner: "Some Owner", Description: "This is such a thing!", HeadVersion: b.Version, Homepage: "http://bommom.memeschemes.com", IsPublicView: true, IsPublicEdit: false}  	return bm, b  } @@ -80,7 +80,7 @@ func loginController(w http.ResponseWriter, r *http.Request) (err error) {  			err = tmplAccount.Execute(w, context)  			return  		} -		audience := "http://bommom.com/" +		audience := "http://bommom.memeschemes.com/"  		vResponse := VerifyPersonaAssertion(r.FormValue("assertion"), audience)  		if vResponse.Okay() {  			session.Values["UserName"] = r.FormValue("UserName") diff --git a/templates/base.html b/templates/base.html index ee8a54c..aa2fa66 100644 --- a/templates/base.html +++ b/templates/base.html @@ -23,7 +23,7 @@ function login() {  <div class="navbar navbar-inverse navbar-fixed-top">    <div class="navbar-inner">      <div class="container-fluid"> -      <a class="brand" href="/">bommom.com</a> +      <a class="brand" href="/">bommom.memeschemes.com</a>        {{ range .BreadCrumbs }} / {{.}} {{end}}        <div class="nav-collapse collapse">          {{ if .Session.UserName }}  | 
