update to caddy 0.9b2

This commit is contained in:
Henrique Dias 2016-06-22 21:32:33 +01:00
parent 886f396d8f
commit 67f475ce42
3 changed files with 19 additions and 8 deletions

View File

@ -1,5 +1,18 @@
"use strict";
var deleteHandler = function(event) {
event.preventDefault();
let name = this.dataset.delete;
let element = document.getElementById(name);
document.removeChild(element);
//$('label[for="' + name + '"]').fadeOut().remove();
// $('#' + name).fadeOut().remove();
return false;
}
document.addEventListener("DOMContentLoaded", function(event) {
//alert("hugo is working");

View File

@ -4,7 +4,6 @@ import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"path/filepath"
@ -36,8 +35,6 @@ func (h Hugo) POST(w http.ResponseWriter, r *http.Request, filename string) (int
rawBuffer.ReadFrom(r.Body)
err := json.Unmarshal(rawBuffer.Bytes(), &data)
fmt.Println(string(rawBuffer.Bytes()))
if err != nil {
return RespondJSON(w, &response{"Error decrypting json."}, http.StatusInternalServerError, err)
}

View File

@ -24,7 +24,7 @@ func init() {
// Setup is the init function of Caddy plugins and it configures the whole
// middleware thing.
func setup(c *caddy.Controller) error {
cnf := httpserver.GetConfig(c.Key)
cnf := httpserver.GetConfig(c)
conf, _ := ParseHugo(c, cnf.Root)
// Checks if there is an Hugo website in the path that is provided.
@ -61,10 +61,11 @@ func setup(c *caddy.Controller) error {
Next: next,
Configs: []filemanager.Config{
filemanager.Config{
PathScope: conf.Root,
Root: http.Dir(conf.Root),
BaseURL: conf.BaseURL,
StyleSheet: conf.Styles,
HugoEnabled: true,
PathScope: conf.Root,
Root: http.Dir(conf.Root),
BaseURL: conf.BaseURL,
StyleSheet: conf.Styles,
},
},
},