all: Update textual references in Go source to point to gohugoio/hugo
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Jun 2017 16:47:17 +0000 (18:47 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 13 Jun 2017 16:47:17 +0000 (18:47 +0200)
14 files changed:
commands/convert.go
commands/hugo.go
commands/new.go
create/content.go
hugolib/node_as_page_test.go
hugolib/page.go
hugolib/page_time_integration_test.go
hugolib/shortcode_test.go
hugolib/site.go
hugolib/translations.go
i18n/i18n_test.go
releaser/github.go
releaser/releasenotes_writer.go
tpl/tplimpl/template.go

index 15273b0c5c92aa2b9094ba8b6be4fd73e13054e7..e40f5fa405504eea8eed17c45d448e195fbd1188 100644 (file)
@@ -136,7 +136,7 @@ func convertContents(mark rune) error {
                page.SetDir(filepath.Join(contentDir, file.Dir()))
                page.SetSourceContent(psr.Content())
                if err = page.SetSourceMetaData(metadata, mark); err != nil {
-                       site.Log.ERROR.Printf("Failed to set source metadata for file %q: %s. For more info see For more info see https://github.com/spf13/hugo/issues/2458", page.FullFilePath(), err)
+                       site.Log.ERROR.Printf("Failed to set source metadata for file %q: %s. For more info see For more info see https://github.com/gohugoio/hugo/issues/2458", page.FullFilePath(), err)
                        continue
                }
 
index d354b01acdc522533e057e1ca2601b9e96048cf5..918e764748676dcb2f298cb509f3b74e5df91be5 100644 (file)
@@ -656,7 +656,7 @@ func (c *commandeer) getDirList() []string {
                }
 
                // Skip .git directories.
-               // Related to https://github.com/spf13/hugo/issues/3468.
+               // Related to https://github.com/gohugoio/hugo/issues/3468.
                if fi.Name() == ".git" {
                        return nil
                }
index 8ff5f1b807352d7bcdc111ecebd6faa40412df18..5b48abaf18469550d3c8242b47557bb77426c0f4 100644 (file)
@@ -311,7 +311,7 @@ func touchFile(fs afero.Fs, x ...string) {
 func createThemeMD(fs *hugofs.Fs, inpath string) (err error) {
 
        by := []byte(`# theme.toml template for a Hugo theme
-# See https://github.com/spf13/hugoThemes#themetoml for an example
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
 
 name = "` + strings.Title(helpers.MakeTitle(filepath.Base(inpath))) + `"
 license = "MIT"
index c51d1f9bdf17c4b39534290261686eaa67bd8cf6..29c99d4712cd48310484dd9ae35feb908eabc35b 100644 (file)
@@ -160,7 +160,7 @@ func FindArchetype(s *hugolib.Site, kind string) (outpath string) {
        for _, x := range search {
                // If the new content isn't in a subdirectory, kind == "".
                // Therefore it should be excluded otherwise `is a directory`
-               // error will occur. github.com/spf13/hugo/issues/411
+               // error will occur. github.com/gohugoio/hugo/issues/411
                var pathsToCheck []string
 
                if kind == "" {
index f625bf2d5bdb8352ac65d4b6eaf99166f19ebb83..6cadafc0d295f5e7880dae4c64c55b718521cf4d 100644 (file)
@@ -31,7 +31,7 @@ import (
 /*
        This file will test the "making everything a page" transition.
 
-       See https://github.com/spf13/hugo/issues/2297
+       See https://github.com/gohugoio/hugo/issues/2297
 
 */
 
index eaa8aa5ddb68c62463d39a47841683f1896ceb6b..a0ea7183c6cc4ad02a7004ecfb918ee03ccb48a5 100644 (file)
@@ -1339,7 +1339,7 @@ func (p *Page) SetSourceContent(content []byte) {
 }
 
 func (p *Page) SetSourceMetaData(in interface{}, mark rune) (err error) {
-       // See https://github.com/spf13/hugo/issues/2458
+       // See https://github.com/gohugoio/hugo/issues/2458
        defer func() {
                if r := recover(); r != nil {
                        var ok bool
index 534933d2b1d36a303d9fd9b0953d188d430e9cbb..1bf83bdca988f03f9d96424366604783c953a6d3 100644 (file)
@@ -148,7 +148,7 @@ func TestParsingDateInFrontMatter(t *testing.T) {
        }
 }
 
-// Temp test https://github.com/spf13/hugo/issues/3059
+// Temp test https://github.com/gohugoio/hugo/issues/3059
 func TestParsingDateParallel(t *testing.T) {
        t.Parallel()
 
index 8f2b7117403fea724904a20f6bdf1221f7704a40..42da9e465495ba9f4f79307dfc7aa861fb7954d2 100644 (file)
@@ -63,7 +63,7 @@ func CheckShortCodeMatchAndError(t *testing.T, input, expected string, withTempl
 
        cfg, fs := newTestCfg()
 
-       // Need some front matter, see https://github.com/spf13/hugo/issues/2337
+       // Need some front matter, see https://github.com/gohugoio/hugo/issues/2337
        contentFile := `---
 title: "Title"
 ---
index 47cc74bae477e9b6a4d11e17aaf892322496e6b3..78f02ff8075bceeee3716646f329c35a617f16e7 100644 (file)
@@ -87,7 +87,7 @@ type Site struct {
        // to get the singular form from that value.
        taxonomiesPluralSingular map[string]string
 
-       // This is temporary, see https://github.com/spf13/hugo/issues/2835
+       // This is temporary, see https://github.com/gohugoio/hugo/issues/2835
        // Maps         "actors-gerard-depardieu" to "Gérard Depardieu" when preserveTaxonomyNames
        // is set.
        taxonomiesOrigKey map[string]string
index b71ae978610f5e6915c032f5e2b686f9f69a1d47..53272ee14280f75a3955875145d13a6e9cac9672 100644 (file)
@@ -49,7 +49,7 @@ func createTranslationKey(p *Page) string {
        base := p.TranslationBaseName()
 
        if p.IsNode() {
-               // TODO(bep) see https://github.com/spf13/hugo/issues/2699
+               // TODO(bep) see https://github.com/gohugoio/hugo/issues/2699
                // Must prepend the section and kind to the key to make it unique
                base = fmt.Sprintf("%s/%s/%s", p.Kind, p.sections, base)
        }
index 4793541db9bb794a482830b2205abd5eaddfd275..496d35ad34a0f1e3eca559cf3f7fa603dc990235 100644 (file)
@@ -113,7 +113,7 @@ var i18nTests = []i18nTest{
                expectedFlag: "¡Hola, 50 gente!",
        },
        // Same id and translation in current language
-       // https://github.com/spf13/hugo/issues/2607
+       // https://github.com/gohugoio/hugo/issues/2607
        {
                data: map[string][]byte{
                        "es.toml": []byte("[hello]\nother = \"hello\""),
index 0dbb1bca159562c213acbc90b7518eea41810225..c1e7691b8deb9902e3d9b2efbb7a6cfcf6de45b6 100644 (file)
@@ -9,9 +9,9 @@ import (
 )
 
 var (
-       gitHubCommitsApi      = "https://api.github.com/repos/spf13/hugo/commits/%s"
-       gitHubRepoApi         = "https://api.github.com/repos/spf13/hugo"
-       gitHubContributorsApi = "https://api.github.com/repos/spf13/hugo/contributors"
+       gitHubCommitsApi      = "https://api.github.com/repos/gohugoio/hugo/commits/%s"
+       gitHubRepoApi         = "https://api.github.com/repos/gohugoio/hugo"
+       gitHubContributorsApi = "https://api.github.com/repos/gohugoio/hugo/contributors"
 )
 
 type gitHubCommit struct {
index 2f24a6c053815ee2dface3a9f0b8fc2bb8d71915..9e3e6414d1cb7d4eb32d447ffd8647419f2d2ec5 100644 (file)
@@ -29,7 +29,7 @@ import (
 )
 
 const (
-       issueLinkTemplate            = "[#%d](https://github.com/spf13/hugo/issues/%d)"
+       issueLinkTemplate            = "[#%d](https://github.com/gohugoio/hugo/issues/%d)"
        linkTemplate                 = "[%s](%s)"
        releaseNotesMarkdownTemplate = `
 {{- $patchRelease := isPatch . -}}
@@ -56,8 +56,8 @@ And as always a big thanks to [@digitalcraftsman](https://github.com/digitalcraf
 Hugo now has:
 
 {{ with .Repo -}}
-* {{ .Stars }}+ [stars](https://github.com/spf13/hugo/stargazers)
-* {{ len .Contributors }}+ [contributors](https://github.com/spf13/hugo/graphs/contributors)
+* {{ .Stars }}+ [stars](https://github.com/gohugoio/hugo/stargazers)
+* {{ len .Contributors }}+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
 {{- end -}}
 {{ with .ThemeCount }}
 * 156+ [themes](http://themes.gohugo.io/)
@@ -160,7 +160,7 @@ func writeReleaseNotes(version string, infos gitInfos, to io.Writer) error {
 }
 
 func fetchThemeCount() (int, error) {
-       resp, err := http.Get("https://github.com/spf13/hugoThemes/blob/master/.gitmodules")
+       resp, err := http.Get("https://github.com/gohugoio/hugoThemes/blob/master/.gitmodules")
        if err != nil {
                return 0, err
        }
index d92c4e269490a4f5c3ad34a9b34802fb30b42fec..13be7ee6d8244dd720ce3591d4638d371ebda604 100644 (file)
@@ -139,7 +139,7 @@ func (t *templateHandler) clone(d *deps.Deps) *templateHandler {
                vc := template.Must(v.Clone())
                // The extra lookup is a workaround, see
                // * https://github.com/golang/go/issues/16101
-               // * https://github.com/spf13/hugo/issues/2549
+               // * https://github.com/gohugoio/hugo/issues/2549
                vc = vc.Lookup(vc.Name())
                vc.Funcs(c.html.funcster.funcMap)
                c.html.overlays[k] = vc
@@ -555,7 +555,7 @@ func (t *htmlTemplates) handleMaster(name, overlayFilename, masterFilename strin
 
        // The extra lookup is a workaround, see
        // * https://github.com/golang/go/issues/16101
-       // * https://github.com/spf13/hugo/issues/2549
+       // * https://github.com/gohugoio/hugo/issues/2549
        overlayTpl = overlayTpl.Lookup(overlayTpl.Name())
        if err := applyTemplateTransformersToHMLTTemplate(overlayTpl); err != nil {
                return err