tpl: Unexport the rest of the internal template funcs
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 4 Mar 2016 00:00:41 +0000 (01:00 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 4 Mar 2016 00:00:41 +0000 (01:00 +0100)
tpl/template.go
tpl/template_funcs.go
tpl/template_resources.go
tpl/template_resources_test.go

index c5a23628a14d7f9a28530c8bf3666df4604ee5ee..2793e4dd5fef1b56047431fe2740f5d1d8321be4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2015 The Hugo Authors. All rights reserved.
+// Copyright 2016 The Hugo Authors. All rights reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -89,7 +89,7 @@ func New() Template {
        return templates
 }
 
-func Partial(name string, context_list ...interface{}) template.HTML {
+func partial(name string, context_list ...interface{}) template.HTML {
        if strings.HasPrefix("partials/", name) {
                name = name[8:]
        }
@@ -103,7 +103,7 @@ func Partial(name string, context_list ...interface{}) template.HTML {
        return ExecuteTemplateToHTML(context, "partials/"+name, "theme/partials/"+name)
 }
 
-func ExecuteTemplate(context interface{}, w io.Writer, layouts ...string) {
+func executeTemplate(context interface{}, w io.Writer, layouts ...string) {
        worked := false
        for _, layout := range layouts {
 
@@ -131,7 +131,7 @@ func ExecuteTemplate(context interface{}, w io.Writer, layouts ...string) {
 func ExecuteTemplateToHTML(context interface{}, layouts ...string) template.HTML {
        b := bp.GetBuffer()
        defer bp.PutBuffer(b)
-       ExecuteTemplate(context, b, layouts...)
+       executeTemplate(context, b, layouts...)
        return template.HTML(b.String())
 }
 
index e74fc7d265a11c170f9f733de95cee2858a141a7..9b2bbec41e07fa0b491855d42e98abae2a629502 100644 (file)
@@ -1526,8 +1526,8 @@ func init() {
                "eq":           eq,
                "first":        first,
                "ge":           ge,
-               "getCSV":       GetCSV,
-               "getJSON":      GetJSON,
+               "getCSV":       getCSV,
+               "getJSON":      getJSON,
                "getenv":       func(varName string) string { return os.Getenv(varName) },
                "gt":           gt,
                "hasPrefix":    func(a, b string) bool { return strings.HasPrefix(a, b) },
@@ -1547,9 +1547,9 @@ func init() {
                "modBool":      modBool,
                "mul":          func(a, b interface{}) (interface{}, error) { return doArithmetic(a, b, '*') },
                "ne":           ne,
-               "partial":      Partial,
+               "partial":      partial,
                "pluralize":    pluralize,
-               "readDir":      ReadDir,
+               "readDir":      readDir,
                "ref":          ref,
                "relURL":       func(a string) template.HTML { return template.HTML(helpers.RelURL(a)) },
                "relref":       relRef,
index 8f438155fbc4fdc627775d239c5e73f3321b022b..1c0655d2c0f1ac2bb337a237a58f9e477eb68d8d 100644 (file)
@@ -182,10 +182,10 @@ func resGetResource(url string) ([]byte, error) {
        return resGetLocal(url, hugofs.SourceFs)
 }
 
-// GetJSON expects one or n-parts of a URL to a resource which can either be a local or a remote one.
+// getJSON expects one or n-parts of a URL to a resource which can either be a local or a remote one.
 // If you provide multiple parts they will be joined together to the final URL.
 // GetJSON returns nil or parsed JSON to use in a short code.
-func GetJSON(urlParts ...string) interface{} {
+func getJSON(urlParts ...string) interface{} {
        var v interface{}
        url := strings.Join(urlParts, "")
 
@@ -222,12 +222,12 @@ func parseCSV(c []byte, sep string) ([][]string, error) {
        return r.ReadAll()
 }
 
-// GetCSV expects a data separator and one or n-parts of a URL to a resource which
+// getCSV expects a data separator and one or n-parts of a URL to a resource which
 // can either be a local or a remote one.
 // The data separator can be a comma, semi-colon, pipe, etc, but only one character.
 // If you provide multiple parts for the URL they will be joined together to the final URL.
 // GetCSV returns nil or a slice slice to use in a short code.
-func GetCSV(sep string, urlParts ...string) [][]string {
+func getCSV(sep string, urlParts ...string) [][]string {
        var d [][]string
        url := strings.Join(urlParts, "")
 
@@ -260,7 +260,7 @@ func GetCSV(sep string, urlParts ...string) [][]string {
        return d
 }
 
-func ReadDir(path string) []os.FileInfo {
+func readDir(path string) []os.FileInfo {
        wd := ""
        p := ""
        if viper.GetString("WorkingDir") != "" {
index b28ee35029787727ecea3ee1c45eaf3489d95aff..8e3a9d1d02a19f19bba056a6412b558a9645d174 100644 (file)
@@ -242,7 +242,7 @@ func TestGetJSONFailParse(t *testing.T) {
        defer os.Remove(getCacheFileID(url))
 
        want := map[string]interface{}{"gomeetup": []interface{}{"Sydney", "San Francisco", "Stockholm"}}
-       have := GetJSON(url)
+       have := getJSON(url)
        assert.NotNil(t, have)
        if have != nil {
                assert.EqualValues(t, want, have)
@@ -271,7 +271,7 @@ func TestGetCSVFailParseSep(t *testing.T) {
        defer os.Remove(getCacheFileID(url))
 
        want := [][]string{{"gomeetup", "city"}, {"yes", "Sydney"}, {"yes", "San Francisco"}, {"yes", "Stockholm"}}
-       have := GetCSV(",", url)
+       have := getCSV(",", url)
        assert.NotNil(t, have)
        if have != nil {
                assert.EqualValues(t, want, have)
@@ -302,7 +302,7 @@ func TestGetCSVFailParse(t *testing.T) {
        defer os.Remove(getCacheFileID(url))
 
        want := [][]string{{"gomeetup", "city"}, {"yes", "Sydney"}, {"yes", "San Francisco"}, {"yes", "Stockholm"}}
-       have := GetCSV(",", url)
+       have := getCSV(",", url)
        assert.NotNil(t, have)
        if have != nil {
                assert.EqualValues(t, want, have)