summaryrefslogtreecommitdiffstats
path: root/source/lazy_file_reader.go
AgeCommit message (Collapse)Author
2016-11-15source, tpl: Fix staticcheck complaintsAlbert Nigmatzianov
tpl/template_funcs.go:1019:3: the surrounding loop is unconditionally terminated source/lazy_file_reader.go:66:5: err != nil is always true for all possible values ([nil:error] != [nil:error])
2016-07-30Make LazyFileReader use the Afero source fsBjørn Erik Pedersen
Fixes #2317
2016-01-05Update and refactor to ack Go AuthorsCameron Moore
2015-12-07Fix copyright headers in source filesBjørn Erik Pedersen
Still need to add some missing headers and an AUTHORS file. See #1646
2015-11-23Change the license to Apache 2.0Steve Francia
2015-08-22Add LazyFileReader type to source libraryTatsushi Demachi
LazyFileReader is an io.Reader implementation to postpone reading the file contents until it is really needed. It is introduced for improving performance and memory consumption at reading media files in content directory.