1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Removed some print statements

This commit is contained in:
Zack Scholl 2016-03-30 12:53:48 -04:00
parent 9660d10a3b
commit 0b964047e6
2 changed files with 1 additions and 5 deletions

View File

@ -88,7 +88,6 @@ type EncryptionPost struct {
func encryptionRoute(c *gin.Context) { func encryptionRoute(c *gin.Context) {
title := c.Param("title") title := c.Param("title")
option := c.Param("option") option := c.Param("option")
fmt.Println(option, title)
var jsonLoad EncryptionPost var jsonLoad EncryptionPost
if option == "/decrypt" { if option == "/decrypt" {
if c.BindJSON(&jsonLoad) == nil { if c.BindJSON(&jsonLoad) == nil {
@ -458,7 +457,6 @@ func renderList(c *gin.Context, title string) {
pClean.AllowDataURIImages() pClean.AllowDataURIImages()
text := pClean.SanitizeBytes([]byte(p.CurrentText)) text := pClean.SanitizeBytes([]byte(p.CurrentText))
listItems, _ := reorderList(string(text)) listItems, _ := reorderList(string(text))
fmt.Println(string(text))
c.HTML(http.StatusOK, "list.tmpl", gin.H{ c.HTML(http.StatusOK, "list.tmpl", gin.H{
"Title": title, "Title": title,
"WikiName": RuntimeArgs.WikiName, "WikiName": RuntimeArgs.WikiName,
@ -506,8 +504,6 @@ func deleteListItem(c *gin.Context) {
func deletePage(c *gin.Context) { func deletePage(c *gin.Context) {
deleteName := c.DefaultQuery("DeleteName", "None") deleteName := c.DefaultQuery("DeleteName", "None")
adminKey := c.DefaultQuery("AdminKey", "None") adminKey := c.DefaultQuery("AdminKey", "None")
fmt.Println(adminKey)
fmt.Println(deleteName)
// if adminKey == RuntimeArgs.AdminKey || true == true { // if adminKey == RuntimeArgs.AdminKey || true == true {
if strings.ToLower(deleteName) != "help" { if strings.ToLower(deleteName) != "help" {
p := WikiData{strings.ToLower(deleteName), "", []string{}, []string{}, false, ""} p := WikiData{strings.ToLower(deleteName), "", []string{}, []string{}, false, ""}

View File

@ -46,7 +46,7 @@
body { body {
margin: 0; margin: 0;
background: #fff; background: #fff;
max-width: 800px; max-width: 900px;
margin: 0 auto; margin: 0 auto;
padding-bottom: 65px; padding-bottom: 65px;
} }