Commit 9c37fe29 authored by Brendan Burns's avatar Brendan Burns

Merge pull request #12227 from freeformz/remove_code_google_com

s:code.google.com/p:github.com/scalingdata:
parents 8696c6c1 63207741
...@@ -15,10 +15,6 @@ ...@@ -15,10 +15,6 @@
"Rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675" "Rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675"
}, },
{ {
"ImportPath": "code.google.com/p/gcfg",
"Rev": "c2d3050044d05357eaf6c3547249ba57c5e235cb"
},
{
"ImportPath": "github.com/Sirupsen/logrus", "ImportPath": "github.com/Sirupsen/logrus",
"Comment": "v0.6.2-10-g51fe59a", "Comment": "v0.6.2-10-g51fe59a",
"Rev": "51fe59aca108dc5680109e7b2051cbdcfa5a253c" "Rev": "51fe59aca108dc5680109e7b2051cbdcfa5a253c"
...@@ -502,6 +498,10 @@ ...@@ -502,6 +498,10 @@
"Rev": "d0e0d8e11f318e000a8cc434616d69e329edc374" "Rev": "d0e0d8e11f318e000a8cc434616d69e329edc374"
}, },
{ {
"ImportPath": "github.com/scalingdata/gcfg",
"Rev": "37aabad69cfd3d20b8390d902a8b10e245c615ff"
},
{
"ImportPath": "github.com/shurcooL/sanitized_anchor_name", "ImportPath": "github.com/shurcooL/sanitized_anchor_name",
"Rev": "9a8b7d4e8f347bfa230879db9d7d4e4d9e19f962" "Rev": "9a8b7d4e8f347bfa230879db9d7d4e4d9e19f962"
}, },
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"log" "log"
) )
import "code.google.com/p/gcfg" import "github.com/scalingdata/gcfg"
func ExampleReadStringInto() { func ExampleReadStringInto() {
cfgStr := `; Comment line cfgStr := `; Comment line
......
...@@ -9,8 +9,8 @@ import ( ...@@ -9,8 +9,8 @@ import (
) )
import ( import (
"code.google.com/p/gcfg/scanner" "github.com/scalingdata/gcfg/scanner"
"code.google.com/p/gcfg/token" "github.com/scalingdata/gcfg/token"
) )
var unescape = map[rune]rune{'\\': '\\', '"': '"', 'n': '\n', 't': '\t'} var unescape = map[rune]rune{'\\': '\\', '"': '"', 'n': '\n', 't': '\t'}
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
) )
import ( import (
"code.google.com/p/gcfg/token" "github.com/scalingdata/gcfg/token"
) )
// In an ErrorList, an error is represented by an *Error. // In an ErrorList, an error is represented by an *Error.
......
...@@ -9,8 +9,8 @@ import ( ...@@ -9,8 +9,8 @@ import (
) )
import ( import (
"code.google.com/p/gcfg/scanner" "github.com/scalingdata/gcfg/scanner"
"code.google.com/p/gcfg/token" "github.com/scalingdata/gcfg/token"
) )
func ExampleScanner_Scan() { func ExampleScanner_Scan() {
......
...@@ -19,7 +19,7 @@ import ( ...@@ -19,7 +19,7 @@ import (
) )
import ( import (
"code.google.com/p/gcfg/token" "github.com/scalingdata/gcfg/token"
) )
// An ErrorHandler may be provided to Scanner.Init. If a syntax error is // An ErrorHandler may be provided to Scanner.Init. If a syntax error is
......
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
) )
import ( import (
"code.google.com/p/gcfg/token" "github.com/scalingdata/gcfg/token"
) )
var fset = token.NewFileSet() var fset = token.NewFileSet()
......
...@@ -8,7 +8,7 @@ import ( ...@@ -8,7 +8,7 @@ import (
"unicode" "unicode"
"unicode/utf8" "unicode/utf8"
"code.google.com/p/gcfg/types" "github.com/scalingdata/gcfg/types"
) )
type tag struct { type tag struct {
......
...@@ -20,7 +20,7 @@ import ( ...@@ -20,7 +20,7 @@ import (
"io" "io"
"time" "time"
"code.google.com/p/gcfg" "github.com/scalingdata/gcfg"
) )
const ( const (
......
...@@ -30,13 +30,13 @@ import ( ...@@ -30,13 +30,13 @@ import (
"sync" "sync"
"time" "time"
"code.google.com/p/gcfg"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/credentials" "github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/service/autoscaling" "github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/elb" "github.com/aws/aws-sdk-go/service/elb"
"github.com/scalingdata/gcfg"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/cloudprovider" "k8s.io/kubernetes/pkg/cloudprovider"
......
...@@ -31,8 +31,8 @@ import ( ...@@ -31,8 +31,8 @@ import (
"k8s.io/kubernetes/pkg/util" "k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/wait" "k8s.io/kubernetes/pkg/util/wait"
"code.google.com/p/gcfg"
"github.com/golang/glog" "github.com/golang/glog"
"github.com/scalingdata/gcfg"
"golang.org/x/oauth2" "golang.org/x/oauth2"
"golang.org/x/oauth2/google" "golang.org/x/oauth2/google"
compute "google.golang.org/api/compute/v1" compute "google.golang.org/api/compute/v1"
......
...@@ -20,7 +20,7 @@ import ( ...@@ -20,7 +20,7 @@ import (
"io" "io"
"time" "time"
"code.google.com/p/gcfg" "github.com/scalingdata/gcfg"
) )
const ( const (
......
...@@ -27,7 +27,6 @@ import ( ...@@ -27,7 +27,6 @@ import (
"strings" "strings"
"time" "time"
"code.google.com/p/gcfg"
"github.com/rackspace/gophercloud" "github.com/rackspace/gophercloud"
"github.com/rackspace/gophercloud/openstack" "github.com/rackspace/gophercloud/openstack"
"github.com/rackspace/gophercloud/openstack/blockstorage/v1/volumes" "github.com/rackspace/gophercloud/openstack/blockstorage/v1/volumes"
...@@ -39,6 +38,7 @@ import ( ...@@ -39,6 +38,7 @@ import (
"github.com/rackspace/gophercloud/openstack/networking/v2/extensions/lbaas/pools" "github.com/rackspace/gophercloud/openstack/networking/v2/extensions/lbaas/pools"
"github.com/rackspace/gophercloud/openstack/networking/v2/extensions/lbaas/vips" "github.com/rackspace/gophercloud/openstack/networking/v2/extensions/lbaas/vips"
"github.com/rackspace/gophercloud/pagination" "github.com/rackspace/gophercloud/pagination"
"github.com/scalingdata/gcfg"
"github.com/golang/glog" "github.com/golang/glog"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
......
...@@ -29,7 +29,7 @@ import ( ...@@ -29,7 +29,7 @@ import (
"sort" "sort"
"strings" "strings"
"code.google.com/p/gcfg" "github.com/scalingdata/gcfg"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/cloudprovider" "k8s.io/kubernetes/pkg/cloudprovider"
) )
......
...@@ -24,12 +24,12 @@ import ( ...@@ -24,12 +24,12 @@ import (
"regexp" "regexp"
"time" "time"
"code.google.com/p/gcfg"
"github.com/rackspace/gophercloud" "github.com/rackspace/gophercloud"
os_servers "github.com/rackspace/gophercloud/openstack/compute/v2/servers" os_servers "github.com/rackspace/gophercloud/openstack/compute/v2/servers"
"github.com/rackspace/gophercloud/pagination" "github.com/rackspace/gophercloud/pagination"
"github.com/rackspace/gophercloud/rackspace" "github.com/rackspace/gophercloud/rackspace"
"github.com/rackspace/gophercloud/rackspace/compute/v2/servers" "github.com/rackspace/gophercloud/rackspace/compute/v2/servers"
"github.com/scalingdata/gcfg"
"github.com/golang/glog" "github.com/golang/glog"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment