tpl: Refactor package
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 17 Feb 2017 12:30:50 +0000 (13:30 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 17 Feb 2017 16:15:26 +0000 (17:15 +0100)
commitc507e2717df7dd4b870478033bc5ece0b039a8c4
tree873684fe890f1d23749ecbdbe8303712b6d9fafa
parent93ca7c9e958e34469a337e4efcc7c75774ec50fd
tpl: Refactor package

Now:

* The template API lives in /tpl
* The rest lives in /tpl/tplimpl

This is bound te be more improved in the future.

Updates #2701
35 files changed:
deps/deps.go
hugolib/embedded_shortcodes_test.go
hugolib/hugo_sites.go
hugolib/shortcode.go
hugolib/shortcode_test.go
hugolib/site.go
hugolib/sitemap_test.go
hugolib/testhelpers_test.go
tpl/amber_compiler.go [deleted file]
tpl/reflect_helpers.go [deleted file]
tpl/template.go
tpl/template_ast_transformers.go [deleted file]
tpl/template_ast_transformers_test.go [deleted file]
tpl/template_embedded.go [deleted file]
tpl/template_func_truncate.go [deleted file]
tpl/template_func_truncate_test.go [deleted file]
tpl/template_funcs.go [deleted file]
tpl/template_funcs_test.go [deleted file]
tpl/template_resources.go [deleted file]
tpl/template_resources_test.go [deleted file]
tpl/template_test.go [deleted file]
tpl/tplimpl/amber_compiler.go [new file with mode: 0644]
tpl/tplimpl/reflect_helpers.go [new file with mode: 0644]
tpl/tplimpl/template.go [new file with mode: 0644]
tpl/tplimpl/template_ast_transformers.go [new file with mode: 0644]
tpl/tplimpl/template_ast_transformers_test.go [new file with mode: 0644]
tpl/tplimpl/template_embedded.go [new file with mode: 0644]
tpl/tplimpl/template_func_truncate.go [new file with mode: 0644]
tpl/tplimpl/template_func_truncate_test.go [new file with mode: 0644]
tpl/tplimpl/template_funcs.go [new file with mode: 0644]
tpl/tplimpl/template_funcs_test.go [new file with mode: 0644]
tpl/tplimpl/template_resources.go [new file with mode: 0644]
tpl/tplimpl/template_resources_test.go [new file with mode: 0644]
tpl/tplimpl/template_test.go [new file with mode: 0644]
tplapi/template.go [deleted file]