def update_worksheet_raw(uuid): """ Request body contains the raw lines of the worksheet. """ lines = decoded_body().split(os.linesep) new_items = worksheet_util.parse_worksheet_form(lines, local.model, request.user, uuid) worksheet_info = get_worksheet_info(uuid, fetch_items=True) update_worksheet_items(worksheet_info, new_items) response.status = 204 # Success, No Content