}
var hugoCmdV *cobra.Command
-
var BuildWatch, Draft, UglyUrls, Verbose bool
var Source, Destination, BaseUrl, CfgFile string
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
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">
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)
// 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:]...)
}
}
}
}
}
- for k, _ := range s.Indexes[plural] {
+ for k := range s.Indexes[plural] {
s.Indexes[plural][k].Sort()
}
}
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()
}
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)
}
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"}},
)
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 {
}
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 {
}
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 {