Skip to content

Commit

Permalink
Use Uncodin instead of mattbaird
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert committed Mar 20, 2014
1 parent 360967c commit 2834c2b
Show file tree
Hide file tree
Showing 28 changed files with 35 additions and 35 deletions.
8 changes: 4 additions & 4 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ package main
import (
"encoding/json"
"flag"
"github.com/mattbaird/elastigo/api"
"github.com/mattbaird/elastigo/cluster"
"github.com/mattbaird/elastigo/core"
"github.com/mattbaird/elastigo/indices"
"github.com/Uncodin/elastigo/api"
"github.com/Uncodin/elastigo/cluster"
"github.com/Uncodin/elastigo/core"
"github.com/Uncodin/elastigo/indices"
"log"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion cluster/clusterReroute.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The cluster health API allows to get a very simple status on the health of the cluster.
Expand Down
2 changes: 1 addition & 1 deletion cluster/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package cluster
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion cluster/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
package cluster

import (
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// http://www.elasticsearch.org/guide/reference/api/admin-cluster-update-settings.html
Expand Down
2 changes: 1 addition & 1 deletion core/bulk.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"errors"
"fmt"
u "github.com/araddon/gou"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"io"
"log"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion core/bulk_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"encoding/json"
"flag"
u "github.com/araddon/gou"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"log"
"strconv"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion core/count.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

type CountResponse struct {
Expand Down
2 changes: 1 addition & 1 deletion core/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The delete API allows to delete a typed JSON document from a specific index based on its id.
Expand Down
2 changes: 1 addition & 1 deletion core/deleteByQuery.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"strings"
)

Expand Down
4 changes: 2 additions & 2 deletions core/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package core_test
import (
"bytes"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mattbaird/elastigo/core"
"github.com/Uncodin/elastigo/api"
"github.com/Uncodin/elastigo/core"
"strconv"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion core/explain.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The explain api computes a score explanation for a query and a specific document.
Expand Down
2 changes: 1 addition & 1 deletion core/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The get API allows to get a typed JSON document from the index based on its id.
Expand Down
2 changes: 1 addition & 1 deletion core/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The index API adds or updates a typed JSON document in a specific index, making it searchable.
Expand Down
2 changes: 1 addition & 1 deletion core/mget.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// Multi GET API allows to get multiple documents based on an index, type (optional) and id (and possibly routing).
Expand Down
2 changes: 1 addition & 1 deletion core/moreLikeThis.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The more like this (mlt) API allows to get documents that are “like” a specified document.
Expand Down
2 changes: 1 addition & 1 deletion core/percolate.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The percolator allows to register queries against an index, and then send percolate requests which include a doc, and
Expand Down
2 changes: 1 addition & 1 deletion core/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"net/url"
"strconv"
)
Expand Down
2 changes: 1 addition & 1 deletion core/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"encoding/json"
"flag"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"io"
"log"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion core/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The update API allows to update a document based on a script provided. The operation gets the document
Expand Down
2 changes: 1 addition & 1 deletion core/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package core
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The validate API allows a user to validate a potentially expensive query without executing it.
Expand Down
2 changes: 1 addition & 1 deletion indices/deleteIndex.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The delete API allows you to delete one or more indices through an API. This operation may fail
Expand Down
2 changes: 1 addition & 1 deletion indices/flush.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
)

// The flush API allows to flush one or more indices through an API. The flush process of an index basically
Expand Down
2 changes: 1 addition & 1 deletion indices/refresh.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion indices/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package indices
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/Uncodin/elastigo/api"
"strings"
)

Expand Down
4 changes: 2 additions & 2 deletions search/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package search
import (
"encoding/json"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mattbaird/elastigo/core"
"github.com/Uncodin/elastigo/api"
"github.com/Uncodin/elastigo/core"
"log"
"net/url"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion search/search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package search

import (
u "github.com/araddon/gou"
"github.com/mattbaird/elastigo/core"
"github.com/Uncodin/elastigo/core"
"log"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions search/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ package search
import (
"flag"
"github.com/araddon/gou"
"github.com/mattbaird/elastigo/api"
"github.com/mattbaird/elastigo/core"
"github.com/Uncodin/elastigo/api"
"github.com/Uncodin/elastigo/core"
"log"
"os"
//"testing"
Expand Down
4 changes: 2 additions & 2 deletions tutorial/start_1.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"flag"
"fmt"
"github.com/mattbaird/elastigo/api"
"github.com/mattbaird/elastigo/core"
"github.com/Uncodin/elastigo/api"
"github.com/Uncodin/elastigo/core"
"log"
"os"
)
Expand Down

0 comments on commit 2834c2b

Please sign in to comment.