Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKato Kazuyoshi <kato.kazuyoshi@gmail.com>2015-10-14 10:41:54 +0300
committerspf13 <steve.francia@gmail.com>2015-10-15 23:36:13 +0300
commitef4dfcec6cf17308e2816ef29801f01c3cf6fcbb (patch)
treef77d852097ef07e0775b515a52f7fe21b51b5725 /transform
parent0f438d185272f9c14b8aa64dd0cb2d0cef260361 (diff)
Load livereload.js from "/"
Fix #1406 Instead of loading the file from http://localhost:port/, it can be loaded from /.
Diffstat (limited to 'transform')
-rw-r--r--transform/livereloadinject.go9
-rw-r--r--transform/livereloadinject_test.go20
2 files changed, 22 insertions, 7 deletions
diff --git a/transform/livereloadinject.go b/transform/livereloadinject.go
index 38e4e8cc9..2fb130c17 100644
--- a/transform/livereloadinject.go
+++ b/transform/livereloadinject.go
@@ -2,18 +2,13 @@ package transform
import (
"bytes"
- "github.com/spf13/viper"
)
func LiveReloadInject(ct contentTransformer) {
match := []byte("</body>")
- port := viper.GetString("port")
- replace := []byte(`<script data-no-instant>document.write('<script src="http://'
- + (location.host || 'localhost').split(':')[0]
- + ':` + port + `/livereload.js?mindelay=10"></'
- + 'script>')</script></body>`)
- newcontent := bytes.Replace(ct.Content(), match, replace, -1)
+ replace := []byte(`<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`)
+ newcontent := bytes.Replace(ct.Content(), match, replace, -1)
if len(newcontent) == len(ct.Content()) {
match := []byte("</BODY>")
newcontent = bytes.Replace(ct.Content(), match, replace, -1)
diff --git a/transform/livereloadinject_test.go b/transform/livereloadinject_test.go
new file mode 100644
index 000000000..605f65954
--- /dev/null
+++ b/transform/livereloadinject_test.go
@@ -0,0 +1,20 @@
+package transform
+
+import (
+ "bytes"
+ "github.com/spf13/hugo/helpers"
+ "testing"
+)
+
+func TestLiveReloadInject(t *testing.T) {
+ out := new(bytes.Buffer)
+ in := helpers.StringToReader("</body>")
+
+ tr := NewChain(LiveReloadInject)
+ tr.Apply(out, in, []byte("path"))
+
+ expected := `<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script></body>`
+ if string(out.Bytes()) != expected {
+ t.Errorf("Expected %s got %s", expected, string(out.Bytes()))
+ }
+}