From d8717cd4c74e80ea8e20adead9321412a2d76022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 13 Jun 2017 18:42:45 +0200 Subject: all: Update import paths to gohugoio/hugo --- hugolib/404_test.go | 2 +- hugolib/alias.go | 4 ++-- hugolib/alias_test.go | 2 +- hugolib/case_insensitive_test.go | 4 ++-- hugolib/config.go | 2 +- hugolib/datafiles_test.go | 6 +++--- hugolib/disableKinds_test.go | 6 +++--- hugolib/embedded_shortcodes_test.go | 6 +++--- hugolib/gitinfo.go | 2 +- hugolib/handler_base.go | 2 +- hugolib/handler_file.go | 2 +- hugolib/handler_meta.go | 2 +- hugolib/handler_page.go | 4 ++-- hugolib/handler_test.go | 4 ++-- hugolib/hugo_info.go | 2 +- hugolib/hugo_sites.go | 10 +++++----- hugolib/hugo_sites_build.go | 2 +- hugolib/hugo_sites_build_test.go | 8 ++++---- hugolib/menu_old_test.go | 4 ++-- hugolib/multilingual.go | 4 ++-- hugolib/node_as_page_test.go | 4 ++-- hugolib/page.go | 10 +++++----- hugolib/page_collections.go | 2 +- hugolib/page_collections_test.go | 2 +- hugolib/page_output.go | 6 +++--- hugolib/page_paths.go | 4 ++-- hugolib/page_paths_test.go | 2 +- hugolib/page_permalink_test.go | 2 +- hugolib/page_test.go | 4 ++-- hugolib/pagination.go | 2 +- hugolib/pagination_test.go | 4 ++-- hugolib/robotstxt_test.go | 2 +- hugolib/rss_test.go | 2 +- hugolib/scratch.go | 2 +- hugolib/shortcode.go | 10 +++++----- hugolib/shortcode_test.go | 12 ++++++------ hugolib/site.go | 20 ++++++++++---------- hugolib/siteJSONEncode_test.go | 2 +- hugolib/site_output.go | 6 +++--- hugolib/site_output_test.go | 4 ++-- hugolib/site_render.go | 6 +++--- hugolib/site_sections.go | 2 +- hugolib/site_sections_test.go | 2 +- hugolib/site_test.go | 8 ++++---- hugolib/site_url_test.go | 4 ++-- hugolib/sitemap_test.go | 4 ++-- hugolib/taxonomy_test.go | 2 +- hugolib/template_engines_test.go | 2 +- hugolib/template_test.go | 4 ++-- hugolib/testhelpers_test.go | 12 ++++++------ 50 files changed, 113 insertions(+), 113 deletions(-) (limited to 'hugolib') diff --git a/hugolib/404_test.go b/hugolib/404_test.go index f921141ec..bbaed61d7 100644 --- a/hugolib/404_test.go +++ b/hugolib/404_test.go @@ -18,7 +18,7 @@ import ( "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) func Test404(t *testing.T) { diff --git a/hugolib/alias.go b/hugolib/alias.go index 816ba962b..a3fe5c24a 100644 --- a/hugolib/alias.go +++ b/hugolib/alias.go @@ -22,11 +22,11 @@ import ( "runtime" "strings" - "github.com/spf13/hugo/tpl" + "github.com/gohugoio/hugo/tpl" jww "github.com/spf13/jwalterweatherman" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" ) const ( diff --git a/hugolib/alias_test.go b/hugolib/alias_test.go index 68ec8f07f..1d6824dba 100644 --- a/hugolib/alias_test.go +++ b/hugolib/alias_test.go @@ -18,7 +18,7 @@ import ( "runtime" "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" "github.com/stretchr/testify/require" ) diff --git a/hugolib/case_insensitive_test.go b/hugolib/case_insensitive_test.go index 96953b18b..d065a6923 100644 --- a/hugolib/case_insensitive_test.go +++ b/hugolib/case_insensitive_test.go @@ -20,8 +20,8 @@ import ( "testing" "github.com/spf13/afero" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/hugofs" "github.com/stretchr/testify/require" ) diff --git a/hugolib/config.go b/hugolib/config.go index e2e9f9329..80b7bff39 100644 --- a/hugolib/config.go +++ b/hugolib/config.go @@ -17,7 +17,7 @@ import ( "fmt" "github.com/spf13/afero" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" "github.com/spf13/viper" ) diff --git a/hugolib/datafiles_test.go b/hugolib/datafiles_test.go index 5beb59249..b62fb197d 100644 --- a/hugolib/datafiles_test.go +++ b/hugolib/datafiles_test.go @@ -23,11 +23,11 @@ import ( "log" "os" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" jww "github.com/spf13/jwalterweatherman" - "github.com/spf13/hugo/parser" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/parser" + "github.com/gohugoio/hugo/source" "github.com/stretchr/testify/require" ) diff --git a/hugolib/disableKinds_test.go b/hugolib/disableKinds_test.go index e833b0a13..81f277c72 100644 --- a/hugolib/disableKinds_test.go +++ b/hugolib/disableKinds_test.go @@ -19,10 +19,10 @@ import ( "fmt" "github.com/spf13/afero" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/hugofs" "github.com/stretchr/testify/require" ) diff --git a/hugolib/embedded_shortcodes_test.go b/hugolib/embedded_shortcodes_test.go index 45de0bf09..6f47f98c3 100644 --- a/hugolib/embedded_shortcodes_test.go +++ b/hugolib/embedded_shortcodes_test.go @@ -22,10 +22,10 @@ import ( "path/filepath" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/tpl" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/tpl" "github.com/stretchr/testify/require" ) diff --git a/hugolib/gitinfo.go b/hugolib/gitinfo.go index f4789320d..16d8c43a5 100644 --- a/hugolib/gitinfo.go +++ b/hugolib/gitinfo.go @@ -19,7 +19,7 @@ import ( "strings" "github.com/bep/gitmap" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" ) func (h *HugoSites) assembleGitInfo() { diff --git a/hugolib/handler_base.go b/hugolib/handler_base.go index 89aadd11f..99c15e15d 100644 --- a/hugolib/handler_base.go +++ b/hugolib/handler_base.go @@ -14,7 +14,7 @@ package hugolib import ( - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/source" ) type Handler interface { diff --git a/hugolib/handler_file.go b/hugolib/handler_file.go index f2166c5ef..82ea85fb2 100644 --- a/hugolib/handler_file.go +++ b/hugolib/handler_file.go @@ -17,7 +17,7 @@ import ( "bytes" "github.com/dchest/cssmin" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/source" ) func init() { diff --git a/hugolib/handler_meta.go b/hugolib/handler_meta.go index 0f92f0c6c..d2702a39e 100644 --- a/hugolib/handler_meta.go +++ b/hugolib/handler_meta.go @@ -18,7 +18,7 @@ import ( "fmt" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/source" ) var handlers []Handler diff --git a/hugolib/handler_page.go b/hugolib/handler_page.go index 70266fb21..6e230dad0 100644 --- a/hugolib/handler_page.go +++ b/hugolib/handler_page.go @@ -16,8 +16,8 @@ package hugolib import ( "fmt" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/source" ) func init() { diff --git a/hugolib/handler_test.go b/hugolib/handler_test.go index faba04a97..aa58d1c43 100644 --- a/hugolib/handler_test.go +++ b/hugolib/handler_test.go @@ -17,8 +17,8 @@ import ( "path/filepath" "testing" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" ) func TestDefaultHandler(t *testing.T) { diff --git a/hugolib/hugo_info.go b/hugolib/hugo_info.go index 86842f38b..1e0c192e5 100644 --- a/hugolib/hugo_info.go +++ b/hugolib/hugo_info.go @@ -17,7 +17,7 @@ import ( "fmt" "html/template" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" ) var ( diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go index 59cde0406..4fe3f8771 100644 --- a/hugolib/hugo_sites.go +++ b/hugolib/hugo_sites.go @@ -19,12 +19,12 @@ import ( "strings" "sync" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" - "github.com/spf13/hugo/i18n" - "github.com/spf13/hugo/tpl" - "github.com/spf13/hugo/tpl/tplimpl" + "github.com/gohugoio/hugo/i18n" + "github.com/gohugoio/hugo/tpl" + "github.com/gohugoio/hugo/tpl/tplimpl" ) // HugoSites represents the sites to build. Each site represents a language. diff --git a/hugolib/hugo_sites_build.go b/hugolib/hugo_sites_build.go index 61e2ac337..fa0eac702 100644 --- a/hugolib/hugo_sites_build.go +++ b/hugolib/hugo_sites_build.go @@ -19,7 +19,7 @@ import ( "errors" "github.com/fsnotify/fsnotify" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" ) // Build builds all sites. If filesystem events are provided, diff --git a/hugolib/hugo_sites_build_test.go b/hugolib/hugo_sites_build_test.go index e7f93598b..06867ab3d 100644 --- a/hugolib/hugo_sites_build_test.go +++ b/hugolib/hugo_sites_build_test.go @@ -14,10 +14,10 @@ import ( "github.com/fortytw2/leaktest" "github.com/fsnotify/fsnotify" "github.com/spf13/afero" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/hugofs" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/hugofs" + "github.com/gohugoio/hugo/source" "github.com/spf13/viper" "github.com/stretchr/testify/require" ) diff --git a/hugolib/menu_old_test.go b/hugolib/menu_old_test.go index 156a7e551..7c49ed908 100644 --- a/hugolib/menu_old_test.go +++ b/hugolib/menu_old_test.go @@ -21,12 +21,12 @@ import ( "strings" "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" "path/filepath" "github.com/BurntSushi/toml" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/source" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/hugolib/multilingual.go b/hugolib/multilingual.go index c5943dbd5..04efe6386 100644 --- a/hugolib/multilingual.go +++ b/hugolib/multilingual.go @@ -22,8 +22,8 @@ import ( "fmt" "github.com/spf13/cast" - "github.com/spf13/hugo/config" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/config" + "github.com/gohugoio/hugo/helpers" ) type Multilingual struct { diff --git a/hugolib/node_as_page_test.go b/hugolib/node_as_page_test.go index 0e1cc9577..f625bf2d5 100644 --- a/hugolib/node_as_page_test.go +++ b/hugolib/node_as_page_test.go @@ -23,8 +23,8 @@ import ( "github.com/spf13/afero" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/hugofs" "github.com/stretchr/testify/require" ) diff --git a/hugolib/page.go b/hugolib/page.go index 909ac247e..eaa8aa5dd 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -22,9 +22,9 @@ import ( "github.com/bep/gitmap" "github.com/mitchellh/mapstructure" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" - "github.com/spf13/hugo/parser" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" + "github.com/gohugoio/hugo/parser" "html/template" "io" @@ -37,8 +37,8 @@ import ( "unicode/utf8" "github.com/spf13/cast" - bp "github.com/spf13/hugo/bufferpool" - "github.com/spf13/hugo/source" + bp "github.com/gohugoio/hugo/bufferpool" + "github.com/gohugoio/hugo/source" ) var ( diff --git a/hugolib/page_collections.go b/hugolib/page_collections.go index 605ec4072..e72f9a731 100644 --- a/hugolib/page_collections.go +++ b/hugolib/page_collections.go @@ -17,7 +17,7 @@ import ( "path" "path/filepath" - "github.com/spf13/hugo/cache" + "github.com/gohugoio/hugo/cache" ) // PageCollections contains the page collections for a site. diff --git a/hugolib/page_collections_test.go b/hugolib/page_collections_test.go index f1d6af728..aee99040c 100644 --- a/hugolib/page_collections_test.go +++ b/hugolib/page_collections_test.go @@ -21,7 +21,7 @@ import ( "testing" "time" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" "github.com/stretchr/testify/require" ) diff --git a/hugolib/page_output.go b/hugolib/page_output.go index ea23dc203..6ea466b4f 100644 --- a/hugolib/page_output.go +++ b/hugolib/page_output.go @@ -19,10 +19,10 @@ import ( "strings" "sync" - "github.com/spf13/hugo/media" + "github.com/gohugoio/hugo/media" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" ) // PageOutput represents one of potentially many output formats of a given diff --git a/hugolib/page_paths.go b/hugolib/page_paths.go index 0f5add27d..8aa70b95b 100644 --- a/hugolib/page_paths.go +++ b/hugolib/page_paths.go @@ -20,8 +20,8 @@ import ( "net/url" "strings" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" ) // targetPathDescriptor describes how a file path for a given resource diff --git a/hugolib/page_paths_test.go b/hugolib/page_paths_test.go index 1d14b92fd..9a2db1192 100644 --- a/hugolib/page_paths_test.go +++ b/hugolib/page_paths_test.go @@ -20,7 +20,7 @@ import ( "fmt" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/output" ) func TestPageTargetPath(t *testing.T) { diff --git a/hugolib/page_permalink_test.go b/hugolib/page_permalink_test.go index d46f0d35d..6f899efae 100644 --- a/hugolib/page_permalink_test.go +++ b/hugolib/page_permalink_test.go @@ -21,7 +21,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) func TestPermalink(t *testing.T) { diff --git a/hugolib/page_test.go b/hugolib/page_test.go index 95a3f1efd..dbb7e38ee 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -26,8 +26,8 @@ import ( "time" "github.com/spf13/cast" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/hugolib/pagination.go b/hugolib/pagination.go index e9ca6816b..4733cf7c8 100644 --- a/hugolib/pagination.go +++ b/hugolib/pagination.go @@ -21,7 +21,7 @@ import ( "reflect" "strings" - "github.com/spf13/hugo/config" + "github.com/gohugoio/hugo/config" "github.com/spf13/cast" ) diff --git a/hugolib/pagination_test.go b/hugolib/pagination_test.go index 3307667e9..edfac3f3e 100644 --- a/hugolib/pagination_test.go +++ b/hugolib/pagination_test.go @@ -20,8 +20,8 @@ import ( "strings" "testing" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/output" "github.com/stretchr/testify/require" ) diff --git a/hugolib/robotstxt_test.go b/hugolib/robotstxt_test.go index b60a2e5f7..03332cbce 100644 --- a/hugolib/robotstxt_test.go +++ b/hugolib/robotstxt_test.go @@ -17,7 +17,7 @@ import ( "path/filepath" "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) const robotTxtTemplate = `User-agent: Googlebot diff --git a/hugolib/rss_test.go b/hugolib/rss_test.go index cb98f8eb4..268b13073 100644 --- a/hugolib/rss_test.go +++ b/hugolib/rss_test.go @@ -18,7 +18,7 @@ import ( "strings" "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) func TestRSSOutput(t *testing.T) { diff --git a/hugolib/scratch.go b/hugolib/scratch.go index 4a80416f1..ca2c9d6a8 100644 --- a/hugolib/scratch.go +++ b/hugolib/scratch.go @@ -18,7 +18,7 @@ import ( "sort" "sync" - "github.com/spf13/hugo/tpl/math" + "github.com/gohugoio/hugo/tpl/math" ) // Scratch is a writable context used for stateful operations in Page/Node rendering. diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go index 963ebd0b5..150d82c44 100644 --- a/hugolib/shortcode.go +++ b/hugolib/shortcode.go @@ -24,13 +24,13 @@ import ( "strings" "sync" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/output" - "github.com/spf13/hugo/media" + "github.com/gohugoio/hugo/media" - bp "github.com/spf13/hugo/bufferpool" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/tpl" + bp "github.com/gohugoio/hugo/bufferpool" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/tpl" ) // ShortcodeWithPage is the "." context in a shortcode template. diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 2c1e887c9..8f2b71174 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -26,14 +26,14 @@ import ( "github.com/spf13/afero" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/output" - "github.com/spf13/hugo/media" + "github.com/gohugoio/hugo/media" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/source" - "github.com/spf13/hugo/tpl" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/source" + "github.com/gohugoio/hugo/tpl" "github.com/stretchr/testify/require" ) diff --git a/hugolib/site.go b/hugolib/site.go index a172edd6a..47cc74bae 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -28,9 +28,9 @@ import ( "sync" "time" - "github.com/spf13/hugo/config" + "github.com/gohugoio/hugo/config" - "github.com/spf13/hugo/media" + "github.com/gohugoio/hugo/media" "github.com/bep/inflect" @@ -39,14 +39,14 @@ import ( "github.com/fsnotify/fsnotify" "github.com/spf13/afero" "github.com/spf13/cast" - bp "github.com/spf13/hugo/bufferpool" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" - "github.com/spf13/hugo/parser" - "github.com/spf13/hugo/source" - "github.com/spf13/hugo/tpl" - "github.com/spf13/hugo/transform" + bp "github.com/gohugoio/hugo/bufferpool" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" + "github.com/gohugoio/hugo/parser" + "github.com/gohugoio/hugo/source" + "github.com/gohugoio/hugo/tpl" + "github.com/gohugoio/hugo/transform" "github.com/spf13/nitro" "github.com/spf13/viper" ) diff --git a/hugolib/siteJSONEncode_test.go b/hugolib/siteJSONEncode_test.go index 4b01a9144..9c83899fd 100644 --- a/hugolib/siteJSONEncode_test.go +++ b/hugolib/siteJSONEncode_test.go @@ -19,7 +19,7 @@ import ( "path/filepath" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) // Issue #1123 diff --git a/hugolib/site_output.go b/hugolib/site_output.go index 6b72ea9b6..cbd85f35b 100644 --- a/hugolib/site_output.go +++ b/hugolib/site_output.go @@ -19,9 +19,9 @@ import ( "strings" "github.com/spf13/cast" - "github.com/spf13/hugo/config" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/config" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" ) func createSiteOutputFormats(allFormats output.Formats, cfg config.Provider) (map[string]output.Formats, error) { diff --git a/hugolib/site_output_test.go b/hugolib/site_output_test.go index 824156e0b..6aff84397 100644 --- a/hugolib/site_output_test.go +++ b/hugolib/site_output_test.go @@ -24,8 +24,8 @@ import ( "fmt" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/output" "github.com/spf13/viper" ) diff --git a/hugolib/site_render.go b/hugolib/site_render.go index 2e56b9d9d..a24946cf3 100644 --- a/hugolib/site_render.go +++ b/hugolib/site_render.go @@ -18,11 +18,11 @@ import ( "path" "sync" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" - "github.com/spf13/hugo/output" + "github.com/gohugoio/hugo/output" - bp "github.com/spf13/hugo/bufferpool" + bp "github.com/gohugoio/hugo/bufferpool" ) // renderPages renders pages each corresponding to a markdown file. diff --git a/hugolib/site_sections.go b/hugolib/site_sections.go index 891980be2..0e4370118 100644 --- a/hugolib/site_sections.go +++ b/hugolib/site_sections.go @@ -20,7 +20,7 @@ import ( "strings" radix "github.com/hashicorp/go-immutable-radix" - "github.com/spf13/hugo/helpers" + "github.com/gohugoio/hugo/helpers" ) // Deprecated: Use .Site.Home.Sections. diff --git a/hugolib/site_sections_test.go b/hugolib/site_sections_test.go index 4617c8fb3..7479c45fc 100644 --- a/hugolib/site_sections_test.go +++ b/hugolib/site_sections_test.go @@ -19,7 +19,7 @@ import ( "strings" "testing" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" "github.com/stretchr/testify/require" ) diff --git a/hugolib/site_test.go b/hugolib/site_test.go index 2ef7b56d9..ff8fdf48b 100644 --- a/hugolib/site_test.go +++ b/hugolib/site_test.go @@ -22,11 +22,11 @@ import ( "github.com/bep/inflect" jww "github.com/spf13/jwalterweatherman" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/source" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/hugofs" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/hugolib/site_url_test.go b/hugolib/site_url_test.go index bb1924a43..272c78c7e 100644 --- a/hugolib/site_url_test.go +++ b/hugolib/site_url_test.go @@ -19,8 +19,8 @@ import ( "html/template" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/source" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/source" "github.com/stretchr/testify/require" ) diff --git a/hugolib/sitemap_test.go b/hugolib/sitemap_test.go index a59d09756..002f772d8 100644 --- a/hugolib/sitemap_test.go +++ b/hugolib/sitemap_test.go @@ -20,8 +20,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/tpl" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/tpl" ) const sitemapTemplate = ` diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go index b592d4e64..4f8717d72 100644 --- a/hugolib/taxonomy_test.go +++ b/hugolib/taxonomy_test.go @@ -22,7 +22,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) func TestByCountOrderOfTaxonomies(t *testing.T) { diff --git a/hugolib/template_engines_test.go b/hugolib/template_engines_test.go index 1e6112729..e2e4ee986 100644 --- a/hugolib/template_engines_test.go +++ b/hugolib/template_engines_test.go @@ -20,7 +20,7 @@ import ( "strings" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/deps" ) func TestAllTemplateEngines(t *testing.T) { diff --git a/hugolib/template_test.go b/hugolib/template_test.go index 43608b7d4..a5bec103a 100644 --- a/hugolib/template_test.go +++ b/hugolib/template_test.go @@ -18,8 +18,8 @@ import ( "path/filepath" "testing" - "github.com/spf13/hugo/deps" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/hugofs" "github.com/spf13/viper" ) diff --git a/hugolib/testhelpers_test.go b/hugolib/testhelpers_test.go index 5b3012a1d..6439efb09 100644 --- a/hugolib/testhelpers_test.go +++ b/hugolib/testhelpers_test.go @@ -10,12 +10,12 @@ import ( "strings" "github.com/spf13/afero" - "github.com/spf13/hugo/config" - "github.com/spf13/hugo/deps" + "github.com/gohugoio/hugo/config" + "github.com/gohugoio/hugo/deps" - "github.com/spf13/hugo/helpers" - "github.com/spf13/hugo/source" - "github.com/spf13/hugo/tpl" + "github.com/gohugoio/hugo/helpers" + "github.com/gohugoio/hugo/source" + "github.com/gohugoio/hugo/tpl" "github.com/spf13/viper" "io/ioutil" @@ -23,7 +23,7 @@ import ( "log" - "github.com/spf13/hugo/hugofs" + "github.com/gohugoio/hugo/hugofs" jww "github.com/spf13/jwalterweatherman" "github.com/stretchr/testify/require" ) -- cgit v1.2.3