assets

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 18, 2015 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Asset

func Asset(name string) ([]byte, error)

Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.

func AssetDir

func AssetDir(name string) ([]string, error)

AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:

data/
  foo.txt
  img/
    a.png
    b.png

then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.

func AssetNames

func AssetNames() []string

AssetNames returns the names of the assets.

func CacheControlHandler added in v0.2.1

func CacheControlHandler(version string, h http.Handler) http.Handler

func GeneratedConfigHandler added in v0.2.1

func GeneratedConfigHandler(config WebConsoleConfig, h http.Handler) http.Handler

func GzipHandler added in v0.2.1

func GzipHandler(h http.Handler) http.Handler

GzipHandler wraps a http.Handler to support transparent gzip encoding.

func HTML5ModeHandler added in v0.2.1

func HTML5ModeHandler(contextRoot string, subcontextMap map[string]string, h http.Handler) (http.Handler, error)

HTML5ModeHandler will serve any static assets we know about, all other paths are assumed to be HTML5 paths for the console application and index.html will be served. contextRoot must contain leading and trailing slashes, e.g. /console/

subcontextMap is a map of keys (subcontexts, no leading or trailing slashes) to the asset path (no leading slash) to serve for that subcontext if a resource that does not exist is requested

func RegisterMimeTypes added in v0.3.1

func RegisterMimeTypes()

RegisterMimeTypes adds mime type registrations for the file types the assets server will serve. Registering here so we work without /etc/mime.types installed

Types

type LongestToShortest added in v0.5.1

type LongestToShortest []string

func (LongestToShortest) Len added in v0.5.1

func (s LongestToShortest) Len() int

func (LongestToShortest) Less added in v0.5.1

func (s LongestToShortest) Less(i, j int) bool

func (LongestToShortest) Swap added in v0.5.1

func (s LongestToShortest) Swap(i, j int)

type WebConsoleConfig added in v0.2.2

type WebConsoleConfig struct {
	// MasterAddr is the host:port the UI should call the master API on. Scheme is derived from the scheme the UI is served on, so they must be the same.
	MasterAddr string
	// MasterPrefix is the OpenShift API context root
	MasterPrefix string
	// KubernetesAddr is the host:port the UI should call the kubernetes API on. Scheme is derived from the scheme the UI is served on, so they must be the same.
	// TODO this is probably unneeded since everything goes through the openshift master's proxy
	KubernetesAddr string
	// KubernetesPrefix is the Kubernetes API context root
	KubernetesPrefix string
	// OAuthAuthorizeURI is the OAuth2 endpoint to use to request an API token. It must support request_type=token.
	OAuthAuthorizeURI string
	// OAuthRedirectBase is the base URI of the web console. It must be a valid redirect_uri for the OAuthClientID
	OAuthRedirectBase string
	// OAuthClientID is the OAuth2 client_id to use to request an API token. It must be authorized to redirect to the web console URL.
	OAuthClientID string
	// LogoutURI is an optional (absolute) URI to redirect to after completing a logout. If not specified, the built-in logout page is shown.
	LogoutURI string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL