Merge pull request #9 from anschelsc/master

http.Client flexibility
This commit is contained in:
jimt 2013-03-19 10:49:48 -07:00
commit f2fb9084dd
1 changed files with 10 additions and 3 deletions

View File

@ -182,10 +182,11 @@ func (this *Document) LoadFile(filename string, charset CharsetFunc) (err error)
return this.LoadStream(fd, charset)
}
// Load the contents of this document from the supplied uri.
func (this *Document) LoadUri(uri string, charset CharsetFunc) (err error) {
// Load the contents of this document from the supplied uri using the specifed
// client.
func (this *Document) LoadUriClient(uri string, client *http.Client, charset CharsetFunc) (err error) {
var r *http.Response
if r, err = http.Get(uri); err != nil {
if r, err = client.Get(uri); err != nil {
return
}
@ -193,6 +194,12 @@ func (this *Document) LoadUri(uri string, charset CharsetFunc) (err error) {
return this.LoadStream(r.Body, charset)
}
// Load the contents of this document from the supplied uri.
// (calls LoadUriClient with http.DefaultClient)
func (this *Document) LoadUri(uri string, charset CharsetFunc) (err error) {
return this.LoadUriClient(uri, http.DefaultClient, charset)
}
// Save the contents of this document to the supplied file.
func (this *Document) SaveFile(path string) error {
return ioutil.WriteFile(path, this.SaveBytes(), 0600)