tpl: Add template function namespaces
authorCameron Moore <moorereason@gmail.com>
Mon, 13 Mar 2017 22:55:02 +0000 (17:55 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 30 Apr 2017 08:56:38 +0000 (10:56 +0200)
commitde7c32a1a880820252e922e0c9fcf69e109c0d1b
tree07d813f2617dd4a889aaebb885a9c1281a229960
parent154e18ddb9ad205055d5bd4827c87f3f0daf499f
tpl: Add template function namespaces

This commit moves almost all of the template functions into separate
packages under tpl/ and adds a namespace framework.  All changes should
be backward compatible for end users, as all existing function names in
the template funcMap are left intact.

Seq and DoArithmatic have been moved out of the helpers package and into
template namespaces.

Most of the tests involved have been refactored, and many new tests have
been written.  There's still work to do, but this is a big improvement.

I got a little overzealous and added some new functions along the way:

- strings.Contains
- strings.ContainsAny
- strings.HasSuffix
- strings.TrimPrefix
- strings.TrimSuffix

Documentation is forthcoming.

Fixes #3042
52 files changed:
helpers/general.go
helpers/general_test.go
hugolib/scratch.go
tpl/collections/apply.go [new file with mode: 0644]
tpl/collections/apply_test.go [new file with mode: 0644]
tpl/collections/collections.go [new file with mode: 0644]
tpl/collections/collections_test.go [new file with mode: 0644]
tpl/collections/index.go [new file with mode: 0644]
tpl/collections/index_test.go [new file with mode: 0644]
tpl/collections/sort.go [new file with mode: 0644]
tpl/collections/sort_test.go [new file with mode: 0644]
tpl/collections/where.go [new file with mode: 0644]
tpl/collections/where_test.go [new file with mode: 0644]
tpl/compare/compare.go [new file with mode: 0644]
tpl/compare/compare_test.go [new file with mode: 0644]
tpl/crypto/crypto.go [new file with mode: 0644]
tpl/crypto/crypto_test.go [new file with mode: 0644]
tpl/data/data.go [new file with mode: 0644]
tpl/data/resources.go [new file with mode: 0644]
tpl/data/resources_test.go [new file with mode: 0644]
tpl/encoding/encoding.go [new file with mode: 0644]
tpl/encoding/encoding_test.go [new file with mode: 0644]
tpl/images/images.go [new file with mode: 0644]
tpl/images/images_test.go [new file with mode: 0644]
tpl/inflect/inflect.go [new file with mode: 0644]
tpl/inflect/inflect_test.go [new file with mode: 0644]
tpl/lang/lang.go [new file with mode: 0644]
tpl/math/math.go [new file with mode: 0644]
tpl/math/math_test.go [new file with mode: 0644]
tpl/os/os.go [new file with mode: 0644]
tpl/os/os_test.go [new file with mode: 0644]
tpl/safe/safe.go [new file with mode: 0644]
tpl/safe/safe_test.go [new file with mode: 0644]
tpl/strings/regexp.go [new file with mode: 0644]
tpl/strings/regexp_test.go [new file with mode: 0644]
tpl/strings/strings.go [new file with mode: 0644]
tpl/strings/strings_test.go [new file with mode: 0644]
tpl/strings/truncate.go [new file with mode: 0644]
tpl/strings/truncate_test.go [new file with mode: 0644]
tpl/time/time.go [new file with mode: 0644]
tpl/time/time_test.go [new file with mode: 0644]
tpl/tplimpl/reflect_helpers.go [deleted file]
tpl/tplimpl/templateFuncster.go
tpl/tplimpl/template_func_truncate.go [deleted file]
tpl/tplimpl/template_func_truncate_test.go [deleted file]
tpl/tplimpl/template_funcs.go
tpl/tplimpl/template_funcs_test.go
tpl/tplimpl/template_resources.go [deleted file]
tpl/tplimpl/template_resources_test.go [deleted file]
tpl/transform/transform.go [new file with mode: 0644]
tpl/transform/transform_test.go [new file with mode: 0644]
tpl/urls/urls.go [new file with mode: 0644]