Switching to the rjson library which is more friendly to human generated json.
authorspf13 <steve.francia@gmail.com>
Wed, 2 Oct 2013 02:45:24 +0000 (22:45 -0400)
committerspf13 <steve.francia@gmail.com>
Wed, 2 Oct 2013 02:45:24 +0000 (22:45 -0400)
commands/server.go
hugolib/page.go
hugolib/page_test.go
parser/parse_frontmatter_test.go

index fb2feead6868bf4b21c8041cb52ac4c53a697045..b4d37d3e631a6604aa37531d86c108103e92c9a0 100644 (file)
@@ -61,7 +61,7 @@ func serve(port int) {
                fmt.Println("Serving pages from " + Config.GetAbsPath(Config.PublishDir))
        }
 
-       fmt.Println("Web Server is available at http://localhost:", port)
+       fmt.Printf("Web Server is available at http://localhost:%v\n", port)
        fmt.Println("Press ctrl+c to stop")
        panic(http.ListenAndServe(":"+strconv.Itoa(port), http.FileServer(http.Dir(Config.GetAbsPath(Config.PublishDir)))))
 }
index 9d978c984eb8f03e7e863198e4e08af57053e162..7bb51ebb08c874f33ea9e2827ecf858c7c728f63 100644 (file)
@@ -15,7 +15,6 @@ package hugolib
 
 import (
        "bytes"
-       "encoding/json"
        "errors"
        "fmt"
        "github.com/BurntSushi/toml"
@@ -26,11 +25,12 @@ import (
        "html/template"
        "io"
        "launchpad.net/goyaml"
+       json "launchpad.net/rjson"
+       "net/url"
        "path"
        "sort"
        "strings"
        "time"
-       "net/url"
 )
 
 type Page struct {
@@ -467,4 +467,3 @@ func (p *Page) TargetPath() (outfile string) {
 
        return path.Join(p.Dir, strings.TrimSpace(outfile))
 }
-
index d16d7f071fa21bc345951dcd8c0d5459a7dd0f35..bf5e97352e85484c4fa0ee3a9f70d913a06f0de0 100644 (file)
@@ -49,6 +49,21 @@ Leading
 "slug": "spf13-vim-3-0-release-and-new-website"
 }
 
+Content of the file goes Here
+`
+       SIMPLE_PAGE_JSON_LOOSE = `
+{
+"title": "spf13-vim 3.0 release and new website"
+"description": "spf13-vim is a cross platform distribution of vim plugins and resources for Vim."
+"tags": [ ".vimrc", "plugins", "spf13-vim", "vim" ]
+"date": "2012-04-06"
+"categories": [
+    "Development"
+    "VIM"
+],
+"slug": "spf13-vim-3-0-release-and-new-website"
+}
+
 Content of the file goes Here
 `
        SIMPLE_PAGE_RFC3339_DATE  = "---\ntitle: RFC3339 Date\ndate: \"2013-05-17T16:59:30Z\"\n---\nrfc3339 content"
@@ -223,6 +238,7 @@ func TestCreatePage(t *testing.T) {
                r string
        }{
                {SIMPLE_PAGE_JSON},
+               {SIMPLE_PAGE_JSON_LOOSE},
                {SIMPLE_PAGE_JSON_MULTIPLE},
                //{strings.NewReader(SIMPLE_PAGE_JSON_COMPACT)},
        }
index 6d65d9dcb54d9f45f36dd504126d9bc2ac134d26..87666542a2e5d3ffe7ddf7cc710e4a10beeaa648 100644 (file)
@@ -29,6 +29,7 @@ var (
        CONTENT_SLUG_BUG                = "---\ntitle: slug doc 2\nslug: slug-doc-2\n---\nslug doc 2 content"
        CONTENT_FM_NO_DOC               = "---\ntitle: no doc\n---"
        CONTENT_WITH_JS_FM              = "{\n  \"categories\": \"d\",\n  \"tags\": [\n    \"a\", \n    \"b\", \n    \"c\"\n  ]\n}\nJSON Front Matter with tags and categories"
+       CONTENT_WITH_JS_LOOSE_FM        = "{\n  \"categories\": \"d\"\n  \"tags\": [\n    \"a\" \n    \"b\" \n    \"c\"\n  ]\n}\nJSON Front Matter with tags and categories"
 )
 
 var lineEndings = []string{"\n", "\r\n"}
@@ -113,6 +114,7 @@ func TestStandaloneCreatePageFrom(t *testing.T) {
                {CONTENT_LWS_HTML, false, true, "", "<html><body></body></html>"},
                {CONTENT_LWS_LF_HTML, false, true, "", "<html><body></body></html>"},
                {CONTENT_WITH_JS_FM, true, false, "{\n  \"categories\": \"d\",\n  \"tags\": [\n    \"a\", \n    \"b\", \n    \"c\"\n  ]\n}", "JSON Front Matter with tags and categories"},
+               {CONTENT_WITH_JS_LOOSE_FM, true, false, "{\n  \"categories\": \"d\"\n  \"tags\": [\n    \"a\" \n    \"b\" \n    \"c\"\n  ]\n}", "JSON Front Matter with tags and categories"},
                {CONTENT_SLUG_WORKING, true, false, "---\ntitle: slug doc 2\nslug: slug-doc-2\n\n---\n", "slug doc 2 content"},
                {CONTENT_SLUG_WORKING_VARIATION, true, false, "---\ntitle: slug doc 3\nslug: slug-doc 3\n---\n", "slug doc 3 content"},
                {CONTENT_SLUG_BUG, true, false, "---\ntitle: slug doc 2\nslug: slug-doc-2\n---\n", "slug doc 2 content"},
@@ -281,6 +283,7 @@ func TestExtractFrontMatterDelim(t *testing.T) {
                {"{ { } { } }", "{ { } { } }", noErrExpected},
                {"{\n{\n}\n}\n", "{\n{\n}\n}", noErrExpected},
                {"{\n  \"categories\": \"d\",\n  \"tags\": [\n    \"a\", \n    \"b\", \n    \"c\"\n  ]\n}\nJSON Front Matter with tags and categories", "{\n  \"categories\": \"d\",\n  \"tags\": [\n    \"a\", \n    \"b\", \n    \"c\"\n  ]\n}", noErrExpected},
+               {"{\n  \"categories\": \"d\"\n  \"tags\": [\n    \"a\" \n    \"b\" \n    \"c\"\n  ]\n}\nJSON Front Matter with tags and categories", "{\n  \"categories\": \"d\"\n  \"tags\": [\n    \"a\" \n    \"b\" \n    \"c\"\n  ]\n}", noErrExpected},
        }
 
        for _, test := range tests {