Gofmt
authorCaleb Spare <cespare@gmail.com>
Sun, 24 Nov 2013 21:48:57 +0000 (13:48 -0800)
committerspf13 <steve.francia@gmail.com>
Mon, 16 Dec 2013 22:40:10 +0000 (17:40 -0500)
Command: `gofmt -l -s -w .`

commands/hugo.go
hugolib/index.go
hugolib/rss_test.go
hugolib/shortcode.go
hugolib/site.go
hugolib/siteinfo_test.go
template/bundle/template_test.go
transform/absurl.go

index a10dcce4aa897d35fd511dde6c37898d5a1eb48f..a99feb7c06324dac805fc31b6ac852b03f60dd5f 100644 (file)
@@ -43,7 +43,6 @@ Complete documentation is available at http://hugo.spf13.com`,
 }
 var hugoCmdV *cobra.Command
 
-
 var BuildWatch, Draft, UglyUrls, Verbose bool
 var Source, Destination, BaseUrl, CfgFile string
 
index 38441d463efc2e9bd1405d424b1224d8e2a8d546..2c690e185cb47db7f848c906c84048344e6393f0 100644 (file)
@@ -39,7 +39,7 @@ func (p IndexedPages) Less(i, j int) bool {
 
 func (ip IndexedPages) Pages() Pages {
        pages := make(Pages, len(ip))
-       for i, _ := range ip {
+       for i := range ip {
                pages[i] = ip[i].Page
        }
        return pages
index b4c9e01d7732c150839e08d49b53858c9effa2a9..1d6f95b56bc3597c682b4d4d145086879f822ce0 100644 (file)
@@ -1,10 +1,10 @@
 package hugolib
 
 import (
-       "testing"
        "bytes"
        "github.com/spf13/hugo/source"
        "github.com/spf13/hugo/target"
+       "testing"
 )
 
 const RSS_TEMPLATE = `<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
@@ -39,7 +39,7 @@ func TestRSSOutput(t *testing.T) {
        s.initializeSiteInfo()
        s.prepTemplates()
        //  Add an rss.xml template to invoke the rss build.
-       s.addTemplate("rss.xml", RSS_TEMPLATE) 
+       s.addTemplate("rss.xml", RSS_TEMPLATE)
 
        if err := s.CreatePages(); err != nil {
                t.Fatalf("Unable to create pages: %s", err)
index f08d30cd7fe740c9d8cc250484735b34f278032e..2e91e02eac50f64cf0f07eefacae02f10e00f5ee 100644 (file)
@@ -185,7 +185,7 @@ func Tokenize(in string) interface{} {
 
                // No closing "... just make remainder the final token
                if inQuote && i == len(first) {
-                       final = append(final, first[start:len(first)]...)
+                       final = append(final, first[start:]...)
                }
        }
 
index ef27d09799f032c789ea705debed55b161b62b66..d34fa5acf79afc3030c6a24223c784494c15f31e 100644 (file)
@@ -326,7 +326,7 @@ func (s *Site) BuildSiteMeta() (err error) {
                                }
                        }
                }
-               for k, _ := range s.Indexes[plural] {
+               for k := range s.Indexes[plural] {
                        s.Indexes[plural][k].Sort()
                }
        }
@@ -335,7 +335,7 @@ func (s *Site) BuildSiteMeta() (err error) {
                s.Sections.Add(p.Section, WeightedIndexEntry{s.Pages[i].Weight, s.Pages[i]})
        }
 
-       for k, _ := range s.Sections {
+       for k := range s.Sections {
                s.Sections[k].Sort()
        }
 
@@ -356,7 +356,7 @@ func (s *Site) BuildSiteMeta() (err error) {
 
 func (s *Site) possibleIndexes() (indexes []string) {
        for _, p := range s.Pages {
-               for k, _ := range p.Params {
+               for k := range p.Params {
                        if !inStringArray(indexes, k) {
                                indexes = append(indexes, k)
                        }
index f855dd97027a2598e4b391003b34343a1ff44465..c0ae5657563816a292225a5adb10c668e86a5863 100644 (file)
@@ -1,13 +1,12 @@
 package hugolib
 
 import (
-       "testing"
        "bytes"
+       "testing"
 )
 
 const SITE_INFO_PARAM_TEMPLATE = `{{ .Site.Params.MyGlobalParam }}`
 
-
 func TestSiteInfoParams(t *testing.T) {
        s := &Site{
                Config: Config{Params: map[string]interface{}{"MyGlobalParam": "FOOBAR_PARAM"}},
index 1d0fce1fbdc15286f404ede37e49f0c56a940385..019816f6ebc2bba8e9058438a6d8c5d3b4ce67fc 100644 (file)
@@ -6,19 +6,19 @@ import (
 )
 
 func TestGt(t *testing.T) {
-       for i, this := range []struct{
-               left interface{}
-               right interface{}
+       for i, this := range []struct {
+               left          interface{}
+               right         interface{}
                leftShouldWin bool
        }{
-               { 5, 8, false },
-               { 8, 5, true },
-               { 5, 5, false },
-               { -2, 1, false },
-               { 2, -5, true },
-               { "8", "5", true },
-               { "5", "0001", true },
-               { []int{100,99}, []int{1,2,3,4}, false },
+               {5, 8, false},
+               {8, 5, true},
+               {5, 5, false},
+               {-2, 1, false},
+               {2, -5, true},
+               {"8", "5", true},
+               {"5", "0001", true},
+               {[]int{100, 99}, []int{1, 2, 3, 4}, false},
        } {
                leftIsBigger := Gt(this.left, this.right)
                if leftIsBigger != this.leftShouldWin {
@@ -34,14 +34,14 @@ func TestGt(t *testing.T) {
 }
 
 func TestFirst(t *testing.T) {
-       for i, this := range []struct{
-               count int
+       for i, this := range []struct {
+               count    int
                sequence interface{}
-               expect interface{}
-       } {
-               { 2, []string{"a", "b", "c"}, []string{"a", "b"} },
-               { 3, []string{"a", "b"}, []string{"a", "b"} },
-               { 2, []int{100, 200, 300}, []int{100, 200} },
+               expect   interface{}
+       }{
+               {2, []string{"a", "b", "c"}, []string{"a", "b"}},
+               {3, []string{"a", "b"}, []string{"a", "b"}},
+               {2, []int{100, 200, 300}, []int{100, 200}},
        } {
                results, err := First(this.count, this.sequence)
                if err != nil {
index 8bdd36515363757651112c14289c26405703c620..9838cbe51c5eb5114f72de6fc2189eee6ca2720c 100644 (file)
@@ -33,10 +33,10 @@ func AbsURL(absURL string) (trs []link, err error) {
 }
 
 func guardReplace(content, guard, match, replace []byte) []byte {
-               if !bytes.Contains(content, guard) {
-                       content = bytes.Replace(content, match, replace, -1)
-               }
-               return content
+       if !bytes.Contains(content, guard) {
+               content = bytes.Replace(content, match, replace, -1)
+       }
+       return content
 }
 
 type elattr struct {