func (c *ContentController) handleFilePUT(f *model.VersionedFile, e *httpapp.Env) *httpapp.Response {
	f.Write(util.SlurpRequestBody(e))
	c.commitChanges(f, e)
	return httpapp.NewResponse(http.StatusNoContent)
}