Merge pull request #771 from harshavardhana/pr_out_rename_more

Rename more
master
Harshavardhana 9 years ago
commit 8346cc74db
  1. 14
      README.md
  2. 2
      doc.go
  3. 2
      main.go
  4. 8
      pkg/donut/interfaces.go
  5. 2
      pkg/erasure/ec_minio_common.h
  6. 2
      pkg/server/api/definitions.go
  7. 2
      pkg/server/signature-v4_test.go

@ -1,10 +1,10 @@
## Minio Server [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Minio is a minimal object storage server written in Golang and licensed under [Apache license v2](./LICENSE). Minio is compatible with Amazon S3 APIs. [![Build Status](https://travis-ci.org/minio/minio.svg?branch=master)](https://travis-ci.org/minio/minio)
Minio is a minimal cloud storage server written in Golang and licensed under [Apache license v2](./LICENSE). Minio is compatible with Amazon S3 APIs. [![Build Status](https://travis-ci.org/minio/minio.svg?branch=master)](https://travis-ci.org/minio/minio)
## Minio Client
[Minio Client (mc)](https://github.com/minio/mc#minio-client-mc-) provides a modern alternative to Unix commands like ``ls``, ``cat``, ``cp``, ``sync``, and ``diff``. It supports POSIX compatible filesystems and Amazon S3 compatible object storage systems. It is entirely written in Golang.
[Minio Client (mc)](https://github.com/minio/mc#minio-client-mc-) provides a modern alternative to Unix commands like ``ls``, ``cat``, ``cp``, ``sync``, and ``diff``. It supports POSIX compatible filesystems and Amazon S3 compatible cloud storage systems. It is entirely written in Golang.
## Amazon S3 Compatible Client Libraries
- [Golang Library](https://github.com/minio/minio-go)
@ -16,27 +16,27 @@ Minio is a minimal object storage server written in Golang and licensed under [A
~~~
Storage Backend:
- Donut: Erasure coded backend.
- Status: Standalone mode complete.
- Status: Standalone mode complete.
Storage Operations:
- Collective:
- Status: Work in progress.
Storage Management:
- WebCLI:
- WebCLI:
- Status: Work in progress.
- Authentication:
- Status: Work in progress.
- Admin Console:
- Status: Work in progress.
- User Console:
- User Console:
- Status: Work in progress.
- Logging:
- Logging:
- Status: Work in progress.
~~~
### Install
#### GNU/Linux
#### GNU/Linux
Download ``minio`` from https://dl.minio.io:9000/updates/2015/Jun/linux-amd64/minio

@ -14,5 +14,5 @@
* limitations under the License.
*/
// Minio - Object storage inspired by Amazon S3 and Facebook Haystack.
// Minio Cloud Storage
package main

@ -35,7 +35,7 @@ var flags = []cli.Flag{
cli.StringFlag{
Name: "address",
Value: ":9000",
Usage: "ADDRESS:PORT for object storage access",
Usage: "ADDRESS:PORT for cloud storage access",
},
cli.StringFlag{
Name: "address-mgmt",

@ -20,14 +20,14 @@ import "io"
// Collection of Donut specification interfaces
// Interface is a collection of object storage and management interface
// Interface is a collection of cloud storage and management interface
type Interface interface {
ObjectStorage
CloudStorage
Management
}
// ObjectStorage is a donut object storage interface
type ObjectStorage interface {
// CloudStorage is a donut cloud storage interface
type CloudStorage interface {
// Storage service operations
GetBucketMetadata(bucket string, signature *Signature) (BucketMetadata, error)
SetBucketMetadata(bucket string, metadata map[string]string, signature *Signature) error

@ -1,5 +1,5 @@
/*
* Mini Object Storage, (C) 2014 Minio, Inc.
* Minio Cloud Storage, (C) 2014 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

@ -53,7 +53,7 @@ type ListObjectsResponse struct {
// When response is truncated (the IsTruncated element value in the response
// is true), you can use the key name in this field as marker in the subsequent
// request to get next set of objects. Object storage lists objects in alphabetical
// request to get next set of objects. Server lists objects in alphabetical
// order Note: This element is returned only if you have delimiter request parameter
// specified. If response does not include the NextMaker and it is truncated,
// you can use the value of the last Key in the response as the marker in the

@ -1,5 +1,5 @@
/*
* Minimal object storage library (C) 2015 Minio, Inc.
* Minio Cloud Storage, (C) 2014 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

Loading…
Cancel
Save