Merge pull request #7083 from Luap99/fix-template-escaping

replace the html/template package with text/template
This commit is contained in:
OpenShift Merge Robot 2020-07-27 12:52:51 +02:00 committed by GitHub
commit 71f7150490
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -3,10 +3,10 @@ package network
import (
"encoding/json"
"fmt"
"html/template"
"io"
"os"
"strings"
"text/template"
"github.com/containers/libpod/v2/cmd/podman/registry"
"github.com/containers/libpod/v2/pkg/domain/entities"

View file

@ -3,10 +3,10 @@ package network
import (
"encoding/json"
"fmt"
"html/template"
"os"
"strings"
"text/tabwriter"
"text/template"
"github.com/containers/libpod/v2/cmd/podman/registry"
"github.com/containers/libpod/v2/cmd/podman/validate"

View file

@ -2,11 +2,11 @@ package system
import (
"fmt"
"html/template"
"io"
"os"
"strings"
"text/tabwriter"
"text/template"
"time"
"github.com/containers/libpod/v2/cmd/podman/registry"

View file

@ -3,9 +3,9 @@ package system
import (
"bufio"
"context"
"html/template"
"os"
"strings"
"text/template"
"github.com/containers/buildah/pkg/formats"
"github.com/containers/libpod/v2/cmd/podman/registry"

View file

@ -2,9 +2,9 @@ package volumes
import (
"fmt"
"html/template"
"os"
"strings"
"text/template"
"github.com/containers/buildah/pkg/formats"
"github.com/containers/libpod/v2/cmd/podman/registry"

View file

@ -3,11 +3,11 @@ package volumes
import (
"context"
"fmt"
"html/template"
"io"
"os"
"strings"
"text/tabwriter"
"text/template"
"github.com/containers/libpod/v2/cmd/podman/registry"
"github.com/containers/libpod/v2/cmd/podman/validate"