minio/pkg/fs
Harshavardhana aed62788d9 api: Implement multiple objects Delete api - fixes #956
This API takes input XML input in following form.

```
<?xml version="1.0" encoding="UTF-8"?>
<Delete>
    <Quiet>true</Quiet>
    <Object>
         <Key>Key</Key>
    </Object>
    <Object>
         <Key>Key</Key>
    </Object>
    ...
</Delete>
```

and responds the list of successful deletes, list of errors
for all the deleted objects.

```
<?xml version="1.0" encoding="UTF-8"?>
<DeleteResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
  <Deleted>
    <Key>sample1.txt</Key>
  </Deleted>
  <Error>
    <Key>sample2.txt</Key>
    <Code>AccessDenied</Code>
    <Message>Access Denied</Message>
  </Error>
</DeleteResult>
```
2016-03-06 18:31:50 -08:00
..
api_suite_nix_test.go multipart: remove proper MD5, rather create MD5 based on parts to be s3 compatible. 2016-03-02 14:20:49 -08:00
api_suite_windows_test.go multipart: remove proper MD5, rather create MD5 based on parts to be s3 compatible. 2016-03-02 14:20:49 -08:00
fs_test.go server: Remove max-buckets option and now max buckets is unlimited. 2016-02-06 18:25:47 -08:00
fs-backend-metadata.go cleanup: Remove definitions and move them to its relative places accordingly 2016-02-22 10:41:27 -08:00
fs-bucket-acl.go cleanup: Remove definitions and move them to its relative places accordingly 2016-02-22 10:41:27 -08:00
fs-bucket-listobjects.go list: Fix handling of maxKeys and prefixes. 2016-03-01 17:34:31 -08:00
fs-bucket.go cleanup: Remove definitions and move them to its relative places accordingly 2016-02-22 10:41:27 -08:00
fs-datatypes.go api: Implement CopyObject s3 API, doing server side copy. 2016-02-27 19:51:59 -08:00
fs-errors.go cleanup: Remove definitions and move them to its relative places accordingly 2016-02-22 10:41:27 -08:00
fs-multipart.go api: Implement multiple objects Delete api - fixes #956 2016-03-06 18:31:50 -08:00
fs-object.go api: Implement CopyObject s3 API, doing server side copy. 2016-02-27 19:51:59 -08:00
fs-utils.go cleanup: Remove definitions and move them to its relative places accordingly 2016-02-22 10:41:27 -08:00
fs.go build/vet: Fix all the shadowing reports with go1.6 2016-02-23 14:34:39 -08:00