Back to rackspace for pull request.

Revert "rackspace -> maxlinc, to make sure travis works"

This reverts commit c56e9e6d7ac987d0b073f79a545df94fc4d609bf.
diff --git a/README.asciidoc b/README.asciidoc
index 163ce88..4d2e4c4 100644
--- a/README.asciidoc
+++ b/README.asciidoc
@@ -18,11 +18,11 @@
 ===== Installing Into an Existing Project
 Assuming you have a project underway already and its `$GOPATH` environment variable holds the correct path, you can include the Gophercloud package in the usual manner using `go get`:
 
-    go get github.com/maxlinc/gophercloud
+    go get github.com/rackspace/gophercloud
 
 The remainder of this document, and supporting materials, assumes a correct `$GOPATH` configuration, but further assumes that an environment variable `$GOPHERCLOUD` points to the Gophercloud installation directory as well.  E.g.,
 
-    export GOPHERCLOUD=$GOPATH/src/github.com/maxlinc/gophercloud
+    export GOPHERCLOUD=$GOPATH/src/github.com/rackspace/gophercloud
 
 ===== Creating a New Gophercloud Project
 If you're just starting out with Go, a convenience script exists which lets you create a new Go workspace preconfigured with Gophercloud for you.
@@ -30,7 +30,7 @@
 -----------------------------------------------------------------------------------------------------
 You can execute the following command to create a brand new Go workspace that is minimally configured for use with Gophercloud.  This should work for any reasonable POSIX-compatible environment.
 
-	source <(curl "https://raw.github.com/maxlinc/Gophercloud/master/scripts/create-environment.sh")
+	source <(curl "https://raw.github.com/rackspace/Gophercloud/master/scripts/create-environment.sh")
 -----------------------------------------------------------------------------------------------------
 
 This script will not only install the software, but also create a shell script `env.sh` which, when executed, restores both `$GOPATH` and `$GOPHERCLOUD` to their correct values.  The project will be installed in `$HOME/go/gophercloud`.
@@ -53,10 +53,10 @@
 2. Gophercloud incorrectly implements the relevant Openstack standards.
 3. Mistake in setting up the `SDK_*` environment variables above.
 
-If a problem occurs, https://github.com/maxlinc/gophercloud/issues[we'd love to hear about it in the issue tracker!]
+If a problem occurs, https://github.com/rackspace/gophercloud/issues[we'd love to hear about it in the issue tracker!]
 
 ==== Using Gophercloud
-Simply list Gophercloud in the import section of relevant source listings, and you will be able to issue cloud requests through Gophercloud.  For examples, either refer to the detailed SDK documentation, or https://github.com/maxlinc/gophercloud/tree/master/acceptance[take a look at the acceptance-level tests in the `acceptance` subdirectory.]
+Simply list Gophercloud in the import section of relevant source listings, and you will be able to issue cloud requests through Gophercloud.  For examples, either refer to the detailed SDK documentation, or https://github.com/rackspace/gophercloud/tree/master/acceptance[take a look at the acceptance-level tests in the `acceptance` subdirectory.]
 
 ==== Contributing Features or Bug-Fixes
 After using Gophercloud for a while, you might find that it lacks some useful feature, or that existing behavior seems buggy.  We welcome contributions from our users for both missing functionality as well as for bug fixes.
diff --git a/acceptance/01-authentication.go b/acceptance/01-authentication.go
index fea6e59..bcd3545 100644
--- a/acceptance/01-authentication.go
+++ b/acceptance/01-authentication.go
@@ -1,7 +1,7 @@
 package main
 
 import (
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 func main() {
diff --git a/acceptance/02-list-servers.go b/acceptance/02-list-servers.go
index 28aba0c..77bf82f 100644
--- a/acceptance/02-list-servers.go
+++ b/acceptance/02-list-servers.go
@@ -2,7 +2,7 @@
 
 import (
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 	"flag"
 )
 
diff --git a/acceptance/03-get-server-details.go b/acceptance/03-get-server-details.go
index c60769a..9d534ef 100644
--- a/acceptance/03-get-server-details.go
+++ b/acceptance/03-get-server-details.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var id = flag.String("i", "", "Server ID to get info on.  Defaults to first server in your account if unspecified.")
diff --git a/acceptance/04-create-server.go b/acceptance/04-create-server.go
index 1d2249b..ff2174e 100644
--- a/acceptance/04-create-server.go
+++ b/acceptance/04-create-server.go
@@ -3,7 +3,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var region, serverName, imageRef, flavorRef *string
diff --git a/acceptance/05-list-images.go b/acceptance/05-list-images.go
index 14b93f7..8120591 100644
--- a/acceptance/05-list-images.go
+++ b/acceptance/05-list-images.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/06-list-flavors.go b/acceptance/06-list-flavors.go
index d4555f0..5495a83 100644
--- a/acceptance/06-list-flavors.go
+++ b/acceptance/06-list-flavors.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/07-change-admin-password.go b/acceptance/07-change-admin-password.go
index 828552e..6f078ee 100644
--- a/acceptance/07-change-admin-password.go
+++ b/acceptance/07-change-admin-password.go
@@ -3,7 +3,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/08-reauthentication.go b/acceptance/08-reauthentication.go
index 96d764c..f383a30 100644
--- a/acceptance/08-reauthentication.go
+++ b/acceptance/08-reauthentication.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/09-resize-server.go b/acceptance/09-resize-server.go
index 22ebcaa..b12ef4b 100644
--- a/acceptance/09-resize-server.go
+++ b/acceptance/09-resize-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 	"time"
 )
 
diff --git a/acceptance/10-reboot-server.go b/acceptance/10-reboot-server.go
index 53ccfcf..78ab357 100644
--- a/acceptance/10-reboot-server.go
+++ b/acceptance/10-reboot-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/11-rescue-unrescue-server.go b/acceptance/11-rescue-unrescue-server.go
index ffc4a3f..4c4d481 100644
--- a/acceptance/11-rescue-unrescue-server.go
+++ b/acceptance/11-rescue-unrescue-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/12-update-server.go b/acceptance/12-update-server.go
index cff4e64..203b37d 100644
--- a/acceptance/12-update-server.go
+++ b/acceptance/12-update-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/13-rebuild-server.go b/acceptance/13-rebuild-server.go
index 0fcb7af..12aed26 100644
--- a/acceptance/13-rebuild-server.go
+++ b/acceptance/13-rebuild-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/14-list-addresses.go b/acceptance/14-list-addresses.go
index 0f6bc37..128b25a 100644
--- a/acceptance/14-list-addresses.go
+++ b/acceptance/14-list-addresses.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode, for acceptance testing.  $? still indicates errors though.")
diff --git a/acceptance/15-list-keypairs.go b/acceptance/15-list-keypairs.go
index 3b8977a..da526e2 100644
--- a/acceptance/15-list-keypairs.go
+++ b/acceptance/15-list-keypairs.go
@@ -3,7 +3,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/16-create-delete-keypair.go b/acceptance/16-create-delete-keypair.go
index 5e36c6b..e292473 100644
--- a/acceptance/16-create-delete-keypair.go
+++ b/acceptance/16-create-delete-keypair.go
@@ -3,7 +3,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/17-create-delete-image.go b/acceptance/17-create-delete-image.go
index 2cbb850..1fae5ab 100644
--- a/acceptance/17-create-delete-image.go
+++ b/acceptance/17-create-delete-image.go
@@ -3,7 +3,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet mode for acceptance testing.  $? non-zero on error though.")
diff --git a/acceptance/99-delete-server.go b/acceptance/99-delete-server.go
index 9262509..f3639b9 100644
--- a/acceptance/99-delete-server.go
+++ b/acceptance/99-delete-server.go
@@ -3,7 +3,7 @@
 import (
 	"fmt"
 	"flag"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 )
 
 var quiet = flag.Bool("quiet", false, "Quiet operation for acceptance tests.  $? non-zero if problem.")
diff --git a/acceptance/libargs.go b/acceptance/libargs.go
index c87973b..78fde06 100644
--- a/acceptance/libargs.go
+++ b/acceptance/libargs.go
@@ -3,7 +3,7 @@
 import (
 	"crypto/rand"
 	"fmt"
-	"github.com/maxlinc/gophercloud"
+	"github.com/rackspace/gophercloud"
 	"os"
 	"time"
 )
diff --git a/scripts/create-environment.sh b/scripts/create-environment.sh
index 5658cb9..6bae6e8 100644
--- a/scripts/create-environment.sh
+++ b/scripts/create-environment.sh
@@ -8,8 +8,8 @@
 mkdir -p $GOPATH
 
 # Download gophercloud into that environment
-go get github.com/maxlinc/gophercloud
-cd $GOPATH/src/github.com/maxlinc/gophercloud
+go get github.com/rackspace/gophercloud
+cd $GOPATH/src/github.com/rackspace/gophercloud
 git checkout master
 
 # Write out the env.sh convenience file.
@@ -17,7 +17,7 @@
 cat <<EOF >env.sh
 #!/bin/bash
 export GOPATH=$(pwd)
-export GOPHERCLOUD=$GOPATH/src/github.com/maxlinc/gophercloud
+export GOPHERCLOUD=$GOPATH/src/github.com/rackspace/gophercloud
 EOF
 chmod a+x env.sh