Change all minio-io path to minio

This commit is contained in:
Harshavardhana
2015-05-11 16:23:10 -07:00
parent e39de4f603
commit 8d06504068
68 changed files with 127 additions and 127 deletions
+3 -3
View File
@@ -21,9 +21,9 @@ import (
"strconv"
"github.com/gorilla/mux"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/utils/log"
)
func (server *minioAPI) isValidOp(w http.ResponseWriter, req *http.Request, acceptsContentType contentType) bool {
+1 -1
View File
@@ -22,7 +22,7 @@ import (
"strings"
"time"
"github.com/minio-io/minio/pkg/api/config"
"github.com/minio/minio/pkg/api/config"
)
type timeHandler struct {
+3 -3
View File
@@ -24,9 +24,9 @@ import (
"encoding/xml"
"github.com/gorilla/mux"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/utils/log"
)
const (
+1 -1
View File
@@ -21,7 +21,7 @@ import (
"sort"
"strconv"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/storage/drivers"
)
// Reply date format
+6 -6
View File
@@ -21,12 +21,12 @@ import (
"net/http"
router "github.com/gorilla/mux"
"github.com/minio-io/minio/pkg/api/config"
"github.com/minio-io/minio/pkg/api/logging"
"github.com/minio-io/minio/pkg/api/quota"
"github.com/minio-io/minio/pkg/featureflags"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/api/config"
"github.com/minio/minio/pkg/api/logging"
"github.com/minio/minio/pkg/api/quota"
"github.com/minio/minio/pkg/featureflags"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/storage/drivers"
)
// private use
+6 -6
View File
@@ -32,14 +32,14 @@ import (
"net/http"
"net/http/httptest"
"github.com/minio-io/minio/pkg/featureflags"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio-io/minio/pkg/storage/drivers/donut"
"github.com/minio-io/minio/pkg/storage/drivers/memory"
"github.com/minio-io/minio/pkg/storage/drivers/mocks"
"github.com/minio/minio/pkg/featureflags"
"github.com/minio/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/storage/drivers/donut"
"github.com/minio/minio/pkg/storage/drivers/memory"
"github.com/minio/minio/pkg/storage/drivers/mocks"
"github.com/stretchr/testify/mock"
. "github.com/minio-io/check"
. "github.com/minio/check"
)
func Test(t *testing.T) { TestingT(t) }
+1 -1
View File
@@ -24,7 +24,7 @@ import (
"path"
"sync"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio/minio/pkg/iodine"
)
// Config context
+2 -2
View File
@@ -23,8 +23,8 @@ import (
"sync"
"testing"
. "github.com/minio-io/check"
"github.com/minio-io/minio/pkg/utils/crypto/keys"
. "github.com/minio/check"
"github.com/minio/minio/pkg/utils/crypto/keys"
)
type MySuite struct{}
+1 -1
View File
@@ -24,7 +24,7 @@ import (
"strconv"
"time"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/storage/drivers"
)
// No encoder interface exists, so we create one.
+2 -2
View File
@@ -24,8 +24,8 @@ import (
"os"
"time"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/utils/log"
)
type logHandler struct {
+2 -2
View File
@@ -25,8 +25,8 @@ import (
"sync"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/utils/log"
)
// bandwidthQuotaHandler
+1 -1
View File
@@ -21,7 +21,7 @@ import (
"net/http"
"sync"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/utils/log"
)
// requestLimitHandler
+1 -1
View File
@@ -22,7 +22,7 @@ import (
"net/http"
"time"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/utils/log"
)
// requestLimitHandler
+1 -1
View File
@@ -20,7 +20,7 @@ import (
"net/url"
"strconv"
"github.com/minio-io/minio/pkg/storage/drivers"
"github.com/minio/minio/pkg/storage/drivers"
)
// parse bucket url queries
+4 -4
View File
@@ -23,10 +23,10 @@ import (
"path"
"github.com/gorilla/mux"
"github.com/minio-io/minio/pkg/api/config"
"github.com/minio-io/minio/pkg/iodine"
"github.com/minio-io/minio/pkg/utils/crypto/keys"
"github.com/minio-io/minio/pkg/utils/log"
"github.com/minio/minio/pkg/api/config"
"github.com/minio/minio/pkg/iodine"
"github.com/minio/minio/pkg/utils/crypto/keys"
"github.com/minio/minio/pkg/utils/log"
)
const (