From 3aa2ac93bfc24954e70b937d0a5241cf99e7c941 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 30 Mar 2016 12:53:48 -0400 Subject: [PATCH] Removed some print statements Former-commit-id: ede1d0443b007b388e9a3f3e466a9885df71ef64 [formerly 0f18dde1fefb41aadde69b63216e54b1e9f85435] [formerly 5935351723aa69890870e602f67946e6e9b4b1fc [formerly 0b964047e6d3f057bdf929d05362fce9ddfc087f]] Former-commit-id: 326963feabc89058a5b264063dc3d9cb3ae6c593 [formerly 01e9d78b633099612914a395c47f30f33b56ab3f] Former-commit-id: c6d7be3ae78549adb7751e7a4ad166103df5bfb7 --- routes.go | 4 ---- templates/index.tmpl | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/routes.go b/routes.go index 3ee74e0..ba169df 100644 --- a/routes.go +++ b/routes.go @@ -88,7 +88,6 @@ type EncryptionPost struct { func encryptionRoute(c *gin.Context) { title := c.Param("title") option := c.Param("option") - fmt.Println(option, title) var jsonLoad EncryptionPost if option == "/decrypt" { if c.BindJSON(&jsonLoad) == nil { @@ -458,7 +457,6 @@ func renderList(c *gin.Context, title string) { pClean.AllowDataURIImages() text := pClean.SanitizeBytes([]byte(p.CurrentText)) listItems, _ := reorderList(string(text)) - fmt.Println(string(text)) c.HTML(http.StatusOK, "list.tmpl", gin.H{ "Title": title, "WikiName": RuntimeArgs.WikiName, @@ -506,8 +504,6 @@ func deleteListItem(c *gin.Context) { func deletePage(c *gin.Context) { deleteName := c.DefaultQuery("DeleteName", "None") adminKey := c.DefaultQuery("AdminKey", "None") - fmt.Println(adminKey) - fmt.Println(deleteName) // if adminKey == RuntimeArgs.AdminKey || true == true { if strings.ToLower(deleteName) != "help" { p := WikiData{strings.ToLower(deleteName), "", []string{}, []string{}, false, ""} diff --git a/templates/index.tmpl b/templates/index.tmpl index b196db5..13dcd2c 100644 --- a/templates/index.tmpl +++ b/templates/index.tmpl @@ -46,7 +46,7 @@ body { margin: 0; background: #fff; - max-width: 800px; + max-width: 900px; margin: 0 auto; padding-bottom: 65px; }