}
if static_changed {
- fmt.Println("Static file changed, syncing\n")
+ fmt.Print("Static file changed, syncing\n\n")
utils.CheckErr(copyStatic(), fmt.Sprintf("Error copying static files to %s", Config.GetAbsPath(Config.PublishDir)))
}
if dynamic_changed {
- fmt.Println("Change detected, rebuilding site\n")
+ fmt.Print("Change detected, rebuilding site\n\n")
utils.StopOnErr(buildSite(true))
}
case err := <-watcher.Error:
return path.Join(path.Dir(in), name, "index"+ext)
}
}
- return in
}
return path.Clean(in)
}
}
-
- return in
}
sample.ReadFrom(f)
b.ResetTimer()
for i := 0; i < b.N; i++ {
- p, _ := ReadFrom(bytes.NewReader(sample.Bytes()), "bench")
- p = p
+ ReadFrom(bytes.NewReader(sample.Bytes()), "bench")
}
}
if e == nil {
return d
}
- errorf("Could not parse Date/Time format:", e)
+ errorln("Could not parse Date/Time format:", e)
default:
- errorf("Only Time is supported for this key")
+ errorln("Only Time is supported for this key")
}
return *new(time.Time)
}
// TODO remove this and return a proper error.
-func errorf(str string, a ...interface{}) {
+func errorln(str string, a ...interface{}) {
fmt.Fprintln(os.Stderr, str, a)
}
}
return false
default:
- errorf("Only Boolean values are supported for this YAML key")
+ errorln("Only Boolean values are supported for this YAML key")
}
return false
if err == nil {
return float64(v)
} else {
- errorf("Only Floats are supported for this key\nErr:", err)
+ errorln("Only Floats are supported for this key\nErr:", err)
}
default:
- errorf("Only Floats are supported for this key")
+ errorln("Only Floats are supported for this key")
}
return 0.0
if err == nil {
return int(v)
} else {
- errorf("Only Ints are supported for this key\nErr:", err)
+ errorln("Only Ints are supported for this key\nErr:", err)
}
default:
- errorf("Only Ints are supported for this key")
+ errorln("Only Ints are supported for this key")
}
return 0
case int:
return strconv.FormatInt(int64(i.(int)), 10)
default:
- errorf(fmt.Sprintf("Only Strings are supported for this key (got type '%T'): %s", s, s))
+ errorln(fmt.Sprintf("Only Strings are supported for this key (got type '%T'): %s", s, s))
}
return ""
t.Errorf("frontmatter not handling ints correctly should be %s, got: %s", "1", page.GetParam("an_integer"))
}
if page.GetParam("a_float") != 1.3 {
- t.Errorf("frontmatter not handling floats correctly should be %s, got: %s", 1.3, page.GetParam("a_float"))
+ t.Errorf("frontmatter not handling floats correctly should be %f, got: %s", 1.3, page.GetParam("a_float"))
}
if page.GetParam("a_bool") != false {
- t.Errorf("frontmatter not handling bools correctly should be %s, got: %s", false, page.GetParam("a_bool"))
+ t.Errorf("frontmatter not handling bools correctly should be %t, got: %s", false, page.GetParam("a_bool"))
}
if page.GetParam("a_date") != dateval {
t.Errorf("frontmatter not handling dates correctly should be %s, got: %s", dateval, page.GetParam("a_date"))
s := &Site{
Target: target,
Config: Config{BaseUrl: "http://auth/bub/"},
- Source: &source.InMemorySource{WEIGHTED_SOURCES},
+ Source: &source.InMemorySource{ByteSource: WEIGHTED_SOURCES},
}
s.initializeSiteInfo()
s.prepTemplates()
func TestDegenerateNoTarget(t *testing.T) {
s := &Site{
- Source: &source.InMemorySource{fakeSource},
+ Source: &source.InMemorySource{ByteSource: fakeSource},
}
must(s.CreatePages())
expected := "foo/bar/file.md (renderer: markdown)\n canonical => !no target specified!\n\n" +
func TestFileTarget(t *testing.T) {
s := &Site{
- Source: &source.InMemorySource{fakeSource},
+ Source: &source.InMemorySource{ByteSource: fakeSource},
Target: new(target.Filesystem),
Alias: new(target.HTMLRedirectAlias),
}
func TestFileTargetUgly(t *testing.T) {
s := &Site{
Target: &target.Filesystem{UglyUrls: true},
- Source: &source.InMemorySource{fakeSource},
+ Source: &source.InMemorySource{ByteSource: fakeSource},
Alias: new(target.HTMLRedirectAlias),
}
s.CreatePages()
func TestFileTargetPublishDir(t *testing.T) {
s := &Site{
Target: &target.Filesystem{PublishDir: "../public"},
- Source: &source.InMemorySource{fakeSource},
+ Source: &source.InMemorySource{ByteSource: fakeSource},
Alias: &target.HTMLRedirectAlias{PublishDir: "../public"},
}
BaseUrl: "http://auth/bub",
CanonifyUrls: true,
},
- Source: &source.InMemorySource{sources},
+ Source: &source.InMemorySource{ByteSource: sources},
}
s.initializeSiteInfo()
BaseUrl: "http://auth/bub",
CanonifyUrls: canonify,
},
- Source: &source.InMemorySource{sources},
+ Source: &source.InMemorySource{ByteSource: sources},
}
t.Logf("Rendering with BaseUrl %q and CanonifyUrls set %v", s.Config.BaseUrl, canonify)
s.initializeSiteInfo()
s := &Site{
Target: target,
Config: Config{BaseUrl: "http://auth/bub/"},
- Source: &source.InMemorySource{WEIGHTED_SOURCES},
+ Source: &source.InMemorySource{ByteSource: WEIGHTED_SOURCES},
}
s.initializeSiteInfo()
}
if s.Sections["sect"][0].Weight != 2 || s.Sections["sect"][3].Weight != 6 {
- t.Errorf("Pages in unexpected order. First should be '%s', got '%s'", 2, s.Sections["sect"][0].Weight)
+ t.Errorf("Pages in unexpected order. First should be '%d', got '%d'", 2, s.Sections["sect"][0].Weight)
}
if s.Sections["sect"][1].Page.Title != "Three" || s.Sections["sect"][2].Page.Title != "Four" {
s := &Site{
Target: target,
Config: Config{BaseUrl: "http://auth/bub/", Indexes: indexes},
- Source: &source.InMemorySource{sources},
+ Source: &source.InMemorySource{ByteSource: sources},
}
s.initializeSiteInfo()
Target: target,
Alias: alias,
Config: Config{UglyUrls: false},
- Source: &source.InMemorySource{urlFakeSource},
+ Source: &source.InMemorySource{ByteSource: urlFakeSource},
}
s.initializeSiteInfo()
s.prepTemplates()
import (
"bufio"
"bytes"
- "errors"
"fmt"
"io"
"unicode"
return nil
}
}
- return
}
func peekLine(r *bufio.Reader) (line []byte, err error) {
default:
panic(fmt.Sprintf("Unable to determine delims from %q", firstLine))
}
- return
}
func extractFrontMatterDelims(r *bufio.Reader, left, right []byte) (fm FrontMatter, err error) {
return wr.Bytes(), nil
}
}
- return nil, errors.New("Could not find front matter.")
}
func matches_quick(buf, expected []byte) (ok bool, err error) {