Un-export ContentReWriter
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 18 Mar 2015 16:33:12 +0000 (17:33 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Wed, 18 Mar 2015 16:33:12 +0000 (17:33 +0100)
transform/absurl.go
transform/absurlreplacer.go
transform/chain.go
transform/chain_test.go
transform/livereloadinject.go

index fa1d9930607d9bed2d7657de2e6be75bc59fbdec..b4bd1dff4c6c7b6e4ba1777d2ccb6b6f7bfd6278 100644 (file)
@@ -17,7 +17,7 @@ func initAbsURLReplacer(baseURL string) {
 func AbsURL(absURL string) (trs []link, err error) {
        initAbsURLReplacer(absURL)
 
-       trs = append(trs, func(rw ContentReWriter) {
+       trs = append(trs, func(rw contentRewriter) {
                ar.replaceInHTML(rw)
        })
        return
@@ -26,7 +26,7 @@ func AbsURL(absURL string) (trs []link, err error) {
 func AbsURLInXML(absURL string) (trs []link, err error) {
        initAbsURLReplacer(absURL)
 
-       trs = append(trs, func(rw ContentReWriter) {
+       trs = append(trs, func(rw contentRewriter) {
                ar.replaceInXML(rw)
        })
        return
index 66fdaf6895b30d6608d52a84e1405d6a77a7240e..1f3f77d9abeb13cbe594f55b603dd1ec44f9c234 100644 (file)
@@ -176,7 +176,7 @@ func (l *contentlexer) replace() {
        }
 }
 
-func doReplace(rw ContentReWriter, matchers []absURLMatcher) {
+func doReplace(rw contentRewriter, matchers []absURLMatcher) {
 
        lexer := &contentlexer{
                content:      rw.Content(),
@@ -226,10 +226,10 @@ func newAbsURLReplacer(baseURL string) *absURLReplacer {
 
 }
 
-func (au *absURLReplacer) replaceInHTML(rw ContentReWriter) {
+func (au *absURLReplacer) replaceInHTML(rw contentRewriter) {
        doReplace(rw, au.htmlMatchers)
 }
 
-func (au *absURLReplacer) replaceInXML(rw ContentReWriter) {
+func (au *absURLReplacer) replaceInXML(rw contentRewriter) {
        doReplace(rw, au.xmlMatchers)
 }
index 0edcb6971b3440a7ba7920bb54a940466c15cdf6..a426602450377c59ad0fc8840fc86548d6266a8c 100644 (file)
@@ -6,7 +6,7 @@ import (
        "io"
 )
 
-type trans func(rw ContentReWriter)
+type trans func(rw contentRewriter)
 
 type link trans
 
@@ -20,14 +20,14 @@ func NewEmptyTransforms() []link {
        return make([]link, 0, 20)
 }
 
-// ContentReWriter is an interface that enables rotation
+// contentRewriter is an interface that enables rotation
 // of pooled buffers in the transformer chain.
-type ContentReWriter interface {
+type contentRewriter interface {
        Content() []byte
        io.Writer
 }
 
-// Implements ContentReWriter
+// Implements contentRewriter
 // Content is read from the from-buffer,
 // and rewritten to to the to-buffer.
 type fromToBuffer struct {
index 2477c3abf55c6a66639d90d921c6ec801f72b87d..d8ceb8bcac969df481e5159118a8e4fe33a44f4b 100644 (file)
@@ -56,17 +56,17 @@ func TestChainZeroTransformers(t *testing.T) {
 }
 
 func TestChaingMultipleTransformers(t *testing.T) {
-       f1 := func(rw ContentReWriter) {
+       f1 := func(rw contentRewriter) {
                rw.Write(bytes.Replace(rw.Content(), []byte("f1"), []byte("f1r"), -1))
        }
-       f2 := func(rw ContentReWriter) {
+       f2 := func(rw contentRewriter) {
                rw.Write(bytes.Replace(rw.Content(), []byte("f2"), []byte("f2r"), -1))
        }
-       f3 := func(rw ContentReWriter) {
+       f3 := func(rw contentRewriter) {
                rw.Write(bytes.Replace(rw.Content(), []byte("f3"), []byte("f3r"), -1))
        }
 
-       f4 := func(rw ContentReWriter) {
+       f4 := func(rw contentRewriter) {
                rw.Write(bytes.Replace(rw.Content(), []byte("f4"), []byte("f4r"), -1))
        }
 
index bffedf0408bcba23b7d07f8c4d4c1abacb6cae0d..1399533fcb23ddc1207405308d8925af497414bb 100644 (file)
@@ -5,7 +5,7 @@ import (
        "github.com/spf13/viper"
 )
 
-func LiveReloadInject(rw ContentReWriter) {
+func LiveReloadInject(rw contentRewriter) {
        match := []byte("</body>")
        port := viper.GetString("port")
        replace := []byte(`<script>document.write('<script src="http://'