Externalize the writing of content to a target
authorNoah Campbell <noahcampbell@gmail.com>
Sat, 31 Aug 2013 00:18:05 +0000 (17:18 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Sat, 31 Aug 2013 03:45:42 +0000 (20:45 -0700)
commitb14b61af37f0428545af0d191a27170434e4aad2
treee85c3091019449c87ce4059675a892f554876a0d
parentbc3c2290027359206f3569bcd51447443f7b40bb
Externalize the writing of content to a target

Introducing the target module in hugo.  This provides the simple
interface for writing content given a label (filename) and a io.Reader
containing the content to be written.

If site.Target is not set, it defaults back to the original behavior of
writing to file system.

In hugolib/site_url_test.go I have an InMemoryTarget for testing
purposes and use it to see if the final output of a render matches.
hugolib/site.go
hugolib/site_url_test.go [new file with mode: 0644]
target/file.go [new file with mode: 0644]