all: Update import paths to gohugoio/hugo

This commit is contained in:
Bjørn Erik Pedersen
2017-06-13 18:42:45 +02:00
parent 2d08a296a2
commit d8717cd4c7
169 changed files with 355 additions and 355 deletions

View File

@@ -29,8 +29,8 @@ import (
"github.com/miekg/mmark"
"github.com/mitchellh/mapstructure"
"github.com/russross/blackfriday"
bp "github.com/spf13/hugo/bufferpool"
"github.com/spf13/hugo/config"
bp "github.com/gohugoio/hugo/bufferpool"
"github.com/gohugoio/hugo/config"
jww "github.com/spf13/jwalterweatherman"
"strings"

View File

@@ -19,7 +19,7 @@ import (
"github.com/miekg/mmark"
"github.com/russross/blackfriday"
"github.com/spf13/hugo/config"
"github.com/gohugoio/hugo/config"
jww "github.com/spf13/jwalterweatherman"
)

View File

@@ -19,7 +19,7 @@ import (
"testing"
"github.com/kyokomi/emoji"
"github.com/spf13/hugo/bufferpool"
"github.com/gohugoio/hugo/bufferpool"
)
func TestEmojiCustom(t *testing.T) {

View File

@@ -27,7 +27,7 @@ import (
"unicode/utf8"
"github.com/spf13/cast"
bp "github.com/spf13/hugo/bufferpool"
bp "github.com/gohugoio/hugo/bufferpool"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/pflag"
)

View File

@@ -19,7 +19,7 @@ import (
"sync"
"github.com/spf13/cast"
"github.com/spf13/hugo/config"
"github.com/gohugoio/hugo/config"
)
// These are the settings that should only be looked up in the global Viper

View File

@@ -30,7 +30,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/spf13/afero"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
)

View File

@@ -16,8 +16,8 @@ package helpers
import (
"fmt"
"github.com/spf13/hugo/config"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/hugofs"
)
// PathSpec holds methods that decides how paths in URLs and files in Hugo should look like.

View File

@@ -16,7 +16,7 @@ package helpers
import (
"testing"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/require"

View File

@@ -24,8 +24,8 @@ import (
"sort"
"strings"
"github.com/spf13/hugo/config"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/hugofs"
jww "github.com/spf13/jwalterweatherman"
)

View File

@@ -3,7 +3,7 @@ package helpers
import (
"github.com/spf13/viper"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/hugofs"
)
func newTestPathSpec(fs *hugofs.Fs, v *viper.Viper) *PathSpec {

View File

@@ -18,7 +18,7 @@ import (
"strings"
"testing"
"github.com/spf13/hugo/hugofs"
"github.com/gohugoio/hugo/hugofs"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"