tpl: Add Copyright reference to the Go authors
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Mar 2016 19:59:41 +0000 (20:59 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Mar 2016 20:00:53 +0000 (21:00 +0100)
Also a reference to the `index`issue in Go's issue tracker.

tpl/template_funcs.go

index c0ed9bb315114277057f9bd223f531ff6e16d2cd..3e21e81d621d0203262fb661fa708a9fa27a720a 100644 (file)
@@ -1,5 +1,7 @@
 // Copyright 2015 The Hugo Authors. All rights reserved.
 //
+// Portions Copyright The Go Authors.
+
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
 // You may obtain a copy of the License at
@@ -1326,6 +1328,7 @@ func prepareArg(value reflect.Value, argType reflect.Type) (reflect.Value, error
 // indexed item must be a map, slice, or array.
 //
 // Copied from Go stdlib src/text/template/funcs.go.
+// Can hopefully be removed in Go 1.7, see https://github.com/golang/go/issues/14751
 func index(item interface{}, indices ...interface{}) (interface{}, error) {
        v := reflect.ValueOf(item)
        if !v.IsValid() {