Merge pull request #29314 from vdemeester/no-more-utils

Remove the utils package
This commit is contained in:
Sebastiaan van Stijn
2016-12-22 15:21:05 +01:00
committed by GitHub
9 changed files with 78 additions and 9 deletions

View File

@ -10,7 +10,7 @@ import (
"github.com/docker/docker/cli/command"
"github.com/docker/docker/cli/command/formatter"
"github.com/docker/docker/opts"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
"github.com/spf13/cobra"
)

View File

@ -8,7 +8,7 @@ import (
"text/tabwriter"
"text/template"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
)
// Format keys used to specify certain kinds of output formats

View File

@ -9,7 +9,7 @@ import (
"github.com/Sirupsen/logrus"
"github.com/docker/docker/cli"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
)
// Inspector defines an interface to implement to process elements

View File

@ -5,7 +5,7 @@ import (
"strings"
"testing"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
)
type testElement struct {

View File

@ -17,7 +17,7 @@ import (
"github.com/docker/docker/cli/command"
"github.com/docker/docker/opts"
"github.com/docker/docker/pkg/jsonlog"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
"github.com/spf13/cobra"
)

View File

@ -12,9 +12,9 @@ import (
"github.com/docker/docker/api/types/swarm"
"github.com/docker/docker/cli"
"github.com/docker/docker/cli/command"
"github.com/docker/docker/cli/debug"
"github.com/docker/docker/pkg/ioutils"
"github.com/docker/docker/utils"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
"github.com/docker/go-units"
"github.com/spf13/cobra"
)
@ -206,7 +206,7 @@ func prettyPrintInfo(dockerCli *command.DockerCli, info types.Info) error {
ioutils.FprintfIfNotEmpty(dockerCli.Out(), "Name: %s\n", info.Name)
ioutils.FprintfIfNotEmpty(dockerCli.Out(), "ID: %s\n", info.ID)
fmt.Fprintf(dockerCli.Out(), "Docker Root Dir: %s\n", info.DockerRootDir)
fmt.Fprintf(dockerCli.Out(), "Debug Mode (client): %v\n", utils.IsDebugEnabled())
fmt.Fprintf(dockerCli.Out(), "Debug Mode (client): %v\n", debug.IsEnabled())
fmt.Fprintf(dockerCli.Out(), "Debug Mode (server): %v\n", info.Debug)
if info.Debug {

View File

@ -11,7 +11,7 @@ import (
"github.com/docker/docker/cli"
"github.com/docker/docker/cli/command"
"github.com/docker/docker/dockerversion"
"github.com/docker/docker/utils/templates"
"github.com/docker/docker/pkg/templates"
"github.com/spf13/cobra"
)