Fix substr tpl func's int type variant issue
authorTatsushi Demachi <tdemachi@gmail.com>
Sat, 6 Jun 2015 15:21:14 +0000 (00:21 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 6 Jun 2015 19:03:30 +0000 (21:03 +0200)
commit51cabe6fafe5b18ce27962b7ec469f69fd5e2229
tree73f2aa4332f63e78fbd0ee2705248fc6daf68951
parentbe44345272276264719ede32447ce62fa92aa508
Fix substr tpl func's int type variant issue

`substr` template function takes one or two range arguments. Both
arguments must be int type values but if it is used with a calclation
function e.g. `add`, `len` etc, it causes a wrong type error.

This fixes the issue to allow the function to take other integer type
variant like `int64` etc.

This also includes a small fix on no range argument case.

Fix #1190
tpl/template_funcs.go
tpl/template_funcs_test.go