Rename MainSites to Sites
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 25 Jul 2016 21:26:15 +0000 (23:26 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 6 Sep 2016 15:32:16 +0000 (18:32 +0300)
Having many *main* sites doesn't make much sense.

commands/benchmark.go
commands/hugo.go

index 53d2c8e9e2d3c226fc9c97ca078f0b7ba9433a41..53e11c3f6bdf6b198b9736e52a4dc422bc11e771 100644 (file)
@@ -57,7 +57,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
                        return err
                }
                for i := 0; i < benchmarkTimes; i++ {
-                       MainSites = nil
+                       Sites = nil
                        _ = buildSite()
                }
                pprof.WriteHeapProfile(f)
@@ -76,7 +76,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
                pprof.StartCPUProfile(f)
                defer pprof.StopCPUProfile()
                for i := 0; i < benchmarkTimes; i++ {
-                       MainSites = nil
+                       Sites = nil
                        _ = buildSite()
                }
        }
index c773ac5c4171063d91a511c4ec1af17ee3ce54d9..4fd4dcb9de7ac5a68b5828aabf9bec9831da33d6 100644 (file)
@@ -46,10 +46,10 @@ import (
        "github.com/spf13/viper"
 )
 
-// MainSites represents the Hugo sites to build. This variable is exported as it
+// Sites represents the Hugo sites to build. This variable is exported as it
 // is used by at least one external library (the Hugo caddy plugin). We should
 // provide a cleaner external API, but until then, this is it.
-var MainSites map[string]*hugolib.Site
+var Sites map[string]*hugolib.Site
 
 // Reset resets Hugo ready for a new full build. This is mainly only useful
 // for benchmark testing etc. via the CLI commands.
@@ -510,7 +510,7 @@ func watchConfig() {
        viper.OnConfigChange(func(e fsnotify.Event) {
                fmt.Println("Config file changed:", e.Name)
                // Force a full rebuild
-               MainSites = nil
+               Sites = nil
                utils.CheckErr(buildSite(true))
                if !viper.GetBool("DisableLiveReload") {
                        // Will block forever trying to write to a channel that nobody is reading if livereload isn't initialized
@@ -708,16 +708,16 @@ func buildSite(watching ...bool) (err error) {
        fmt.Println("Started building site")
        t0 := time.Now()
 
-       if MainSites == nil {
-               MainSites = make(map[string]*hugolib.Site)
+       if Sites == nil {
+               Sites = make(map[string]*hugolib.Site)
        }
 
        for _, lang := range langConfigsList {
                t1 := time.Now()
-               mainSite, present := MainSites[lang.Lang]
+               mainSite, present := Sites[lang.Lang]
                if !present {
                        mainSite = new(hugolib.Site)
-                       MainSites[lang.Lang] = mainSite
+                       Sites[lang.Lang] = mainSite
                        mainSite.SetMultilingualConfig(lang, langConfigsList)
                }
 
@@ -742,13 +742,13 @@ func rebuildSite(events []fsnotify.Event) error {
 
        for _, lang := range langConfigsList {
                t1 := time.Now()
-               mainSite := MainSites[lang.Lang]
+               site := Sites[lang.Lang]
 
-               if err := mainSite.ReBuild(events); err != nil {
+               if err := site.ReBuild(events); err != nil {
                        return err
                }
 
-               mainSite.Stats(lang.Lang, t1)
+               site.Stats(lang.Lang, t1)
        }
 
        jww.FEEDBACK.Printf("total in %v ms\n", int(1000*time.Since(t0).Seconds()))