Browse code

Put back the github.com path for the import

creack authored on 2013/03/13 03:59:27
Showing 13 changed files
... ...
@@ -1,8 +1,8 @@
1 1
 package client
2 2
 
3 3
 import (
4
-	"../future"
5
-	"../rcli"
4
+	"github.com/dotcloud/docker/future"
5
+	"github.com/dotcloud/docker/rcli"
6 6
 	"io"
7 7
 	"io/ioutil"
8 8
 	"log"
... ...
@@ -1,9 +1,9 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"./fs"
5 4
 	"encoding/json"
6 5
 	"errors"
6
+	"github.com/dotcloud/docker/fs"
7 7
 	"github.com/kr/pty"
8 8
 	"io"
9 9
 	"io/ioutil"
... ...
@@ -1,9 +1,9 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"./fs"
5 4
 	"bufio"
6 5
 	"fmt"
6
+	"github.com/dotcloud/docker/fs"
7 7
 	"io"
8 8
 	"io/ioutil"
9 9
 	"math/rand"
... ...
@@ -1,9 +1,9 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"./fs"
5 4
 	"container/list"
6 5
 	"fmt"
6
+	"github.com/dotcloud/docker/fs"
7 7
 	"io/ioutil"
8 8
 	"log"
9 9
 	"os"
... ...
@@ -1,8 +1,8 @@
1 1
 package main
2 2
 
3 3
 import (
4
-	"../client"
5 4
 	"flag"
5
+	"github.com/dotcloud/docker/client"
6 6
 	"log"
7 7
 	"os"
8 8
 	"path"
... ...
@@ -1,7 +1,7 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"./fs"
4
+	"github.com/dotcloud/docker/fs"
5 5
 	"io"
6 6
 	"io/ioutil"
7 7
 	"log"
... ...
@@ -1,9 +1,9 @@
1 1
 package main
2 2
 
3 3
 import (
4
-	".."
5
-	"../server"
6 4
 	"flag"
5
+	"github.com/dotcloud/docker"
6
+	"github.com/dotcloud/docker/server"
7 7
 	"log"
8 8
 )
9 9
 
... ...
@@ -1,9 +1,9 @@
1 1
 package fs
2 2
 
3 3
 import (
4
-	"../future"
5 4
 	"errors"
6 5
 	"fmt"
6
+	"github.com/dotcloud/docker/future"
7 7
 	"io"
8 8
 	"io/ioutil"
9 9
 	"os"
... ...
@@ -1,7 +1,7 @@
1 1
 package fs
2 2
 
3 3
 import (
4
-	"../fake"
4
+	"github.com/dotcloud/docker/fake"
5 5
 	"io/ioutil"
6 6
 	"os"
7 7
 	"testing"
... ...
@@ -1,10 +1,10 @@
1 1
 package fs
2 2
 
3 3
 import (
4
-	"../future"
5 4
 	"database/sql"
6 5
 	"errors"
7 6
 	"fmt"
7
+	"github.com/dotcloud/docker/future"
8 8
 	_ "github.com/mattn/go-sqlite3"
9 9
 	"github.com/shykes/gorp" //Forked to implement CreateTablesOpts
10 10
 	"io"
... ...
@@ -1,9 +1,9 @@
1 1
 package fs
2 2
 
3 3
 import (
4
-	"../fake"
5 4
 	"errors"
6 5
 	"fmt"
6
+	"github.com/dotcloud/docker/fake"
7 7
 	"io/ioutil"
8 8
 	"os"
9 9
 	"testing"
... ...
@@ -1,15 +1,15 @@
1 1
 package server
2 2
 
3 3
 import (
4
-	".."
5
-	"../fs"
6
-	"../future"
7
-	"../rcli"
8 4
 	"bufio"
9 5
 	"bytes"
10 6
 	"encoding/json"
11 7
 	"errors"
12 8
 	"fmt"
9
+	"github.com/dotcloud/docker"
10
+	"github.com/dotcloud/docker/fs"
11
+	"github.com/dotcloud/docker/future"
12
+	"github.com/dotcloud/docker/rcli"
13 13
 	"io"
14 14
 	"net/http"
15 15
 	"net/url"
... ...
@@ -60,8 +60,6 @@ func (srv *Server) Help() string {
60 60
 		{"mirror", "(debug only) (No documentation available)"},
61 61
 		{"port", "Lookup the public-facing port which is NAT-ed to PRIVATE_PORT"},
62 62
 		{"ps", "List containers"},
63
-		{"pull", "Download a new image from a remote location"},
64
-		{"put", "Import a new image from a local archive"},
65 63
 		{"reset", "Reset changes to a container's filesystem"},
66 64
 		{"restart", "Restart a running container"},
67 65
 		{"rm", "Remove a container"},
... ...
@@ -1,8 +1,8 @@
1 1
 package docker
2 2
 
3 3
 import (
4
-	"./future"
5 4
 	"fmt"
5
+	"github.com/dotcloud/docker/future"
6 6
 	"sync"
7 7
 	"time"
8 8
 )