2015-11-30 19:24:39 +00:00
|
|
|
// Code generated by go-bindata.
|
|
|
|
// sources:
|
2021-06-04 20:45:52 +00:00
|
|
|
// pkg/web_ui/assets/apple-touch-icon-01cd4680782fbb5bc02301347df9903d.png
|
2020-08-07 22:58:09 +00:00
|
|
|
// pkg/web_ui/assets/codemirror/mode/javascript/javascript-77218cd1268ea6df75775114ae086566.js
|
|
|
|
// pkg/web_ui/assets/codemirror/mode/ruby/ruby-ea43ca3a3bdd63a52811e8464d66134b.js
|
|
|
|
// pkg/web_ui/assets/codemirror/mode/yaml/yaml-86bec82a0f62e7a53eef41d44a8e4727.js
|
2021-06-04 20:45:52 +00:00
|
|
|
// pkg/web_ui/assets/consul-ui-00082c91bf8ec03a8cb114c3c113a550.js
|
|
|
|
// pkg/web_ui/assets/consul-ui-42af648a63ae37bbcb2469597e5e8100.css
|
2020-08-07 22:58:09 +00:00
|
|
|
// pkg/web_ui/assets/css.escape-851839b3ea1d0b4eb4c7089446df5e9f.js
|
2020-09-15 19:57:37 +00:00
|
|
|
// pkg/web_ui/assets/encoding-cdb50fbdab6d4d3fdf574dd784f77d27.js
|
2019-04-12 15:02:27 +00:00
|
|
|
// pkg/web_ui/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js
|
|
|
|
// pkg/web_ui/assets/favicon.ico
|
2021-06-04 20:45:52 +00:00
|
|
|
// pkg/web_ui/assets/favicon.svg
|
2021-04-15 18:15:02 +00:00
|
|
|
// pkg/web_ui/assets/init-5910c08f0513d860b0c43c7123524fdc.js
|
2019-04-12 15:02:27 +00:00
|
|
|
// pkg/web_ui/assets/loading-cylon-pink.svg
|
2020-10-09 20:31:15 +00:00
|
|
|
// pkg/web_ui/assets/metrics-providers/consul-31d7e3b0ef7c58d62338c7d7aeaaf545.js
|
2020-11-17 16:28:08 +00:00
|
|
|
// pkg/web_ui/assets/metrics-providers/prometheus-5f31ba3b7ffd850fa916a0a76933e968.js
|
2021-06-04 20:45:52 +00:00
|
|
|
// pkg/web_ui/assets/vendor-5d7aec9d1a955c335f43bf62e400f194.js
|
2020-12-11 03:26:04 +00:00
|
|
|
// pkg/web_ui/assets/vendor-9ea7d400c0cec7682e8871df14073823.css
|
2019-04-12 15:02:27 +00:00
|
|
|
// pkg/web_ui/index.html
|
2020-05-14 14:33:09 +00:00
|
|
|
// pkg/web_ui/oidc/callback
|
2019-04-12 15:02:27 +00:00
|
|
|
// pkg/web_ui/robots.txt
|
2020-05-14 14:33:09 +00:00
|
|
|
// pkg/web_ui/torii/redirect.html
|
2015-11-30 19:24:39 +00:00
|
|
|
// DO NOT EDIT!
|
|
|
|
|
2020-09-23 11:37:33 +00:00
|
|
|
package uiserver
|
2015-11-30 19:24:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"fmt"
|
|
|
|
"github.com/elazarl/go-bindata-assetfs"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func bindataRead(data []byte, name string) ([]byte, error) {
|
|
|
|
gz, err := gzip.NewReader(bytes.NewBuffer(data))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
_, err = io.Copy(&buf, gz)
|
|
|
|
clErr := gz.Close()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
if clErr != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type asset struct {
|
|
|
|
bytes []byte
|
|
|
|
info os.FileInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type bindataFileInfo struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fi bindataFileInfo) Name() string {
|
|
|
|
return fi.name
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Size() int64 {
|
|
|
|
return fi.size
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Mode() os.FileMode {
|
|
|
|
return fi.mode
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) ModTime() time.Time {
|
|
|
|
return fi.modTime
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) IsDir() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (fi bindataFileInfo) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8b\x67\x34\x1b\x0e\xd4\xb8\x13\x7b\xaf\xda\xbb\xa8\xbd\xc5\x5e\x41\xec\x59\xb3\xa5\x5a\x6a\xc5\x1e\x55\xbb\x84\xda\x45\x51\xbb\x45\x8a\xd8\xa3\x2a\x76\x51\xa3\x66\x11\xb3\xb5\xd5\x4c\x62\xef\xcd\xff\xfc\xfe\x1f\xde\xf7\xf3\x7b\xcf\xb9\xe7\xdc\xf3\x3c\xcf\x4d\x30\x31\xd2\x26\x27\x61\x26\x01\x00\x00\xe4\xba\x3a\x10\x53\x00\x00\x80\xfc\x6f\x89\x08\x00\x00\x80\xf2\x28\x81\x24\x00\x00\x00\xbe\x31\xd5\x56\x07\xd4\x8e\xb1\x62\x00\x00\x00\xc4\xe9\x99\xae\xb3\xa1\x21\x40\x10\x00\x00\x10\x01\x80\x71\xae\x00\xbc\xff\x12\x00\x00\xc0\x0c\xf8\x6f\x70\xe1\x40\x00\xee\xff\x27\x40\x00\x00\x8e\xf3\x3f\x16\x09\xc7\xfd\xdf\xfb\xbf\xd0\x72\x26\x2b\x18\x00\x60\x69\xd4\x85\xa8\x99\x07\x01\xf7\x6c\x09\x33\xcc\x35\x67\x3b\xf3\x4b\xdb\xcb\xf8\x5c\xa8\x9e\x76\x47\x73\x0a\x6a\x41\xf0\xe9\x9c\x92\x39\x05\xb1\xc3\x79\xe2\x30\x57\x89\xdd\xfb\xfe\x57\x17\xd5\x6d\xec\xd3\xca\x82\x9c\xb1\x6f\x2f\x5e\x3d\xf5\x7f\x9b\x29\x6d\x0f\xa6\x15\x87\x11\xab\xfd\xe6\xe2\xa2\x71\xce\x51\x9a\x92\x62\x2b\xbb\xe9\xba\xe8\xfe\x36\x8a\xfa\xd7\x11\x5e\x87\x45\xb4\x6d\x9f\x62\xf6\x2f\xb0\x1d\x6d\x6f\x77\x76\xb0\x21\x16\x17\xe1\x7f\xd2\x20\xc0\xc7\x3d\x38\xf4\xf5\xb0\x29\xae\x3d\xaa\x51\x2a\xfa\x54\x61\x4e\x80\x08\xcc\x4e\x80\x94\x08\x6c\x53\xa9\xa8\xe9\x80\x07\xc7\x27\x10\x76\x02\x02\xa1\xfa\x6f\xcb\xa0\x49\x00\xe4\x4f\x18\x42\x98\x13\xe0\x59\xb1\x4f\x9b\x4c\x0d\xa3\x67\xfc\x96\x81\x8f\x07\x17\x99\xc9\x2f\x92\xc0\x41\xe1\xe0\x66\x7d\x87\x01\x90\x88\x36\x33\x90\x16\xc0\xda\xee\xa7\x29\x3d\x15\xac\xc9\x3c\x30\xb1\x9f\x08\x4c\x4a\xf6\x6c\x18\x07\x07\x95\x85\x35\x9a\x60\x6c\x16\x57\x0b\xa7\xd7\x41\x06\x6a\x84\x39\x48\xf5\xc9\x82\x34\xc8\x56\x42\x99\xe7\xe1\x65\x35\xa4\xe8\x96\xd3\xe5\x09\xf2\xa1\x67\xac\x70\x3e\xa0\x6e\xd8\x84\xa2\x1c\xeb\xaa\xb0\x30\x20\x8e\xf2\x55\xb8\x98\x1c\xee\x4b\x1f\x0b\xda\xf7\x55\xa5\xb4\x8b\x33\x4f\x56\x2b\xfb\x2f\x6c\x05\x7f\x36\x68\xb3\xc9\xe9\xdf\x5e\x09\x38\x9f\x54\xb1\xf6\x74\xab\xca\xe2\x84\x60\x6d\x1e\x1f\xef\x11\xc4\x87\x6b\xd7\x25\x53\xdd\x85\xe3\x9e\x72\xfa\x3c\x4f\x6c\xaf\xc4\x53\x7a\xef\xd6\x2d\xd5\xc2\x11\x14\x47\x8e\x77\x70\xb8\xd4\x1d\x33\x10\xed\xd8\x0c\x03\xf8\x33\xdf\xf0\x58\xbf\xa7\xba\xf7\x27\x8f\x56\xb1\xc1\xfd\x37\x1e\x1e\x7d\xb9\x35\x0b\x42\x5c\x72\x1c\x9f\xd6\xa5\xc2\xf6\x14\xc3\xbc\x0f\x3f\x2e\x32\x7c\x41\xc4\xdc\x66\x8a\x07\x25\xe3\xa0\x16\x14\xf8\x3b\x2b\xf0\xdb\x56\x6c\x93\xeb\xc4\x7c\x41\xf7\x33\xab\x4b\xb1\x0d\x0c\x65\x66\xcc\xad\x77\xc5\xb1\xe0\x7f\x68\xfb\xd5\xe5\x9a\xf9\x43\x85\x13\x13\xd4\x2c\xcc\x68\xf5\x8b\xec\xe5\xb5\x0b\xea\x6e\x4c\x30\x7e\xd5\xbf\xe7\xf7\x1a\xdb\x77\x21\x3c\x23\x66\x60\xe4\x23\x0a\x3c\x97\xe7\x3f\x7f\x1b\x3e\x45\xb4\x8b\x00\xd9\xfa\x2b\x20\x87\x9b\x1f\xbf\x86\x1e\x59\xa5\x26\x5d\x94\x4b\xc2\x27\x44\x03\x5a\x6c\x57\x55\xfd\x5e\xf1\xab\x84\xd2\x5e\x52\xcc\x4d\x41\xb1\x12\x7f\x06\x54\x60\x5a\xab\x04\x0c\x61\x14\x6c\xe3\xc2\x91\x7f\xaf\xb5\xb6\x62\xa5\xd5\xf1\xf1\xdf\xef\xc0\x83\x26\x9f\x52\x31\xca\xe2\xb0\xbe\x0c\x15\x86\x3e\x67\x47\x0d\x99\xd0\x46\x3d\x3c\xa7\x60\x1b\xef\xa4\x3c\xea\x0f\xe0\x5e\x4d\x6a\xa7\xa8\x3d\xe6\xe2\xcf\x55\x22\x48\x1c\x57\x9a\x3c\xfe\xd9\x24\x0a\xf7\x85\xec\x87\xb9\x32\x21\x1f\xde\x51\x8b\xd6\xbf\xf5\x25\x4c\xa3\x16\xf2\xb7\xa0\xd7\xc0\xe0\x0f\xa8\x1f\x45\x73\x03\x48\xaa\xe5\x5f\xdb\xd0\xa0\x96\x3e\x58\xaa\x2d\x7c\x91\x45\x90\x53\x72\xe3\xe8\x7b\xe7\x2f\xbe\xdd\x34\xf1\xed\xc5\x3b\xe4\x90\x86\x78\x5b\x80\xea\x56\x4c\x61\x29\x77\xe6\x94\xa3\x17\x9d\x44\x69\x75\xe1\x13\x8b\x26\x96\x3f\xec\x57\xff\xde\x7d\xbd\xbd\x3e\xca\x9a\xff\x56\x8f\x07\xff\x94\xc6\x88\x54\x6d\x35\xc9\xe3\xb3\xf1\x9c\x89\x3a\xa3\x1c\x62\x3a\x54\xbb\xca\xe4\x53\x9b\x60\x92\x23\xef\xae\x09\x6e\xf8\x80\x01\xb2\x3d\x3f\x7a\x04\x5a\xb9\xc3\xe9\xf3\x71\x80\xe8\xdc\xd3\x1f\xee\x77\xb1\x98\x2f\xfb\x67\x21\x97\x0a\x1e\x6c\x4f\xbb\x26\xa7\x61\xfb\x97\xdb\xed\xa8\xf3\xbe\x05\x9b\xfc\x88\xd3\x66\x04\x46\x1a\x2e\xbd\x9b\x7e\xa2\xad\x31\xf7\xc4\xc1\xf0\x06\x05\xd5\x03\xf3\x29\xa8\xa3\xfc\xb7\x1b\xa8\xac\xcf\xf3\x31\x6a\x8e\x7d\x04\x41\x17\x6c\x80\x19\x29\xd1\x8c\x1f\x0f\x49\xe5\xaf\x64\xf2\x0d\x08\x
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPngBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPng,
|
|
|
|
"web_ui/assets/apple-touch-icon-01cd4680782fbb5bc02301347df9903d.png",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPng() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPngBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/apple-touch-icon-01cd4680782fbb5bc02301347df9903d.png", size: 7243, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
var _web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x7c\x7b\x7f\xdb\x38\xae\xe8\xff\xf9\x14\x36\x6f\xae\x86\xac\xe1\x87\x9c\xbe\xc2\x0c\xeb\xd3\xdd\x4d\x77\x3b\xdb\x69\xe7\x4c\xd3\xee\xce\xda\x9a\xae\x22\xd3\x89\x52\x59\xf2\x48\x72\x12\xd7\xd2\xfd\xec\xf7\xc7\xa7\x28\xdb\xe9\x74\xce\xd9\x7f\x6a\x0a\x04\x41\x10\x04\x40\x00\x64\x7a\x1b\xe6\x9d\x9b\x22\x4b\x93\x38\x2d\xd9\x62\x9d\x46\x65\x9c\xa5\x98\x6c\x05\x9c\xb3\x6d\x99\x87\x11\xa7\x0e\xbc\x86\xcd\x86\x6e\x6b\x28\x36\xcb\xcb\x2c\x29\x3e\xd1\x2d\xcf\xf3\x2c\xa7\x63\xf8\xe1\xfd\xbb\xb7\xef\xcb\x3c\x4e\xaf\xe8\x09\xbc\xbf\xf8\xf9\xf5\xdb\xbf\xd2\xc7\x12\xfa\x76\xbd\xbc\xe4\x39\x7d\x02\x6f\x3f\xfc\xf8\xa7\xf3\x9f\xe9\x53\x0d\x4d\x92\x37\x71\xc9\xf3\x30\xa1\xcf\xe0\xed\x87\x37\x6f\xe8\x73\xd9\xf1\xa7\x2c\x4b\x78\x98\x9a\xbe\x53\xb8\xf8\xf9\xc3\x39\xf5\x47\xf0\xea\xe5\x9b\xf7\xe7\xd4\xf7\x25\xd6\x05\xbf\x2f\xa9\xaf\xa6\xfd\x18\x26\x6b\x4e\xfd\x13\x38\x7f\xf7\x8a\xfa\x6a\xd2\x77\x97\x37\x3c\x2a\xa9\xff\x44\x7e\xbd\xcc\xf3\x70\x43\xfd\xa7\x80\xb6\x88\xfa\xcf\x00\xd5\x88\xfa\x6a\xba\x1f\xb9\xe0\xee\x4d\x5c\x94\xd4\x3f\x75\x20\x74\x3c\x02\x44\x11\x1d\xfb\x80\x00\xd1\xf1\x18\xd0\x14\xd1\xf1\x09\xa0\x00\xd1\xb1\x9a\xe4\x3c\xe1\x4b\x9e\x96\x72\xf0\xf8\x09\x1c\x87\x51\xc4\x57\x25\x1d\xc1\x31\x4f\xe7\xd4\xaf\xa1\xe4\xf9\x32\x4e\x43\x29\xa8\x31\x45\x52\x56\x08\x1e\x53\xa4\x04\x84\xe0\x29\x45\x4a\x2a\x08\x9e\x8b\xe6\x9b\x37\x08\xfc\x11\x45\x62\xcd\x08\x7c\x9f\x22\xb9\x6a\x04\xfe\x63\x8a\xce\xdf\xbd\x42\xe0\x3f\xa3\x68\x8b\xc0\x7f\x4e\x51\x8d\x60\xec\x53\x44\x11\x8c\xc7\x14\x01\x82\xf1\x09\x45\x53\x04\xe3\xc7\x14\x05\xa8\x86\x55\x9e\xcd\xd7\x72\xe7\x8a\x4f\x74\x3a\x82\xe9\x09\xf8\x01\x4c\x9f\xc8\x7f\x9f\xc9\x7f\x4f\x9d\x7f\xfd\x31\x8c\xc5\x8f\xc2\xfa\x96\x9f\x27\x6a\xc0\x13\x38\x09\x60\x3a\x1e\xc9\x1f\x5f\x13\x3b\x55\x5f\x4f\x15\xca\x53\x85\xa2\xa6\x1e\x8b\x01\x01\xac\x78\xbe\xc8\xf2\xe5\x4b\xc9\x61\xa3\x64\x1c\x4a\xc8\x21\x85\x18\x42\xa5\x87\x05\x0b\x07\x09\x4f\xaf\xca\xeb\xbe\x7f\x54\xdc\xc5\x65\x74\x8d\x63\xb2\x8d\xc2\x82\x77\x7c\x5a\x5e\xc7\xc5\xe0\x98\xf1\x41\xce\x57\x49\x18\x71\x3c\x9c\xcd\xf0\x6c\x56\x21\x32\xbc\x02\x74\xec\x23\xe2\xf6\xa4\x02\x38\x4b\xdb\xc0\x5c\x02\xf3\x36\xb0\x94\xc0\xb2\x0d\xbc\x95\xc0\xdb\x36\x70\x21\x81\x8b\x36\xf0\x52\x02\x2f\x11\x39\xba\xcc\x79\xf8\xf9\x48\x72\x3b\x36\xdc\x2a\x93\xc0\xbc\xd5\x7b\x62\x7a\xd3\x75\x92\xb8\x1d\x8f\x4d\x47\x77\xe4\x82\x9f\x58\xb0\xef\x82\x9f\xd2\x9c\x97\xeb\x3c\xed\xe8\xde\x70\x5a\xf4\xfd\x40\xf5\xf9\x76\x8e\x6d\xed\x8e\xf1\xed\x14\x1a\xdb\xed\xb3\xf3\x4c\x45\xe7\x38\x80\x70\x5a\x04\x6d\x94\xa7\x0d\x59\x50\x2d\x81\x1b\x4c\x47\x41\xc0\x64\x63\x87\xe4\x33\x77\x3a\x45\xb1\x3f\x0e\xbe\x3e\xe6\xb9\x65\xa3\x0d\x3f\x7d\x98\xf5\xf1\xc8\x65\xbd\xcd\xf3\xd8\x3f\xc8\xc3\x60\xb5\x2e\xae\xb1\xc0\x26\x75\x0d\x65\x78\x99\x70\x3a\xdd\x9e\xd0\x27\xf0\x98\x4e\x7d\xf0\xc7\x01\x3c\xa1\x4f\xe1\xa9\xfc\x38\x09\xe0\x19\x3d\x81\xe7\xe2\xe3\x34\x80\x53\xfa\x58\x18\xaf\xe8\x19\x05\xc2\x78\x45\xcb\x0f\xc0\x1f\x53\x81\x4c\xc7\xe0\x3f\xa1\xcf\xc0\x7f\x4a\x9f\x0b\x33\x16\xbd\x8f\x03\x61\xb4\xa2\xf5\x24\xa8\x61\xeb\xd3\xe9\x89\xfc\x55\x93\x3d\x35\xed\x31\x3c\x0b\x84\xc9\xab\xc6\x78\x6c\x1a\xba\xcb\x62\x3d\x37\x58\xcf\x0d\xd6\x73\x83\xf5\xbc\xc1\x3a\x35\x58\xa7\x06\xeb\xd4\x60\x9d\x36\x58\x72\x0d\xcf\x4d\x4b\xe1\xc9\x96\xe9\x6d\x30\x7d\x8b\xe9\x5b\x4c\xdf\x62\xfa\x0e\xe6\xd8\x62\x8e\x2d\xe6\xd8\x62\x8e\x1b\xcc\x13\x83\x78\x62\xf0\x4e\x0c\xda\x49\x83\xf5\xd8\x60\x3d\x36\x58\x8f\x0d\xd6\xe3\x06\xeb\x89\xc1\x7a\x62\xb0\x9e\x18\xac\x27\x0e\x6f\x96\xb5\x40\xb8\x55\xdd\x18\x9b\x86\xc6\xb1\xe8\x76\x25\x76\x21\x76\x1d\x72\x19\x27\xe2\x00\xb1\x3a\xe3\x4b\x1d\xf1\xc5\x2e\x9e\x8a\x93\x67\x3c\xa2\xfe\xa9\xc4\xfa\x5f\x29\xd6\x89\x38\x90\xbe\xaa\x54\x92\x25\x1f\xc6\x62\x09\x4f\xe8\x78\xac\x94\x6c\x0c\x8e\x6a\xf9\x56\xd6\xbe\x15\xb6\x6f\xa5\xed\x2b\x71\x4b\x56\xc6\x5a\xcc\x3e\x8c\x9f\x18\xe8\x58\xa8\xa9\x19\x25\xa9\x8e\x25\x7f\x63\x77\x06\xab\x97\xbe\x55\x4c\xdf\x6a\xa6\x2f\x55\x53\xd3\x7d\x6e\x39\x7e\x66\xa0\x63\x18\x5b\xb5\x1b\xbb\x6a\x67\x77\xdf\xb7\xdb\xef\xdb\xfd\xf7\x1f\xef\xef\xc
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566JsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2020-08-07 22:58:09 +00:00
|
|
|
_web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566Js,
|
|
|
|
"web_ui/assets/codemirror/mode/javascript/javascript-77218cd1268ea6df75775114ae086566.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566JsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/codemirror/mode/javascript/javascript-77218cd1268ea6df75775114ae086566.js", size: 21467, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
var _web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xdd\x73\xdb\x36\x12\x7f\xf7\x5f\x11\x6d\x5d\x1a\x88\x21\x52\xca\x3d\xdc\x0c\x6d\x84\xc9\xa5\xee\x8d\x67\x92\xcc\xdc\xb4\x9d\xce\x94\xa4\x5d\x58\x84\x62\x9e\x29\x50\x01\x41\x7f\x54\xe4\xfd\xed\x37\x0b\xf0\x4b\xb2\x2f\xbd\xe9\x8b\x04\x62\x17\xfb\xf1\xdb\xc5\xee\x92\x64\x5d\xab\x95\xc9\x4b\x45\x24\xdd\x41\x79\xf3\x6f\xb9\x32\xc0\xb9\x79\xda\xca\x72\xfd\x4a\x3e\x6e\x4b\x6d\x2a\xcf\x7b\x46\xd9\x94\x59\x5d\xc8\x48\x12\x2d\xbf\xd6\xb9\x96\x04\x7c\x3f\xf0\xfd\xa0\xc8\x6f\x82\x55\x99\xc9\x4d\xae\x75\xa9\x81\xd2\x10\x7a\x0d\xe3\xe1\x4c\xae\x73\x25\x3d\xcf\xfd\xfb\x62\x93\x45\x6e\x49\xe2\x97\xc5\xa4\x4c\xd2\x50\x92\x0f\x65\x26\x3f\xd9\x1d\xda\x52\xb2\x6f\x7a\x5d\xc9\x57\x95\xd1\xf9\xca\xc0\x91\xf4\x9d\xb8\x4f\x65\x26\x09\xe8\xfa\xe6\x09\xd8\x1e\x77\xbf\x7e\x65\xec\x53\xa9\xc9\xbd\xd0\xaf\x0c\xdf\xb5\x4c\xf1\x05\xd3\x5c\xfa\x85\x54\x5f\xcc\xed\x99\x3a\xd7\x67\xa7\xa7\x8a\x9a\x58\xc6\x2a\x4d\xf9\x6c\x71\xa4\xa5\xa9\xb5\x7a\x65\x5a\x3c\xa3\x98\xe6\x86\xc4\x20\x8a\x5c\x54\xc0\x40\xa8\x0c\x18\xfc\xe3\xe2\x9f\x97\x9f\x81\xc1\x8d\xfc\x92\x2b\xfc\xd7\x52\xdc\x01\x83\x95\xa8\x24\xfe\x15\xa2\x42\xe6\x4c\xae\xdd\x6f\xae\x64\x16\xe1\xb2\x04\x06\xb2\xb0\x4c\xb2\xa8\x72\x24\x5f\x7c\xfe\x01\x9f\xac\x5c\xa9\xaa\x5a\x23\x71\x2d\x1c\xd3\xba\xd4\xc0\xc0\xf2\x59\x45\x2e\x2c\xc0\x40\xc9\x47\x83\x7f\x25\xfe\x5a\x26\x2d\xad\x74\x2d\xab\x55\x2d\xed\xc2\xe8\x27\xf7\x5f\x6b\x3c\x5b\xc9\x02\xe5\x54\xf5\x56\x22\xbf\xb9\x95\xb8\x6b\xb4\xe5\xae\x95\x33\xb6\x56\x85\xb4\xb6\xd7\xca\xe4\x05\x30\x78\x70\x6c\x0f\xb7\xb9\xd5\xfb\x94\xcb\x02\x2d\x55\x96\xa8\x45\x6e\xcd\x34\xb7\xba\x7c\xb0\xfe\x9b\xd5\xad\x35\xdf\x92\x8b\xb2\xdc\xda\xdd\xa2\x58\xad\xba\x85\xd5\x5d\x88\xcd\x4d\x26\x80\xc1\x56\x97\x48\xd8\xd6\x37\x45\xbe\x72\xcf\x46\xae\x8c\xcc\xec\x3a\xbf\x17\xc6\xb9\x62\x73\xd0\x4a\x14\xd9\xb8\x71\xad\x65\x21\x4c\x7e\x6f\xe1\x7c\x34\x0e\x43\x51\x9b\xb2\x63\xbb\xbe\xbe\xf8\xfc\xc3\xf5\xb5\x5d\xfd\x78\xf9\xf1\xa2\x5b\x7e\xbc\xfc\xdc\x2f\xb3\x5c\x5f\x5f\x43\x4a\x59\x6e\xa3\xec\x30\xe8\xc3\xd7\x45\xd3\xc5\xa0\x07\xa0\xc7\x65\x88\x44\x87\x63\xef\x7a\xe7\x73\xe7\x98\x4b\x90\x94\xb2\xd2\xca\x77\x16\x3a\x11\x29\x65\x82\xef\x20\x86\x10\x52\x60\xb0\x83\x10\x5a\x60\x40\x20\x04\x0a\xed\xd1\x90\xc2\x35\x91\xcc\x30\x45\x77\x5d\x5e\x2a\xdf\x94\x77\x52\xe5\x7f\x48\x7f\x5b\x57\xb7\x44\x52\x26\x09\x32\xb4\xc3\x91\x35\x1e\xa1\xbb\x7c\x4d\xa4\x5f\x95\x05\xa1\x9e\x27\xfd\x0d\x1a\x48\x80\x3b\x93\xec\x96\x44\x1a\xed\xf3\xfd\x40\x6e\x45\x19\xac\xca\xcd\x46\x2a\x03\x47\x56\x94\x14\xe6\xa7\xad\x58\xc9\xf1\x8c\xaa\x8b\xe2\x08\xaf\x89\x66\x39\x2b\xb9\xf4\x31\x2d\x09\x45\x76\xf8\x1d\x38\x2f\x9b\x06\x4e\xdc\xff\x09\x9c\x70\x5e\xf6\x07\x6b\xb2\x22\x25\x03\xbc\xd0\xea\x0b\x30\x47\x6c\x1a\x77\x88\x32\x34\xdf\x0a\x09\xec\xf3\x0e\x55\xac\xb9\xf4\x57\xb5\xd6\x52\x19\x42\xbb\xeb\xeb\xec\xaa\xee\xf2\xed\xcf\x25\x32\x53\xc7\x5a\xbc\xc4\x2a\xfd\x1b\xb1\xba\xfb\x65\x4b\x9e\xd3\xe6\x6b\x7a\xd4\x17\x89\x8c\x2f\xce\x9e\x73\x9c\x17\x67\x4e\xf4\x76\xdf\x49\x02\x9c\x6f\xa3\xec\x94\x2f\x31\x6a\x9c\x6f\x3d\x8f\x64\x73\xbe\xa4\x2c\x3b\x5f\x50\x5b\x16\x5a\x6b\xe3\xb7\x74\xb3\x05\xe7\xd9\x8b\xc8\xcc\xdf\x00\x9b\x2d\x1c\x1e\x6d\x77\x91\xcb\xad\xd4\xc2\x94\x1a\x50\x30\x7c\x3f\x02\x74\xc7\x07\x3c\x6f\xb1\x8e\xd9\x80\x11\xa8\x80\x46\x77\x1c\x84\x29\x37\x10\xba\xbd\x20\xfe\xf5\x5f\x69\x60\xb7\xbb\x13\x03\x41\xef\xed\xcf\xdf\x8c\x94\x87\xc7\xaf\x69\x40\x3d\x8f\xec\xeb\x59\x52\x9b\x00\x1b\xde\xf3\x5d\x25\x0f\x49\xc5\xd3\x80\xf6\x85\x74\x13\x11\xe1\x6f\x35\xda\x6d\x9e\x2e\xab\x0b\x55\x6f\xa4\x16\x37\x85\x24\x1b\x14\xb7\xe1\x22\xde\xa4\x94\xa1\xe3\x1b\x76\xc7\x6e\x07\x8f\x69\x78\xe0\xec\x77\x30\x49\xa1\x3e\xee\x17\x2a\x23\x07\xa9\x0a\xe7\xc8\xe8\x79\x04\x0b\xbd\xcb\xfb\xe0\xea\x7c\x1e\xc5\xc9\xef\x09\x24\x27\x69\x44\x62\x31\xff\xe3\xfd\xfc\xb7\xeb\x28\x4d\x1e\x5e\xd3\x71\x3f\x0a\xcf\x9a\x63\x1a\x50\x3a\x86\x83\xe4\x5c\xc7\xcb\x94\x8d\xfd\x05\xef\xd6\x60\x84\x13\x9f\xd3\x68\x7a\x7f\xca\x2d\xa1\xe1\x81\x81\x1d\x66\xed\x24\xbb\x17\xfb\xfe\xd8\x70\x3d\x02\x8d\xec\xf2\x57\x2c\x38\x24\x88\x93\x4c\xcc\xd
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2020-08-07 22:58:09 +00:00
|
|
|
_web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJs,
|
|
|
|
"web_ui/assets/codemirror/mode/ruby/ruby-ea43ca3a3bdd63a52811e8464d66134b.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJs() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/codemirror/mode/ruby/ruby-ea43ca3a3bdd63a52811e8464d66134b.js", size: 5269, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
var _web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x7a\xdb\x38\x96\x28\xfa\xf3\x7c\x9f\x5f\xe1\xfc\xa1\xd0\x55\x34\x11\x42\x32\x29\x5f\x62\xd3\x86\x35\xa9\x54\xd2\x93\x99\x54\x52\xa7\x93\x9a\x3e\x35\x12\x93\x0d\x53\x90\x8d\x32\x45\xaa\x48\x28\xb1\xdb\xd4\xfc\x9b\xf7\xd8\xcf\x32\x4f\xb6\x3f\xdc\x48\x50\xa2\x2d\xa5\xaa\x77\x5d\x2c\x12\xc4\x65\x61\x61\x61\x61\xdd\x00\x78\xb3\x65\x96\x70\x96\x67\x1e\x85\x0f\x6c\xe6\x81\xfc\xea\x37\x9a\x70\x80\x31\xbf\x5f\xd0\x7c\xe6\xd0\xbb\x45\x5e\xf0\xd2\x75\xc1\x32\x9b\xd2\x19\xcb\xe8\x14\xf4\xcc\xc7\x79\x3e\x5d\xa6\x14\xaa\x9f\x81\xce\x8a\xa9\x07\xf7\x68\x5a\x52\x47\xd4\x67\xea\x6f\x6a\x54\xb5\xb8\xae\xfa\x1d\x90\xf9\x14\xaa\x47\x6f\x1c\x23\xaa\x8a\x3e\x78\x5d\xcd\x7d\x65\xd9\x34\xff\x3a\x52\x3f\x51\x57\x8e\xeb\x34\xbf\x22\xe9\x48\xfd\x74\xe6\x28\x69\x3a\x1b\x89\x3f\x11\xbf\x61\x25\x1c\xfc\x56\xde\x93\x79\x2a\x60\x5e\xad\xa0\xd7\xa0\x03\x3e\x14\x94\x2f\x8b\xcc\x31\x29\x0e\xf5\x38\xca\x10\x83\x0f\x75\x4a\xe1\x11\x54\x4a\xb4\xf5\xb2\x31\x89\xd5\x13\x97\x4f\x5f\x48\xe1\x24\xb8\xa3\xf7\x05\xfd\x7d\xc9\x0a\xea\xba\xfa\x61\x4f\x94\x29\x5d\x37\x81\xba\xbd\xc4\x23\xa8\x17\x40\x91\x9e\x9b\xb4\x5c\xa7\x89\x5a\x97\x38\xa3\x5f\x9d\x57\x45\x91\x17\x1e\x78\x49\xb2\x2c\xe7\xce\x8c\x65\x53\x3d\x18\xce\x3e\xf0\x89\x0f\xf6\x01\xdc\xe3\x37\x45\xfe\xd5\x59\x0e\x92\x7c\x4a\x31\xf8\xe9\xfd\x8f\xbf\xbc\x7d\xf5\xf9\xdd\xfb\x8f\x9f\x5f\xbf\xff\xe5\xdd\x8f\x00\x2d\x57\xa2\xbe\x14\x0b\xd8\xf1\x83\x1e\xbd\xe8\x61\xb5\xda\x13\x7d\x18\x07\xf1\x20\x21\x69\xea\xa5\x66\x60\x51\x8b\x58\x34\x68\x85\x27\x33\x87\xf1\x98\xc6\x55\x45\xe1\x0a\xa2\x14\x35\x45\x28\x52\x48\x5b\xe9\xec\xa2\x2d\xf3\x71\x35\xcb\x0b\x4f\x80\x90\xef\x82\x28\x44\x70\x70\x4e\x2e\xd8\x20\xa5\xd9\x35\xbf\x39\x27\xbe\x0f\x0b\x8f\x09\x6c\xef\x19\x58\x56\xde\x43\x18\x8d\x1b\x28\x11\x87\x0f\x60\x59\x52\xa7\xe4\x05\x4b\x38\x90\x08\xcc\x30\xf5\xc0\xe0\xe0\xb7\xb2\x2f\x46\xfe\x20\xcd\xc9\x94\x16\x00\x22\xd6\x4e\x9f\x2e\xe7\x0b\x91\xbe\x67\x0d\x37\xdd\xa0\x0a\x0f\x3e\x28\x34\x5b\x83\xf2\xda\x14\x00\x3e\xf5\x81\xc3\x4a\x67\x4a\x17\x05\x4d\x08\xa7\x53\x87\x64\x53\x27\x51\xa3\x76\x45\x9d\x65\x49\xa7\x03\x00\x57\x2b\x6e\x90\x32\xf8\x78\xbf\xa0\x6d\x48\x04\x42\x00\x44\x4d\x96\x0f\xc9\x0d\x9d\x93\x76\xa6\x52\xa6\xb5\xb2\xbd\x7e\xf1\xe6\xed\x87\x17\xaf\x5f\x7d\xfe\xf0\xf2\x5f\x5f\xfd\xf4\xa2\x2b\xff\xc1\x8c\xb0\xb4\x24\xb3\x76\xfd\xff\xf6\xe1\xfd\xbb\xa7\x0a\xfd\x56\xe6\x59\xab\xc0\xcb\xf7\x7f\x7b\xb2\x95\x24\x2f\xda\x2d\xfc\xf8\xea\xf5\x8b\x5f\xde\x7e\xfc\xbc\x0d\xbc\x29\x9d\x91\x65\xca\x3f\x6f\x80\x68\x2a\x78\xfd\xcb\xdb\xb7\xbb\x54\x30\x5b\xa6\x69\xab\x02\x31\xec\x38\x93\x3f\x6b\xa9\x2f\xd2\x54\x7f\x78\x91\xa6\xd6\x37\x01\xc3\x5b\x55\xca\x3c\x76\x7c\x55\xa5\xad\x37\x2b\x8f\x20\x29\xcc\xe4\xcf\x5a\xc9\x1f\xd5\x17\xf3\x68\x7d\xfd\xf5\xc5\x4f\x6f\x5f\xdd\x25\x74\x21\x28\xaa\xdd\x45\x6a\x92\x5b\x1d\xfb\xe9\xcd\xbb\x37\x3f\xbd\x78\x12\x29\x9d\x83\xfe\xa7\x87\xe2\x8f\x8c\x42\x99\x90\x0c\x17\x1e\x10\xbf\xad\x0f\x0b\x52\x94\x54\x7c\x91\x0f\xad\x4f\x49\x3e\x5f\xe4\xea\xa3\x7e\x6c\x7d\x26\xd3\xe9\xcb\x3c\x2b\x79\xb1\x4c\x78\x5e\x88\x5c\xed\x14\x00\x57\xe8\x61\x73\x9e\x47\x87\xa8\x13\xb5\xd1\x11\xda\x64\x16\xd1\x31\xda\x9c\x7a\xd1\xf3\xcd\x44\x45\xf9\xd1\x69\xc7\x97\x16\x4e\xa2\xb3\x27\x72\x48\x8c\x47\x61\xd0\x91\xa5\x1e\xc9\x28\x0c\x3b\x3e\xcb\x89\x1a\x85\x43\xb4\xce\x4d\xa2\xf0\x70\x15\xa3\xe1\x93\xbc\xb2\xe6\x7b\x36\xbb\xcf\x96\x69\x8a\x31\xb5\xf8\x15\x2b\xdf\xe5\xfc\x86\x65\xd7\x38\x43\x76\xea\x7b\x29\x48\xe0\xcd\x25\x63\x53\xc4\x70\x5d\x51\x6d\x4f\xd4\x6b\x55\xc1\xf3\x17\x45\x41\xee\x3b\x6a\x70\xe4\x87\x01\x2b\xe5\xaf\x47\xe1\x88\x46\xe2\xf3\x68\x1c\x47\x63\x1a\xdb\x95\x14\x74\x41\x89\x0d\x85\xe8\xa6\x5c\x05\x10\xc3\x00\xec\x89\x25\x28\xc3\xc1\x79\x76\xc1\xcf\x33\x1f\x87\x90\xf9\x98\x9a\xf5\x84\xad\x5a\x3d\x7a\x47\xaf\x09\x67\x5f\xe8\x7f\xd2\x22\xef\x82\x2a\xc0\x18\x53\xd7\x7d\xb7\x9c\x5f\xd1\x62\xf0\xee\xd5\x5f\x5f\x7c\x7c\xf3\x1f\xaf\x3e\xbf\x79\xf7\xfa\xcd\xbb\x37\x1f\x7f\xc5\x18\x87\x07\xad\x1e\xd2\x3b\x4e\xb3\x69\x37\x70\xa8\x40\xb9\x90\x01\x38\xd4\x20\x22\x86\xbd\x1c\x2b\xac\x0e\x6
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727JsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2020-08-07 22:58:09 +00:00
|
|
|
_web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727Js,
|
|
|
|
"web_ui/assets/codemirror/mode/yaml/yaml-86bec82a0f62e7a53eef41d44a8e4727.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727JsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/codemirror/mode/yaml/yaml-86bec82a0f62e7a53eef41d44a8e4727.js", size: 44654, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x79\x77\xdb\x38\x96\x38\xfa\xbf\x3f\x05\xcd\xdf\xb4\x9b\x7c\x05\x29\x92\x9d\x55\x69\xb6\x2b\x65\xa7\xba\x32\x9d\x6d\xb2\xfc\x7a\xfa\x69\x34\x39\x30\x09\x49\xac\x50\x84\x0a\x04\xed\xa8\x64\xbd\xcf\xfe\x0e\x36\x12\x24\x41\x89\x94\xec\x38\x4e\x5c\x73\xa6\x63\x91\x20\x96\x8b\x8b\x8b\xbb\x5f\x3b\x4d\x90\x95\x50\x12\xfa\xd4\xde\x0b\xd0\x38\x8c\x91\x63\xfb\x38\x4e\xd2\xa8\x93\x86\xf7\x60\x00\xe7\x14\x91\xe4\x5e\xe7\xf7\x04\xc7\x1d\x38\x0f\x6d\x30\xb4\xd1\x97\x39\x26\x34\xb1\x81\xfd\x33\x9a\x9d\x21\xd2\x09\x20\x85\xaa\xed\xbd\xac\xe5\x08\x38\xe3\x34\xf6\x69\x88\x63\x07\x01\xea\x2e\xdf\x9c\xfd\x8e\x7c\xda\x15\xc3\xbc\x25\x78\x8e\x08\x5d\x38\x08\xd8\x9f\x3e\xa1\xe4\x15\x0e\xd2\x08\xd9\x60\x79\x0e\xa3\x14\x0d\xf6\x7b\x2b\x17\xd4\x7e\x10\xa0\x31\x4c\x23\x6a\x83\x25\x8a\xd3\x19\x22\xf0\x2c\x62\x9f\x80\x09\xa2\x83\x6c\x4c\x77\x49\x10\x4d\x49\x6c\xf1\x1e\x58\xfb\xd5\xca\x5d\xb9\x2e\x58\xb3\x4e\xe8\x47\xc5\x15\x9a\xda\xcc\xe7\x51\xe8\x43\x36\x46\xa1\xc1\x0c\x07\x28\x92\x5d\x54\x1f\x07\x7e\x19\x20\x20\x06\xc4\x5d\xaa\x27\x16\x76\x90\x9a\xb1\x83\x3d\x5b\x3d\xb7\x3d\x8f\x2e\xe6\x08\x8f\xad\xf7\x8b\xd9\x19\x8e\x0e\x0e\xec\x84\xff\x51\x7e\xd1\x0d\x29\x22\x90\x62\x72\x9c\x0f\x92\x83\x40\xb4\x44\xab\x81\xe1\x25\x3a\x38\x58\x33\x1c\xea\xb2\xb5\x50\x92\xfa\x14\x13\xcf\xf3\xb2\xe7\xfb\xea\xef\xee\x9c\x60\x8a\xd9\x67\xc7\x6a\x6e\x83\x6c\x40\xd7\x41\xee\x2a\x5b\x24\x74\xdc\xe5\x39\x24\x16\xf2\xe6\xce\xd0\xfe\x9f\xd8\xe2\xff\xbd\xfd\xf8\xc1\xba\x77\xde\x67\xa0\xbb\xe7\x47\x38\x46\xf7\x6c\x60\x1f\xdb\x40\x36\xb0\x47\xee\x9e\x9c\x2a\xf4\xaa\xdb\x8b\x56\x00\xe5\x23\x84\x1b\x47\x08\x50\x42\x09\x5e\xd4\x8e\x11\x6e\x1c\x23\xda\x38\x46\x3a\x0f\x20\x45\xa2\x7b\xf5\xde\x34\x56\xb4\x71\xac\x54\xa0\x4a\xbe\x93\x56\x18\x5b\xe8\xb8\xee\x68\x50\x75\x80\x62\x50\x3c\x1a\x3e\x8e\xc7\xe1\x24\xcd\x7e\x5f\x90\x90\xca\xbf\x57\xee\x00\x0d\xe9\xc8\x8b\xf5\x71\x93\xcd\x3b\x45\x50\xa3\x35\x26\x1b\xd7\xe8\x1b\xc7\xfa\xc7\xf3\x7c\xac\x30\x1e\xe3\x7c\xc3\xd6\x8d\xe6\x6f\x1c\x6d\xbc\x71\xb4\x28\x4c\xe8\xe6\x91\xc6\x1b\x47\x9a\x0b\xba\xa7\x76\xee\xf2\xd2\xa1\x1e\xea\x26\x51\xe8\x23\xa7\xe7\x66\xf4\x6d\x4c\x10\xfa\x13\x39\xa6\x2d\x0d\x51\xe2\x20\xb0\x24\xf0\x62\x20\xf7\xb5\xf8\x0d\x75\x57\x2b\x57\x3b\x5f\x81\x18\x31\x1c\x3b\xfb\x0e\xb2\xc2\x38\xa1\x30\xf6\xd9\x41\xa4\xae\x4b\xa7\x04\x5f\x58\x31\xba\xb0\x3e\x2c\xe6\xe8\x39\x21\x98\x38\xf6\x09\x8c\x63\x4c\x2d\x1f\x46\x91\x05\x2d\x3f\x82\x49\x62\xc1\xc4\x82\x56\x46\x10\xb4\xde\x67\xa2\xf7\x31\x26\x0e\x03\x60\xec\xf5\x9e\xc6\x7f\xa3\xdd\x08\xc5\x13\x3a\x7d\x1a\xff\xf4\x93\x00\x2c\xf1\xe8\x30\x1e\xed\x91\x6e\x8e\x81\x9e\xfe\xe3\xf2\x72\xbf\x0f\x48\x57\xc7\x48\x6f\xbf\x07\x6c\xbe\x40\x3b\x8c\x2d\x72\x70\xe0\x90\xae\xc2\x50\x6f\xbf\x57\x7f\x15\x90\xee\x67\xb4\x00\xc4\x5d\xe5\xb3\x5c\xe8\x50\x77\x16\x9e\xfc\x34\x41\xf4\xad\xa2\x53\x6f\xc6\x97\x97\xc5\xbb\x49\xed\x5f\xf7\xd3\x27\x4e\xcd\x3e\x7d\xf2\x28\xe0\xd4\x0b\x50\x0d\x02\x67\x8c\x6c\xb2\x35\x52\x7d\xf3\xc3\xb1\x63\xa7\xb1\x98\x5b\x90\x53\xd0\x77\x68\x1c\x21\x9f\x5e\x5e\xee\xcb\xbf\x72\x4a\xea\x8a\xf1\xf6\xfb\x7b\xe1\xd8\xa9\xbc\xed\x26\x53\x38\x2b\x34\x31\xd0\xe7\xb7\x04\x7f\x59\xa8\x46\xbd\x3d\x4a\x16\x6a\x11\xa7\x90\xa2\x9c\x26\x77\x29\x7e\x4f\x49\x18\x4f\xba\x6c\x93\xab\x83\x39\xac\x39\x18\xea\x97\x93\xbb\x5c\xb9\xae\x0b\xf6\x7b\x2b\x1f\x52\x7f\x9a\x5f\x15\xfb\xfd\xd5\xca\xc9\x0f\x40\xde\x9e\xa3\x03\x20\xde\xb9\x83\x5c\x36\x5f\x2a\x1e\x61\xef\xdc\xa1\xd3\x30\x71\xf5\x3b\x64\x2f\xf6\xaa\x93\x20\x00\x92\x49\x3a\x43\x31\x4d\x00\x76\x57\x28\x4a\x90\x15\x7b\xa4\xcb\x2e\xdb\x05\xef\x23\x6f\x90\x4d\x60\x2a\x5e\xc4\xfa\xee\x4f\xf5\xfd\xdc\xa7\x97\x97\x36\xe6\xfb\x6f\xef\x7b\x1e\x76\xa8\xab\xdf\x75\xfb\x0a\x96\xb4\x70\x67\x86\x63\xe7\x1c\x87\x81\xd5\xf3\x3c\x0f\x69\xc7\xe6\x1d\x1a\x23\x82\x62\x5f\x9d\x1d\x36\xb8\x35\x85\x49\xfc\x57\x6a\x9d\x21\x14\x5b\x61\x1c\xd2\x10\x46\x61\x82\x02\xab\x63\x25\xe9\x1c\x11\xc7\x2d\xb4\x60\x5b\x80\x02\x3b\x5b\x01\x5a\x39\xc8\x1d\xd0\x7c\xfa\xe7\x1a\x17\x70\x6e\x46\x5d\x45\xfb\x27\x85\xa7\xc6\x8b\x3d\xc7\xe6\xcb\x4b\xe3\x57\xec\x72\xe6\x37\
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550JsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550Js,
|
|
|
|
"web_ui/assets/consul-ui-00082c91bf8ec03a8cb114c3c113a550.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550JsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/consul-ui-00082c91bf8ec03a8cb114c3c113a550.js", size: 1746720, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x79\x8f\x1b\x49\x92\x20\x8a\x7f\x15\x87\x1a\x83\x9d\xee\x61\x58\xbb\x99\xdf\xa9\x29\x61\x7b\xf3\x37\x0d\xfd\x80\xac\xf7\x80\xd7\x3b\xfa\xa3\x1b\xf5\x06\x21\x32\x52\xe4\x56\x24\xc9\x25\x99\x29\x29\x0b\xda\xcf\xfe\x60\xe6\x11\x4c\x1e\xc1\x33\x53\x55\x52\x35\x51\x95\x14\xe9\x87\xb9\xbb\xb9\x5d\x7e\x98\xf9\x7f\xef\x0f\xcb\xd9\xbc\x5a\xa8\x57\xff\xf9\x3f\xff\x5a\xc4\x57\xaf\xff\x50\x4f\x3e\x8c\xc6\xc5\x62\xf2\xe1\x43\x5d\xfd\xdb\x60\xf4\xa0\x6e\x27\x93\x45\x35\x53\xef\xef\x17\x8b\xc9\xb8\x07\xfd\xc9\x78\x7e\x5f\x17\xa3\xf1\xa2\x1a\x2f\x46\x93\x71\x71\x3b\xaa\xea\xc1\xbc\x5a\xcc\x15\x4c\xab\xd9\xdd\x68\x3e\x1f\x4d\xc6\xf3\x37\x6d\xf9\xea\x6e\xba\xf8\x5c\xcc\x17\xe5\xa2\x7a\x73\x5f\xbf\xa9\x47\x6f\xfe\xd4\x95\x78\x55\xf6\x17\xa3\x87\xaa\x2b\xab\x2e\xdf\x57\xf5\x1e\x78\xab\xf9\x4b\x30\x77\x93\x41\x59\x17\x83\x51\x59\x4f\x3e\x14\xf2\xe3\xcd\x60\xf4\xc0\x7f\x6a\x30\x50\xe5\xc1\x02\xc7\x00\x9a\x1e\x80\x33\x5d\x01\x33\xaf\xca\x59\x7f\x58\xbc\x2f\x67\xd2\xf7\xfb\xb9\x82\x59\x75\x37\x79\xa8\x8a\xb2\xae\x5b\xe4\x96\x3d\x19\x0b\x2c\x3e\x4f\xab\x06\xe4\x76\x4a\x0b\xf2\xae\x1c\x8d\xf3\x58\x96\xdf\xd6\xb2\xa6\x6d\xce\x53\x37\x7e\x59\x54\x9f\x16\xc5\xa0\xea\x4f\x66\x25\xcf\xdd\xd5\x78\x32\xae\xbe\xb4\x13\xd8\x1b\xce\x7e\x79\x3f\x99\x0d\xaa\x59\x4e\xdf\x37\xb4\x45\xf9\xbe\xae\x54\xbf\x9c\x32\x98\xbd\x48\xc8\x25\x17\xc3\xaa\x1c\xa8\xc5\x30\xf7\x68\xbd\xf6\x4a\xd2\xb2\x58\xf3\x73\xd0\x7e\x19\xf6\xf8\xfb\x30\x0f\xa0\xac\x47\x1f\xc6\x57\x75\x75\xbb\xf8\x52\xce\x16\xa3\x7e\x5d\xf5\xca\xf9\x68\x50\xf5\x6e\x47\x1f\xee\x67\x55\x2f\x53\x6c\x8f\x61\xf1\x3f\x1f\x66\x93\xfb\x69\x6f\x38\xeb\xcd\xab\x3e\x37\xf8\xcb\x60\x34\x9f\xd6\xe5\xe7\xab\xf7\xf5\xa4\xff\xf3\x17\xa8\xee\xde\x57\xb3\xe2\x7d\x39\x1f\xf5\x8b\xc1\x6c\x32\x1d\x4c\x3e\x8e\x8b\xc5\x6c\xf4\xe1\x43\x35\xfb\x47\x39\x1b\x95\x45\xf5\x69\x5a\x8e\x07\xd5\xe0\x87\xc5\xec\xbe\xfa\x49\x35\x35\xa6\x93\x8f\xd5\xac\x98\x57\x75\xd5\x5f\x34\x93\x5a\x8c\xfa\x93\x71\xee\x33\x7c\x1c\x2d\x86\xc5\xa0\x5a\x94\xa3\x7a\xae\x16\x83\xab\xc9\xb8\xfe\x5c\xf4\x87\xa3\x7a\x20\xb8\x91\x79\xbd\xba\x7a\x5f\xdd\x4e\x66\xd5\x2f\xc5\xc7\xea\xfd\xcf\xa3\x45\xb1\x98\x95\xe3\xf9\xed\x64\x76\x77\x35\x9b\x30\x89\xff\x2b\x46\x3d\xa8\x3e\xfc\xf1\xf5\xae\x8c\x2f\x32\x88\xff\x7d\x3f\x59\x54\xbd\xf7\x93\xc1\xe7\xde\x60\xd0\x1b\xd4\xbd\xc1\xa2\xb7\x9c\xd6\x06\x2b\x43\xec\x0d\xa9\x37\x34\xbd\xa1\xed\x0d\x5d\x6f\xe8\x19\x25\xc3\xc5\x5d\xdd\x1b\xdd\xce\xca\xbb\xaa\x57\x57\x1f\xaa\xf1\xa0\x57\x8f\x7a\x93\xba\x37\xed\x4d\x67\x55\x8f\xd1\x5d\xce\xaa\xb2\x77\x5f\xff\x72\x57\xce\x3e\x8c\xc6\x57\xfa\xf5\xb4\x1c\x0c\x46\xe3\x0f\x57\xfa\xcb\x16\xc8\x5f\x6e\x27\xe3\x45\x31\x1f\x3d\x56\x57\xa8\xf5\xbf\xbc\x96\x9f\x1f\xab\xd1\x87\xe1\xe2\xca\x6a\xfd\xe5\xbe\xfe\xa5\x1e\xcd\x19\x5b\x9f\xeb\x2a\x53\x99\x20\xab\xa1\xbb\xa2\x3f\xa9\xeb\x72\x3a\xaf\xae\xda\x2f\xaf\x9b\x8c\xf9\xb4\xec\xe7\x36\xb7\x28\xe3\x97\xa7\xfe\x94\xf7\x83\xd1\xa4\xc7\xb3\x33\xe8\x8d\xee\x3e\xf4\x26\xef\xff\x57\xd5\x5f\xf4\x1e\x46\x83\x6a\xf2\xcb\x30\x77\xa3\xbc\x5f\x4c\x5e\xdf\x95\x9f\x8a\x8f\xa3\xc1\x62\x28\xdd\xfc\x02\xe5\x74\x5a\x3c\x8c\xaa\x8f\x6f\xb2\xc0\x9b\xdd\x35\x1c\xf9\x0f\xe6\xbb\x1f\xf2\xf7\x9f\x1a\x26\xac\xea\x6a\x51\x75\xc8\xc1\x52\x88\xab\xf8\x58\xce\xc6\x99\x05\x1a\x18\x30\x28\xc7\x1f\xaa\xd9\xe4\x7e\xbe\x26\xbc\x94\x10\x40\x0f\x46\x63\x6e\xaf\x1a\x34\xf5\x9f\x64\xe4\x5d\x35\xbe\x2f\xa6\xe5\xb8\xaa\xd5\x3f\x66\x93\xba\xfa\x81\x13\x46\x8b\xea\xee\x27\xe6\xb7\x59\x55\x4c\x27\xd3\xc9\x43\x35\x2b\x38\xfd\x4d\xee\x69\x7f\x58\xf5\x7f\x7e\x3f\xf9\xf4\xd3\xbf\x09\x74\x91\xdf\x5b\x95\x27\xa3\x41\xbf\x21\xdb\xa5\x54\x3f\x17\x56\x5b\xaf\x01\x97\x45\xf1\x9f\x7a\x19\x55\xf3\xc9\x6c\xb1\xb3\x84\xb0\x47\x7f\x32\xbe\x1d\xcd\xee\x44\x18\xa9\x35\xfc\x96\xf9\x57\x7f\x56\x95\x4c\xd9\x19\x93\xfd\xc9\xf4\x73\xf1\x7e\x31\x6e\x7f\xe7\x22\xe5\xb8\x5f\xd5\x6b\x49\xf3\xfb\xf7\x77\xa3\x45\x6f\x75\x0e\x67\xd5\xbc\x5a\xfc\xb4\x96\x94\x4b\xfd\xd4\xc8\x09\x05\x79\x02\xe6\x5d\x53\x7f\x35\x9e\x2c\xfe\x75\xd9\xfc\x1f\xb3\x50\x56\xf3\x69\xd9\x32\xfb\xb0\x9c\x17\x6d\xfd\xc5\xec\x4d\x0b
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100CssBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100Css,
|
|
|
|
"web_ui/assets/consul-ui-42af648a63ae37bbcb2469597e5e8100.css",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100Css() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100CssBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/consul-ui-42af648a63ae37bbcb2469597e5e8100.css", size: 344710, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
var _web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x28\x1e\x08\x32\x52\x69\xc9\x8d\xf3\x50\xb2\x51\x8b\xa0\x87\x1e\x7a\x52\x6e\x4d\x81\xc8\xd2\xda\x52\x61\x93\x2e\xb5\x4a\x1a\x84\xfe\xb4\xa2\x9f\xd4\x5f\x28\x2c\xd9\x88\xd3\x9e\x86\x33\xe4\xce\x70\x31\x93\x93\x90\x35\x44\x9b\x2e\x9b\x4c\xd6\xd4\x74\x7a\x8e\x93\xaa\xeb\xb0\xab\xca\x0d\xb2\xc7\x54\xcf\x74\xca\xe6\xcf\xec\xc3\xba\xa4\xa6\x2d\x3b\xe6\xd9\x97\xcf\x77\x6c\xd5\x56\x68\x3a\x64\x27\x93\x40\x2e\x7a\x53\x51\x6b\x8d\xc4\x98\xd4\x0b\xb7\xf3\xef\x58\x11\x07\xa0\xe7\x0d\xda\x05\xc3\x9f\x1b\xeb\xa8\xcb\xd7\xb6\xee\x57\xa8\xf7\x14\x48\xa2\xca\xf8\x61\xf6\xf5\x79\x8d\x8b\xd6\xa0\x10\x23\xea\x72\x5d\xe7\xe3\x51\x7e\xfd\x16\x93\x9e\xb7\xa6\x96\x18\xa3\x52\xd9\xce\x61\xab\x24\xef\xcd\xf8\xa0\xe6\xe1\xc1\x64\xb9\xb2\xf3\x72\x95\x8f\x90\x51\xd3\x76\xf1\xd1\x37\xd5\x4b\xbb\x90\xa8\x6f\x8b\x42\x88\x01\xf4\xb8\xae\x72\x48\xbd\x33\xec\x58\x0b\x1e\x4b\xc7\x08\xfe\x19\x4e\x00\x4a\xb7\xec\xd7\x68\xa8\xd3\x2b\x34\x4b\x6a\x14\x35\xce\x3e\x31\x83\x4f\xec\xee\x79\x83\x9f\x9c\xb3\x4e\xf2\x87\x57\xa7\x07\xe6\xf0\x47\xdf\x3a\xec\x58\x69\xd8\x61\x5c\x73\x15\x2c\xac\x93\x43\x4c\x6c\xa0\x20\xd7\x9a\xa5\x44\x15\x3b\x30\x7b\xeb\xd8\xc2\xbb\x34\x2e\x80\xf3\xb8\x04\xa3\xab\xa6\x74\xb7\xb6\xc6\x8f\x24\x13\x75\x15\x45\xf6\xda\x5d\xa9\x24\x04\x49\x6f\x2f\xad\x52\x79\x11\x01\xdd\x40\x2a\x04\x5d\xc3\xfb\xd4\xfb\x74\x7a\x0e\x40\xde\x27\x00\x56\x08\xba\x81\xd3\x8b\xe1\x6e\x76\xee\x7d\xfa\x9f\x26\xc4\xe9\x0c\xa0\xcc\xf9\xfd\x3d\x8f\x48\x93\xdd\xff\x2e\x3d\x53\x11\x67\x3c\x93\x49\x08\xd6\xfb\x34\x04\xe7\xfd\xe9\x2c\x04\x52\x42\xc8\x5d\xe0\xf4\x62\x27\x0c\x51\x97\x23\xbc\xcd\xa2\x1b\x38\x9b\x0d\xec\x32\x19\xd8\xe5\xf9\xc0\xd2\xe9\x54\xe5\xe3\x16\xc3\x06\xd9\x10\x7d\x2c\x14\x11\xf0\x3f\xbf\x7f\xf1\x60\x5f\x56\xb1\x0d\x8e\x6b\xf3\x7e\x6c\x16\x5e\xb6\x2a\x3e\x2e\x12\x28\xa6\xad\x52\xc1\xdf\x00\x00\x00\xff\xff\x8e\x18\x53\xe4\xf1\x02\x00\x00")
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2020-08-07 22:58:09 +00:00
|
|
|
_web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJs,
|
|
|
|
"web_ui/assets/css.escape-851839b3ea1d0b4eb4c7089446df5e9f.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:58:09 +00:00
|
|
|
func web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJs() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/css.escape-851839b3ea1d0b4eb4c7089446df5e9f.js", size: 753, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2020-09-15 19:57:37 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7c\x7b\x6f\xdb\xb8\xf2\xe8\xff\xfe\x14\x8e\x81\xd5\x8f\xac\x29\xaf\xa8\x97\x65\x37\xac\xb1\x7d\xec\x41\xb7\xbb\xa7\x8b\x3e\xfe\x32\x8c\x40\x91\xe9\x98\x8d\x2c\xf9\xea\x91\x34\x37\xf6\x77\xbf\xe0\x4b\xa2\xfc\x48\x53\x9c\xbd\x3f\x1c\xa0\xa8\xf9\x18\x0e\x67\x86\x33\xc3\xe1\x90\x0a\x58\xd5\x59\x52\xb1\x3c\x03\x19\x7c\x1c\xd4\x25\xed\x97\x55\xc1\x92\x6a\xd0\xd3\x1d\x7d\x0a\x32\x44\x51\x01\x1f\x0b\x5a\xd5\x45\xd6\xa7\x97\x24\xb3\xac\xec\x92\x14\xfb\x41\x9d\x2d\xe9\x8a\x65\x74\x39\xb8\x20\xd5\xc3\x96\xe6\xab\xfe\x26\x5f\xd6\x29\xb5\x2c\xf9\x3b\xa2\xdf\xb7\x79\x51\x95\x96\x75\x91\xcd\x07\x34\x4b\xf2\x25\xcb\x6e\x6c\x96\x2d\xe9\x77\x5a\x0e\x16\x96\x05\x4e\xb6\x93\x82\xfe\x9f\x9a\x15\x14\x0c\x46\xbf\x1e\xf6\xda\xe3\x80\xd2\x18\x87\xd7\x6e\x30\x19\xe3\x70\x79\xed\xaf\x96\x38\x74\x29\x75\x23\x6f\xe9\xc6\x34\x18\x7d\x2b\x07\xf0\x14\x56\xd8\xbb\x8b\x8b\x7e\x41\xfe\x8a\xab\xf5\x68\x95\xe6\x79\xd1\xb2\xc9\xb8\x04\xd8\x0a\xdc\xe5\x6c\xd9\x77\x08\x21\x19\x94\x0c\x3f\xee\x7b\x6c\x05\x32\x42\xc8\xc7\xeb\x6f\x34\xa9\x40\x06\x55\x4f\x3f\xeb\x55\xeb\x22\xbf\xef\x7f\x79\xd8\xd2\x77\x45\x91\x17\x60\xf0\x26\xaf\xd3\x65\x3f\xcb\xab\x7e\x92\x67\x77\xb4\xa8\xfa\x71\x71\x53\x6f\x68\x56\xf5\xab\xbc\xbf\x64\x62\xb2\xb8\x78\x18\xc0\x7d\x33\x35\x47\xa9\xa5\xeb\x68\xe9\x62\x77\xbc\xe7\xd4\xe6\xa4\x6a\x89\x2c\x39\x64\xb5\x66\xe5\xa8\xca\x6f\x69\x56\x92\xf9\x62\x54\xa6\x2c\xa1\xa3\x24\x4e\x53\x90\x41\x64\x74\x8e\x0a\x7a\x47\x8b\x92\x02\xb8\x2f\x47\xdb\x22\xaf\x72\xbe\x44\xe4\x91\x66\xcb\x8f\xab\xcf\x55\x41\xe3\xcd\xb4\x59\x7e\x4d\xc0\x85\x89\x20\xa5\xd9\x4d\xb5\xde\xa3\x82\xc6\xcb\x63\xd0\xfe\x31\xe8\xcc\x6c\xda\xe6\x5b\x00\xa7\x36\xde\xa3\x6d\x41\xb7\x34\x33\x50\x48\x51\xff\x56\x14\xf1\xc3\x88\x95\xe2\x97\x8b\x75\x95\x17\x80\xf3\x4c\x49\xf6\x92\x2a\x94\x2f\x61\x07\x67\x5d\xae\x01\x95\xa8\x61\x8f\xa6\x25\xed\x1f\x75\x67\x70\x8f\x78\xe1\x1f\x98\xae\xce\xca\x35\x5b\x55\x80\x8e\xe4\xef\xa9\x39\x35\x4c\x06\xf7\xfb\x76\xa5\x62\x6e\x35\x62\xda\x0c\x1e\x29\xc9\x5b\x9a\xe4\x4b\x5a\xf4\x29\xaf\x0e\x60\x4f\x5b\xd6\x6e\x17\x06\x81\xe7\xb5\x9a\x51\xcb\xf5\x3e\x18\xfe\x65\x4d\xfb\x1c\x41\x7f\x9b\xb3\xac\xea\x0f\x86\xd9\x70\xd0\x4f\x1a\xc5\xbb\xa6\x7d\xa1\xfa\x74\x39\x32\xb5\x2c\x35\xb4\x2c\x23\x9f\xab\x82\x65\x37\x20\x83\xa3\xaa\x60\x1b\x00\x47\x55\xfe\x67\x7e\x4f\x8b\x37\x31\x57\x18\x24\x55\xbd\xd5\x9a\xd1\x3a\x2e\x3f\xde\x67\x7f\x17\xf9\x96\x16\xd5\x83\x54\xb7\x04\x65\x70\x96\xcc\xb3\xc5\x34\xab\xd3\x54\x68\xeb\x8a\xcc\x1f\xb5\xdd\x95\xd3\xf9\x63\x1a\x5f\xd3\xb4\x9c\xce\x07\x75\xc6\x38\x49\x36\xb6\xb1\x5d\x57\x2b\x3b\x1a\xa0\x81\xf1\x1b\x0d\x16\x28\x8b\x37\x74\x3a\xf8\xfa\xe5\x77\x3b\x1a\xec\x17\x68\x4d\x63\x8e\x65\x2a\xd8\x7d\xa7\x70\x0e\xf6\xe8\x34\xfe\x28\x0c\x07\x68\x90\x6c\xd5\x6f\xc9\xae\x37\xb2\xa8\x0a\x1a\xfd\xfb\xd7\x7f\xf1\xea\x1e\xb5\x43\x93\x92\x95\x79\x1a\x57\x2c\x73\x39\x7c\x99\xdb\x51\x14\x4c\x6c\x5d\x61\x85\x8d\x1d\x2c\x2b\x66\x07\x2f\xab\xe2\x95\xd9\xae\x2a\x53\x3c\x89\xc6\x03\x34\x48\x79\xb3\xc2\xde\x10\xf1\xf9\xa3\x9e\xe3\x34\x21\x9e\x49\x88\x67\x12\x32\x31\x08\xf1\xda\xb2\x67\xce\xdd\xad\x70\x42\xb8\x94\x53\x4f\x13\xe2\x1d\x13\xe2\x9d\x21\xc4\x37\x09\xf1\x0d\x42\xb0\x63\x10\xe2\xb7\x65\xdf\x9c\xbb\x5b\x69\x08\xf1\x35\x21\xfe\x31\x21\xfe\x19\x42\x92\x87\x82\xa5\x29\x4b\xf8\xe2\xb6\xc5\x86\xb4\xc0\x20\xcd\x37\xc8\xd1\x1d\xbc\x1c\x98\xd4\x74\x2b\x92\xb4\x23\x62\x82\x0e\x31\x71\x11\x5f\x8b\x59\xe3\x72\x93\xdb\x63\x27\x92\x8a\x26\x91\x87\xb4\x53\x63\xba\x26\x88\x6f\x46\xd2\x64\x13\xdb\x18\x77\xa4\x1a\x76\x2a\x36\xed\x56\x99\xc1\x98\x3b\x36\x18\x0b\xdb\x72\x68\xf2\xd2\xad\x48\x2d\x3c\x62\xec\x9c\x01\xdc\x14\x94\xde\xb6\x74\x72\x0e\x69\x9a\x57\x57\x13\x97\x17\x75\xaf\xf8\x8d\x4c\x3a\xc7\x26\x95\x06\x65\xb6\x41\xf1\xd8\x24\xac\x5b\xd1\xb6\x52\xd6\xd9\x15\xad\xaf\xe4\x3c\x47\x44\x8f\x8f\x89\xe6\xed\x11\xed\xc8\x7a\x4d\xaf\x0b\x7a\x3f\x40\x83\xa6\xd0\x50\xd9\x21\x39\x6a\x24\xcd\x89\xf6\x22\x83\x68\xa3\x1c\x99\x74\x76\x2b\x5a\x9d\xef\x58\x59\xc7\xe9\x31\xb9\xd1\x19\x72\x59\x97\x0a\x5e\x4d\xf3\x1b\x96\x9c\xc4\x61\xbf\x3f\xb3\x52\x1d\xad\xd1\xc6\
|
|
|
|
|
|
|
|
func web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27JsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27Js,
|
|
|
|
"web_ui/assets/encoding-cdb50fbdab6d4d3fdf574dd784f77d27.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27JsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/encoding-cdb50fbdab6d4d3fdf574dd784f77d27.js", size: 18615, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
var _web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xcd\xce\x2c\x4d\x92\x9c\xb7\xd7\x55\x50\xbd\x18\x0c\x81\x92\x10\xe1\x7f\x11\x21\x60\xae\x84\xd0\x46\x33\xdf\x10\x0d\xb4\xba\x09\x4e\x37\x40\x81\x37\x2f\xd8\x63\xf5\x7e\xe4\x10\x12\xb4\xd0\x82\x5c\x9c\xb3\x88\x37\x4f\x56\x56\x66\x56\x66\xfc\x98\x9b\x9b\xbb\xff\xfd\x3f\xff\xed\xcf\xff\xf8\xd7\x3f\xfe\xe5\xcf\x7f\xff\xa7\x7f\xfb\x9f\xff\xf0\xb7\x7f\xf9\xed\xdf\xfc\xcb\x5f\xff\xe3\x1f\xff\xf1\xaf\x7f\xf8\x9f\xfe\xf0\xb7\x3f\xff\xd3\x6f\xff\xfc\xc7\x3f\xff\xf6\x4f\x7f\xf8\x9f\xff\xe1\xaf\xff\xd7\x7f\xf8\xed\x2f\xff\xfc\x6f\xfe\xcf\xbf\xfc\xd3\xdf\xfe\xf4\xdb\xdf\xfd\x9d\xff\xfe\xaf\xbf\xfd\xa7\xff\xf0\x97\xff\xf8\xd7\x7f\xf9\xbb\xbf\xfb\xfb\x7f\xbd\xe3\x1f\xfe\xf4\x6f\x3f\x7f\xfa\x77\x7f\xf8\xed\xcf\xff\xf8\x97\x7f\xfa\xe3\x9f\xff\xfd\xff\xf2\xc7\x3f\xff\xd3\x6f\xff\xe9\xb7\x7f\xf9\xc3\xff\xfe\x0f\xff\xf9\xff\xf8\xe3\xbf\xef\xff\xed\xdf\xfd\xf9\x6f\x7f\xfa\xd3\xe7\x57\xf3\xab\xf9\xd5\xfc\x6a\x7e\x35\xbf\x9a\x5f\xcd\xaf\xe6\x57\xf3\xab\xf9\xd5\xfc\x6a\x7e\x35\xbf\x9a\x5f\xcd\xaf\xe6\x57\xf3\xab\xf9\xff\xd5\xec\x93\x2f\x3e\xfb\xf5\x9a\xcf\x3e\x2f\xf2\xb3\xcf\xcd\xf5\xd9\xe7\xdc\xfa\xec\x59\xd9\xef\xb3\xdf\xcd\xad\x0f\x2a\x3f\x7b\xe2\xbd\xfc\xec\x37\x37\x3e\x7b\x72\xed\xfc\xec\x8e\xce\xcf\xbe\xa1\x2f\xde\xa8\xd2\x09\xe3\xd0\xae\xcf\xae\xbb\x75\x92\xaa\xb7\x9f\x4e\xd9\xaf\x3e\xbb\x5f\x9e\xad\x3f\xaf\x39\x5c\xa7\x3e\x71\xef\xd6\x19\xba\x75\xb5\xcb\x8d\xdd\xc7\x35\x43\x47\x1d\x9d\xe0\xed\x75\x3f\xfb\x2e\x1d\xda\xb7\xde\xfb\xc4\x8b\xd0\x7f\x6a\xbf\xf9\xec\x3c\x57\xd7\xae\x79\xad\x8b\x9f\x78\xe7\x13\xb3\xef\xfb\x44\xc4\x1c\xff\xee\x8c\x5d\xda\x71\x75\xfb\x33\xb7\x38\xd9\xac\x4f\xde\xa3\xd3\x4f\x1c\x9d\x38\x7b\xf7\x67\xe7\xed\xb7\x3e\x91\xb1\x4a\xff\x19\x3d\x8b\x3d\x6f\xb4\x4b\x67\xc9\x3a\x6a\xef\xaa\x4f\x4c\x9d\xfb\xc9\xda\x4f\x3f\x61\xe5\xd2\xdd\x9d\x97\x9f\x78\x57\xcf\xa8\x4a\x6d\xde\x3e\x7a\x22\xbd\xf4\xe3\xbb\x47\xbf\x65\xf8\x5d\x9d\x37\xe2\xb3\x7b\xbd\xfc\xe4\xae\x5b\x9f\x5a\x57\xcf\xa3\xce\x5d\x7a\x14\xb3\x5b\xbf\x2e\xaf\x7e\x5d\xe6\x39\xfa\x91\xf9\x66\xb8\xa9\xf8\x64\xea\x59\xe9\x4b\xf5\xc9\xf3\xb2\x3f\xfb\x9e\x9c\x4f\x56\x46\x7e\xf4\x04\xae\x7e\x64\xae\x4f\x9e\x5a\xeb\x93\x7b\xdf\xfa\xe4\x8e\x1b\x9f\x98\x58\xf7\x13\x67\x9f\xf3\xc9\x7a\x47\xb7\x7d\x4e\x7c\x72\xcf\x6d\xfd\xb6\x77\x75\xe4\x99\x4f\xec\x75\xf6\x27\xe7\xa5\x1e\x49\x57\x7c\xe2\x4d\x8e\x7e\xcc\x9a\xd6\xaf\x7d\xba\x89\xb7\x74\xc9\xea\xcd\x4d\xf4\x27\x76\xdf\xc5\x03\xf7\xcf\xcf\xfb\x89\xe8\xd6\x15\xb2\x46\x8f\x7d\x66\x7f\xb2\x8f\xde\xe0\x5d\xdf\x8e\x32\x7a\x21\x67\x1e\x67\x4f\x3d\x97\x99\xf8\xec\x5a\x75\x86\x8b\x14\xff\xd1\x43\xd4\x9f\xc7\x9f\x17\x7c\xd4\x9f\xac\xd5\x3a\xba\xe8\x16\xd3\xe3\x1b\xd3\xf3\x9a\x54\xaf\xeb\xd9\xfd\x89\x8e\xbb\x3f\x71\xcf\xf5\xf7\xce\xff\x00\x83\xf3\xff\x7d\xd4\x86\xde\xa8\xda\x43\x7b\x69\x9f\xda\x52\xaf\xd8\xa9\x3f\x71\xd4\xab\xf5\x66\xfd\xe7\x70\x70\x05\x6d\x7a\x97\x7a\xf7\x8b\xef\xd1\xe5\x7d\xc5\x7f\x9a\x96\xab\x94\xbf\x78\x7d\x66\x7f\x9f\x8b\xf5\xfa\x44\xcf\x67\xbf\xfc\x94\x46\xc5\x8b\x8f\xbe\x1e\x4b\x4f\x32\x3e\xa1\xee\x95\xf1\x89\xbd\x3f\xa5\x5e\xb1\x97\xef\xff\xdc\xf3\x5f\xb6\x74\x5c\x7c\xa2\x8f\xba\xc2\xa7\x26\xd4\x63\x3e\xad\x31\x73\xfa\x13\x99\x9f\xb8\xa9\xa1\xf6\x09\x86\xe4\xf9\xd4\xd4\x27\xd4\xa5\xf5\x59\xe9\xda\xf3\x89\x8a\x4f\x4e\x7e\xa2\xd7\xa7\xe6\x7e\x34\x30\xeb\xac\x4f\x9d\xf8\xd4\xa9\x8f\xba\x4a\x74\xfc\x7e\xd5\xfd\xfb\x96\xce\x5d\x9f\x59\xef\xf3\xf6\xb9\x6a\xde\xff\x00\xaf\xf8\x57\xf3\xff\xbd\x74\xc5\xd3\x9c\x90\x5d\x2f\xbd\x2b\xfa\xce\xfc\x57\x87\xc4\x5a\xf1\xd4\x7d\xee\xfe\xd4\x8a\xa3\x39\x2f\x2b\xff\xeb\x93\xcc\xd6\x0a\x13\xad\x0e\x1f\x4b\xbd\x27\x56\xa8\x7f\x2d\x2d\x8c\xb1\x34\x1b\xc7\xba\x4d\xcb\x9e\xa7\x4f\xf7\xee\x54\x3b\xeb\x13\x3b\xd7\x51\x1b\x9a\x16\x4b\xfd\x78\xd3\x43\x43\x7d\x32\xe2\xa8\x37\xc6\xb9\xb4\x6f\x6b\xd1\xc9\xa2\xd5\x02\x92\xef\xaa\xff\x75\xd1\xaa\xbf\x9f\xa5\xde\xbc\xb5\xbf\x46\x73\x66\x6b\xc1\x8d\x19\xdd\xc9\x4c\xdc\x4f\xcc\x89\xfe\xc4\x79\x1a\x63\x97\x55\x6b\x2d\xcd\x74\x51\xb1\x68\xaf\x5a\x8d\x88\xd0\x39\x53\x27\x52\x7b\xde\x27\xa3\xb7\x3e\xed\x39\x9f\xcc\x5a\x5a\x30\xea\x
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5JsBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2019-04-12 15:02:27 +00:00
|
|
|
_web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js,
|
|
|
|
"web_ui/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5JsBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js", size: 529734, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x6b\x88\x1c\x45\x10\x9e\x44\xcf\x27\xe8\xa1\xc1\x47\x40\x3d\x91\x1c\x07\xfe\xf0\x11\x8d\x5d\x3d\x9b\x73\x35\x51\x3c\xd4\x28\x62\x50\x13\x15\x7c\xe0\x1f\x51\x10\xed\x9a\xdd\xbb\x88\xa3\xe0\x0f\x3d\x54\x14\x94\x04\xfd\xa1\x7f\xf3\x43\xcc\x43\x12\xf0\x81\xe0\x03\x22\x3e\xa2\x20\xa8\xf8\xa3\xab\x67\x6f\x93\x8b\xe6\xa2\xf1\xd4\xe0\x23\x23\x35\xbb\x73\x3b\x37\xd7\xbd\x77\xb3\xae\x88\x61\x0b\x86\xdb\xe9\xa9\xaa\xaf\xba\xba\x5e\x7d\x9e\xb7\xc8\x5b\xec\xf5\xf7\xf3\xdf\x01\x6f\xa8\xcf\xf3\x06\x3d\xcf\x1b\x18\x68\xbe\x2f\xf1\xbc\x35\x7d\x9e\x37\xe4\x79\x5e\x3f\xaf\x7b\x8d\xf5\x84\xfa\xbc\x7f\x9d\x46\x57\x4d\x9e\x8e\xd2\x8c\x21\xd0\xa7\x28\xf4\x8f\x4a\xd0\x34\x0a\xbd\x1b\x25\x85\xe3\x57\xef\x3d\xb1\x9d\x2c\xfa\xd1\x4d\x0a\x68\xbf\x12\x3a\xb6\x3d\x08\x9a\xd0\xa7\xab\xec\xb2\x66\x8d\x02\xfa\x33\xe1\x13\xf4\x17\x0a\xda\x82\xa0\x55\xf2\x24\xbf\xe9\x0f\x04\x9a\x0a\x4a\xb5\x0b\xf2\xb2\x21\x44\xa7\x34\x6c\x65\x0c\xaa\xa3\x6f\x2e\xc9\xf3\x54\x4a\xb4\xbc\x22\xcd\xa5\xfc\x3b\x80\x68\xdd\xb3\x10\x1d\x9f\x7e\x0b\x80\x1e\x4f\x71\x99\x6f\x3e\x1f\xa1\xa0\xc7\x18\x73\xe6\x1d\x68\x57\x13\x7b\x5b\xba\x16\xc7\xf1\xa2\x00\xe8\xce\x40\xea\x6b\xb3\xb2\x81\x34\xb7\x86\xe5\x7d\x67\xa0\xd0\xeb\x33\xf2\x3f\x37\x7c\x64\x46\x5b\x6b\xfa\x9e\xd4\x6f\x15\x41\xab\xd3\x75\x05\x66\xbc\x5a\xaa\x0d\x06\x82\x1e\xc8\xf0\x1e\xcc\xcb\x2b\xa1\xef\x6d\xf9\xdd\xdc\x98\x95\x57\xc3\xd1\xb2\x00\xf4\xfd\xad\x35\xfa\x38\x6f\xff\xe6\xb5\xf1\x51\x28\xe9\x0e\x94\x74\x73\xd6\x7e\x05\xe6\x36\xf4\xcd\x52\xde\x5b\xde\x7f\x4a\xd0\xe1\xd4\xc7\xed\x88\xf9\x39\xce\xd2\x77\xf6\xa5\x02\x7d\xa0\x69\xef\x1e\x84\x68\x45\x5e\x86\xf5\xa6\xeb\x1c\x67\xf9\x58\x0c\xa4\xb9\x61\x56\xfc\x00\x6d\x0b\x80\x2a\xfc\xf0\xef\xe4\x1b\xe8\x03\xa3\xb2\x76\xa1\xcb\x2e\xd6\x8b\x82\x7e\x70\xc5\x6f\x12\xdb\x40\xd7\xb5\xdb\x5b\x28\xf7\x9e\xd6\xc8\x1f\xfd\x59\x73\x4f\x3f\x25\xb9\x24\xcd\x58\x76\xcf\x3d\xea\x0e\x0d\x35\x6b\x64\x39\x5b\x27\x97\xfc\xd7\x56\xfd\xbf\xa9\x0a\xf5\xa1\x40\xea\x27\x15\xd0\x56\x25\xf4\x17\x69\x1f\x50\x40\xdf\x21\xe8\xf7\xb8\x17\x54\x4b\xd1\x65\x5c\xe3\xba\x89\x1b\x48\xba\x5d\x81\xfe\xc8\x99\x7f\x73\x1e\xfa\x4a\xf9\xe6\x96\x30\x8c\x17\xff\x13\xdc\x66\x3d\x7e\x73\xe1\xb8\xf9\xbe\x46\xbb\xc6\x64\xfd\x9c\x4e\xb0\xb9\xb6\x2b\x41\xdf\x77\x8a\x9d\xad\x4d\x15\x98\xb8\xa8\x10\x76\x89\x96\xb7\x7a\x8f\xb3\x67\x1f\x54\xa0\xb5\x02\xaa\xa5\x3d\xd6\x81\xbf\x75\xd3\x7d\xf1\x82\x27\x94\x4a\x79\xcf\x00\xd7\x7a\xc7\xb9\x4e\x2b\x49\x4f\x29\xdf\xac\x0c\xcb\xf1\xd1\xa9\x0c\x9f\x73\x00\x5a\x22\xd0\xd3\x99\x7e\xc1\xd8\x6f\xbd\x30\x12\x1f\x5b\x64\xef\x28\xe8\x7d\xc7\x59\x6e\x0f\x4a\xf5\xb3\xe7\x95\xf7\xcd\x52\xe6\x65\x3d\xe1\xf5\xf5\x13\x8a\x60\x57\x20\xba\xc6\xe1\xc3\x8d\x45\xf4\x30\xe5\xf7\x9d\xf4\x77\x3e\xaf\xe1\x68\x99\x8d\x9f\x73\x16\x05\x7d\x62\xdb\x37\xf7\xfc\xa2\xf8\x79\x42\xa0\xb7\x59\x5f\xe0\x47\x23\xb6\xef\xdc\xc7\x2d\x31\xf6\x5b\xb7\x7a\x63\x38\xb2\xff\xa4\x76\x33\x1c\x4a\xf3\xb0\x65\xef\x9b\xda\xe9\xec\xa4\xce\x65\xe3\x76\x16\xbe\xa0\x2d\x96\xb3\xbf\xd8\xc6\xcb\xf9\x84\x40\xaf\x2a\xa0\x5f\x11\xf4\x3e\xae\xc9\x2e\xbd\x4a\xe8\x97\xf8\x5c\x79\x96\x6a\xcc\x42\xfa\x90\x12\xe6\x21\x0b\x7e\x94\xcb\xb5\xc3\xd9\x59\x78\x96\x4e\xa0\x8d\x96\xb3\x7a\xd4\xba\x2f\xd0\x5f\x37\xbe\x47\x2b\x14\x98\xbb\x9b\x73\xd8\xf3\x73\xf9\xa8\x9e\xc3\x37\x36\x7d\x3c\xdf\xf1\x1c\x37\x07\x5f\xd0\xb7\x36\xfe\xb1\xe1\x89\xb3\xd0\xaf\x89\xf4\x7d\x83\x34\xe7\xd9\xe2\x19\x81\x26\x72\xfa\xa2\x22\xf8\x9c\x5b\x2e\xfc\xec\xec\xbb\x61\x58\x9f\xeb\xf0\x13\x15\xf0\xff\xe6\xa2\xfe\xe7\xf9\x16\xa5\xb9\xab\x61\xab\x19\x9f\xc3\x67\xe9\x73\xae\x7c\x09\x56\x4f\x9d\xac\x80\x5e\xe3\xfc\xe4\x7a\x1b\x80\x7e\xc4\xc6\xd7\xd4\xfb\xa2\x02\xfd\x39\xe7\x71\x12\x7f\x42\xff\x9e\xbd\x8f\xcc\xf0\xd9\xf2\x4f\xd2\xcb\x2e\xbd\x9d\x92\xab\x96\x71\x8f\xb4\x9c\xe9\x21\x9e\x01\xba\x81\x5b\x5d\x55\x3b\x15\xfd\xda\x15\xae\x99\xa4\x51\x7f\xf5\x6e\x8b\x0d\x3b\x5c\xb9\x5d\x84\x14\xd0\x1b\x49\xfd\x85\x68\x9d\x8b\xc7\xd5\x7f\x10\xcc\x2b\x45\xf1\xf2\xb1\x8b\x92\x1e\x44\xa1\xbf\xb1\xdd\xd3\x67\xf1\x09\xfd\xae\xa3\xff\xee\x74\xe5\x4e\x96\x92\x7c\x07\xda\x89\x40\x1f\xce\xf7\x7f\x09\x1b\x71\x7d\x50\xa0\
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsFaviconIcoBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsFaviconIco,
|
|
|
|
"web_ui/assets/favicon.ico",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsFaviconIco() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsFaviconIcoBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/favicon.ico", size: 6518, mode: os.FileMode(420), modTime: time.Unix(1622839406, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsFaviconSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x59\x4d\x6f\x5c\x59\x6e\xdd\xf7\xaf\x78\xa8\x6c\xab\x29\x7e\x7f\x0c\x2c\x0f\x10\x21\x59\x4d\xaf\x92\x6c\x7a\xd7\x18\x6b\x6c\x61\xdc\x92\x61\x2b\xb6\x91\x5f\x1f\x9c\xfb\xca\x76\x3d\x8f\x76\xa5\x53\xb7\xf8\x78\xc9\x43\xf2\xf0\xe9\xd5\x5f\xbf\xfe\xf9\x7e\xfb\x7c\xff\xf1\xd3\xc3\xd3\xe3\xed\x49\x88\x4f\xdb\xfd\xe3\xdf\x9f\xde\x3c\x3c\xbe\xbd\x3d\xfd\xcf\x7f\xff\xe7\xaf\x7d\xfa\xeb\xeb\x5f\x5e\x7d\xfa\xfc\x76\xfb\xf2\xf0\xe6\xf9\xdd\xed\xc9\xf4\xc3\xd7\xd3\xf6\xee\xfe\xe1\xed\xbb\xe7\x6f\x7f\x7d\x7e\xb8\xff\xf2\xef\x4f\x5f\x6f\x4f\xbc\xf1\x66\xba\x99\x9e\xae\x8d\xca\x69\xfb\xfa\xe7\xfb\xc7\x4f\xb7\xa7\x77\xcf\xcf\x1f\xfe\x72\x73\xf3\xe5\xcb\x17\xfa\x62\xf4\xf4\xf1\xed\x8d\x32\xf3\xcd\xa7\xcf\x6f\x2f\x47\xfe\xf2\xf5\xfd\xc3\xe3\x3f\x5f\x3a\x28\x33\x73\xb3\xbe\x3d\xbd\xfe\x65\xdb\xb6\xed\xd5\xf3\xc3\xf3\xfb\xfb\xd7\xff\xf8\xe3\xf3\xc3\xdf\x9f\x1e\x5f\xdd\xec\x7f\xee\x5f\xbd\xdd\x1e\xde\xdc\x9e\x2e\x5f\x9d\xb6\x4f\xcf\x1f\x9f\xfe\x79\x7f\x7b\x7a\x7c\x7a\xbc\xff\xf6\xd7\xaf\x97\xfb\xc8\x69\xfb\xc7\xc3\xfb\xf7\xdf\xbe\xc4\xe7\x5f\x3f\xfe\xef\xfb\xfb\xdb\xd3\xfd\xe7\xfb\xc7\xa7\x37\x6f\x2e\x8f\x5b\x76\x3f\xfc\xf1\xfc\x6e\x7b\x73\x7b\xfa\x4d\x86\xa2\x26\xd2\xeb\xac\xe4\x19\xe6\x95\xb2\xdd\x49\x91\x55\x4e\xca\x9c\x85\xba\xb5\xc5\x2b\x36\x09\xe2\x0c\x17\x4b\xa0\x9e\xe9\x91\xb5\x89\x52\xe3\x83\xcd\x59\xc9\x62\xa6\xd9\x62\xbb\x13\xa6\xd4\xe8\xe6\x38\x2b\x75\x99\x49\xca\xd6\x14\xe9\x63\xa3\x71\x36\x1a\xe5\xb4\x1e\xd9\x92\xda\xa5\xa4\xf3\x1c\xe4\x22\x1c\x2c\xb6\xdd\x05\x89\xb4\xb7\xb4\x9d\x93\x86\xc5\x53\x2c\x36\xa3\xea\x60\x93\xea\x73\x53\xf5\x8c\x4a\xd8\xa6\x34\x51\x3c\x16\x73\x16\xa6\x11\x0d\x73\xdd\xee\x94\x44\x47\x52\x6d\xce\x62\xc4\x16\x3c\x26\x9b\x50\x9b\x54\x8e\xf5\x59\x82\x4c\x2b\xab\x37\x25\x1e\x2e\x63\xce\xb3\x14\xc5\x32\xd1\xb0\x60\x3e\x39\xa2\x75\x96\xa1\x0e\x6f\x9d\xdc\x8c\x24\x4a\x5a\xca\xcf\xaa\xc4\x2a\xcc\x53\x9b\x93\xbb\x89\xb0\xe7\x59\x0d\x1e\x57\x49\xe1\x1e\xa5\xc3\x36\x52\x67\x0d\xaa\xd6\x30\xab\xad\xc8\xc3\xc3\x54\xe5\xac\x45\xa6\xc2\x2e\xb2\x0d\x79\x4e\xa7\xc7\x9c\xb5\xc9\xda\xca\x1d\xe9\x10\xf2\x0e\x99\x3a\xeb\x90\x7b\xba\x97\x6e\x62\x30\xec\x66\x76\x36\x26\x66\xd1\xf2\xda\x24\x89\xb9\xaa\x55\xcf\xc6\xdb\x1d\xf2\x2b\x93\x99\xb2\x1f\xb2\x68\xcf\x4d\x95\x86\xad\x63\x7f\x4c\xe2\x4e\x1d\x9b\x06\x9e\xc2\xf8\xa9\x26\x19\x4b\x5a\xce\xf6\x37\x55\x92\xf2\x0c\xc1\x5d\xdb\xc5\xd4\x67\xbb\x53\xa6\x0e\xb3\x61\x39\xab\x13\x9b\xa6\x85\x6d\x32\xa4\x12\x2c\x09\xb0\x25\xd4\x3a\x37\xc1\x5d\x9b\x35\x03\x01\xe0\x71\xd7\xc0\xa5\x82\x8a\x85\x6d\x85\xc5\xca\x32\xc3\x71\xa9\x61\x2e\xef\x04\x2a\x56\xce\xb2\x28\xa6\x15\xa6\xb2\x1e\xe6\xe2\x86\xab\x2e\x8a\xf9\xb4\xcd\x20\xe0\xc8\xd2\xf8\x36\xa4\xd9\xe0\x13\xdc\x0d\x51\xf7\xac\xad\x49\x07\x51\xf0\xb3\x0a\xb1\x72\x64\xcf\x76\x57\x64\xc6\x3e\xc2\x83\xe4\x86\x76\xb9\x0f\xd8\x28\x9e\x31\xde\x60\x42\x75\x75\x49\x1e\x50\x84\xb8\x9b\x75\xb6\xbb\x6b\xd8\x49\x75\xaa\x6b\xb6\x6b\xc3\x4a\xde\x3d\xe2\x79\xe5\x04\x38\x3a\xc5\x96\xbd\xdd\xfd\xf0\x77\x28\x38\x24\x86\x7d\xbb\xba\x59\x13\x62\x2b\xd2\x72\x1d\x86\xa2\x64\xd3\xf6\xde\xee\xae\x42\x96\x04\xb7\x34\x62\xd5\xea\x25\xba\x49\xe9\x36\x03\x7a\x5d\x65\x22\x69\xd4\xa4\x73\x51\xe4\x92\xb3\x22\x65\xb5\xaa\xd9\xae\xb2\x5b\x34\x1d\xac\x2e\xb1\xfd\x60\xc2\x90\x54\x9a\x79\xf4\xf6\xb7\x2b\xda\xe0\x99\x8a\xbe\x01\x82\x18\x35\xca\xad\xfd\xec\x24\x31\x52\x3e\xb5\xa9\xa0\x02\x24\x0b\x0d\x80\xbd\xba\x05\x59\x7f\xb1\x0b\xfd\xbe\xfd\xa6\x45\x1c\xc2\xce\x7d\x56\xa6\xd2\x08\xc3\x95\x35\xa9\x57\xb6\x62\xc1\x39\xa0\x83\x26\xa5\xba\x4f\x3b\xc0\xae\x1e\x2e\x07\xea\xe9\xea\x13\x2b\xf5\x36\x12\x69\xcb\x82\xb1\x8d\xe7\x00\x96\x19\x8f\x1e\x1c\x96\xf1\xea\x5c\x87\x9d\x2d\x43\x6c\xa1\xc1\x51\x6e\x40\x53\x93\x57\x7f\x02\xcc\x69\x89\x72\x41\x3b\x6c\x9d\xca\x75\x18\xe5\xae\xb6\x5a\x43\x75\xc5\x04\x50\x95\xa8\x91\x85\x6a\xb7\xa4\xf6\xc5\x0b\x8d\x60\x05\xec\x53\x29\xd3\xcb\x65\x1f\x57\x4d\xa0\x59\x99\x52\xba\xae\x67\x35\xda\x0b\x6d\x46\x7f\xca\x4b\x28\xd2\x1a\x11\x52\x1a\x6d\x8f\x99\x0d\x71\xf3\x9a\xea\x1d\x9d\x40\xaf\x06\xaa\xe5\xa9\xe9\xd7\xe8\x9d\x16\x45\x75\x9a\xcc\x4f\x87\xbb\x58\x14\xfd\x1b\x0d\xdc\
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsFaviconSvgBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsFaviconSvg,
|
|
|
|
"web_ui/assets/favicon.svg",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsFaviconSvg() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsFaviconSvgBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/favicon.svg", size: 6381, mode: os.FileMode(420), modTime: time.Unix(1622839406, 0)}
|
2021-01-20 18:40:46 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-04-15 18:15:02 +00:00
|
|
|
var _web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcf\x6f\x13\x3f\x10\xc5\xef\xf9\x2b\xf6\xeb\x43\x6a\xeb\xbb\xeb\xe6\xc7\x6e\x36\xa9\xb4\x20\x14\x7a\x00\x21\x40\x0d\x3d\x55\x3d\x78\xed\x71\x62\x94\x8c\x17\x7b\xd2\x34\x4a\xf2\xbf\xa3\x4d\x4a\x4a\x01\x21\x71\x1b\x8d\xec\xf7\xde\xbc\x0f\xb7\x6b\xd4\xe4\x3c\x72\x10\x3b\xed\x31\x52\x42\xd5\xfb\xd9\xa7\x8f\xb2\x51\x21\x02\x07\xf9\x6d\x0d\x61\x3b\x83\x25\x68\xf2\x81\xb3\x3b\xa3\x48\x65\xed\xcb\xf5\x32\x5b\xbb\xcc\xc6\x7b\x26\x24\xc1\x23\x4d\x3d\x12\x20\x89\x14\xab\xb3\x28\x89\xdd\x83\x0a\x09\x56\x20\x75\x00\x45\x70\xbd\x84\x15\x20\x71\x16\x75\x70\x0d\x31\xd1\x41\x19\x83\xae\x28\x05\x59\x7b\xb3\x95\xaa\x69\x00\xcd\x74\xe1\x96\x86\xa3\x38\x74\xd8\x17\x78\xa4\xb7\xa0\xbd\x81\xc0\x1c\x26\x1b\x87\xc6\x6f\xf6\x7b\x8e\x9c\xee\x58\xeb\x9b\x01\x6a\x6f\x1c\xce\x2f\x7f\x0c\x99\x43\x03\x8f\x10\xb3\xb2\x00\x50\xfd\x51\x3d\x28\x26\x65\x7f\x64\xea\xdc\x9a\xfe\x68\x00\x30\x18\x0f\xcd\x40\x41\x21\xbf\x46\x76\x2f\xd2\xbf\x49\x69\x53\x17\x3d\x5b\x1b\x55\x8f\x4c\x6e\x86\xd6\xd8\xa2\xcc\x8d\x29\xc7\xb9\x2d\x4b\x33\x28\x4f\x12\x22\x3d\xe5\x92\xd3\xd9\xac\xdb\x7d\x9e\x25\x44\xad\x1a\xd8\xef\x8f\x16\x3a\xc6\xa7\xc5\xe5\xf3\x98\x8d\x8b\xfe\x78\x38\xa9\x87\xa0\xfa\xa6\x57\xe7\x50\xe7\xba\xec\x8d\x27\x79\x3e\x32\xb6\x80\x89\x3d\x39\x74\x28\x6c\xcf\x80\x7e\xa5\x72\x71\x87\x6a\x05\x15\x3b\x63\xb9\xd4\x1e\xad\x6b\xcf\x78\x70\xc1\x63\x5b\x39\xbb\xbf\x68\xd1\xfc\x0b\xdb\x93\xc8\x6f\x7c\xfd\xcf\x22\xe6\x88\xe6\xf6\xe6\xdd\xd4\xaf\x1a\x8f\x2d\x5b\x92\x73\xa0\x37\x44\xc1\xd5\x6b\x02\xde\xa6\x6a\x3f\x32\x21\x44\xaa\x2b\x16\x29\x38\x9c\xb3\xff\x2a\xda\x36\xe0\x6d\x82\xf2\x49\xf9\xb3\xa2\xc5\x6b\xc6\xae\x5e\x2c\x3a\x5a\x2e\x01\xe7\xb4\x78\xd5\xeb\x76\xb9\x97\xc1\x7b\xba\xbd\xf9\x50\x69\x91\x92\x8c\x7f\xf4\x49\x8f\xf0\x5e\x66\x3a\x26\x3e\x39\x3b\xbb\xe5\x5e\x08\x71\xd0\x8a\xf4\x82\x7b\xb1\xa3\x45\xf0\x9b\x04\x61\x93\x5c\x87\xd0\x16\x71\x8b\xaa\x5e\x42\x42\x3e\x39\x1e\x99\x9c\x2b\x49\x22\x10\x39\x9c\xc7\xab\x84\xfd\xef\xe5\x0a\x62\x54\x73\x10\x87\x83\xe0\xc6\xeb\x75\xdb\xb3\xe8\x7c\x0f\x00\x00\xff\xff\xb9\xf9\x01\x45\x54\x03\x00\x00")
|
2021-01-20 18:40:46 +00:00
|
|
|
|
2021-04-15 18:15:02 +00:00
|
|
|
func web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJsBytes() ([]byte, error) {
|
2021-01-20 18:40:46 +00:00
|
|
|
return bindataRead(
|
2021-04-15 18:15:02 +00:00
|
|
|
_web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJs,
|
|
|
|
"web_ui/assets/init-5910c08f0513d860b0c43c7123524fdc.js",
|
2021-01-20 18:40:46 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-15 18:15:02 +00:00
|
|
|
func web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJs() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJsBytes()
|
2021-01-20 18:40:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/init-5910c08f0513d860b0c43c7123524fdc.js", size: 852, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2018-10-19 18:57:23 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
var _web_uiAssetsLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00")
|
2018-10-19 18:57:23 +00:00
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiAssetsLoadingCylonPinkSvgBytes() ([]byte, error) {
|
2018-10-19 18:57:23 +00:00
|
|
|
return bindataRead(
|
2019-04-12 15:02:27 +00:00
|
|
|
_web_uiAssetsLoadingCylonPinkSvg,
|
|
|
|
"web_ui/assets/loading-cylon-pink.svg",
|
2018-10-19 18:57:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiAssetsLoadingCylonPinkSvg() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsLoadingCylonPinkSvgBytes()
|
2018-10-19 18:57:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1622839406, 0)}
|
2020-10-09 20:31:15 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdd\x8a\xf2\x30\x10\x86\xcf\xbd\x8a\xb1\x08\x26\x50\x7a\x01\x1f\xf4\xe8\x63\x0f\x97\x95\xf5\x50\x04\xb3\xe9\x54\x67\xb1\x89\x4c\xa6\x16\x89\xb9\xf7\xa5\xfe\xac\x74\xab\xa7\xf3\xe4\x7d\xf3\x30\x8c\xaa\x5b\x67\x85\xbc\x53\xac\xa3\xf5\x2e\x08\x60\xb9\xca\xc8\x91\x64\x79\x16\x90\x8f\x64\xf1\x13\x2d\x3a\x59\xb6\x4d\x63\xf8\xb4\x44\x26\x0c\xaf\xa0\x18\xe9\x59\x7b\x08\xc2\x68\x9a\xa7\xb0\xf2\x9d\x7b\x89\xd7\x13\x2e\x7a\x8f\x76\x5f\x3a\xec\xc0\xee\x4d\x08\x57\x31\x6e\xad\x78\x56\x3a\xca\x8e\x42\xc1\xb8\xa5\x20\x7c\x2a\x63\xca\x2f\x83\x03\xfb\x23\x55\xc8\xa1\x8c\x29\x5d\x29\xf2\x3b\x0a\x93\x0d\x8b\x1b\x53\x9c\x8b\x8e\xb5\x67\x75\x34\x0c\x04\xbe\x06\xd4\x54\xab\xec\xbe\x85\x6c\x5a\xca\xe9\x80\xbe\x06\x59\xd1\x5a\xcb\x8e\x7d\x07\xbd\xc7\x1b\xb3\x67\xb5\xf9\x6f\xdc\x5c\xe0\xde\x0e\xcd\xb5\x1e\xee\x7f\xc3\x7c\x16\x39\xcd\xff\x41\x43\x21\x90\xdb\xc2\x2c\x52\xea\x5f\xed\x7c\x55\x6c\xf4\x64\x60\xbe\xe2\x75\x29\x69\x8b\x32\x96\x44\x1d\xa9\x56\x53\xc5\x40\x0e\x06\x21\x3d\x76\xba\xc5\x61\x31\x94\x00\x0a\xe0\xfc\x43\x16\x2f\x06\x8c\xd2\xb2\x83\x47\xf1\xef\xda\xce\x67\x35\x1c\xf4\x7e\x1f\x5f\xdf\x68\xa5\xb0\x8c\x46\x50\xfd\xd5\xd7\xf9\x28\x51\xf4\x97\xa3\x50\x3f\x41\x29\x25\xad\x3a\x72\x95\xef\xf4\xe4\x27\x00\x00\xff\xff\xda\x1a\x7e\xe5\x78\x02\x00\x00")
|
|
|
|
|
|
|
|
func web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545JsBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545Js,
|
|
|
|
"web_ui/assets/metrics-providers/consul-31d7e3b0ef7c58d62338c7d7aeaaf545.js",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545JsBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/metrics-providers/consul-31d7e3b0ef7c58d62338c7d7aeaaf545.js", size: 632, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
2020-10-09 20:31:15 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-11-17 16:28:08 +00:00
|
|
|
var _web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5d\x73\xdb\x36\xd6\xbe\xd7\xaf\x40\x30\x79\x15\x22\x42\x69\x29\x69\xf2\x36\x8c\x59\xcd\xac\x9b\x76\x33\xb3\x4d\xbc\xb6\x3b\xb3\x33\x1a\x2d\x0d\x91\x47\x12\x1a\x09\x50\x00\xd0\x96\x47\xe6\xfe\xf6\x1d\x80\x1f\x22\x29\xc9\x76\x9a\xb8\xbb\x17\x7b\x25\x91\x78\x80\xf3\x81\x07\xe7\x1c\x00\xf4\xa6\xa9\x88\x0d\x97\xc2\x23\x9b\x2b\xa6\x10\x84\x9b\x54\x70\x73\x9e\x4e\xa7\x7c\x1d\x60\x4c\x17\x6c\x02\x0b\x1d\x6c\x32\x9a\x30\xc3\x82\xd1\x38\xa3\x26\xdc\xc8\x95\xed\xe3\x5e\x73\xc1\x4d\x50\x8d\x02\x64\xc3\xa7\x9e\x99\x73\xed\x17\x98\x10\xe8\x93\xfa\xb3\xbf\x04\xa3\x78\xac\xa3\x95\x92\xeb\x9b\x08\x04\x9b\x2c\x20\x21\x66\xae\xe4\x35\x12\x70\x8d\xde\x29\x25\x95\x87\x57\x4a\x2e\xc1\xcc\x21\xd5\xa8\xe8\x81\x56\x4a\x5e\xf1\x04\x14\x8a\x53\xa5\x40\x98\xc5\x0d\x52\xf0\x39\xe5\x0a\x34\x32\x73\x40\x29\x8f\x62\x29\xa6\x7c\xd6\x94\x81\x8c\x44\x13\x40\x79\x53\xaa\x20\x41\x5c\x38\xfc\x89\x14\x3a\x5d\x20\x36\x03\x61\x7c\x4c\x32\x3a\x37\x66\xf5\x0b\xd4\xcd\xa1\x86\xaa\xdc\xa4\xdc\x3f\x3a\xfc\x6e\xf0\x24\x0c\xc1\xe7\x22\x81\xf5\xc7\xa9\x87\x87\x98\x0c\x71\x17\x07\x78\x88\x3b\x10\x42\x4f\xf7\x3e\x4e\x7e\x87\xd8\xf8\x9f\xe0\x46\x7b\x86\xf8\x4b\xb6\xf2\xbc\xba\x83\x14\x98\x54\x09\x04\x22\x96\x09\xfc\x76\xf6\xfe\x44\x2e\x57\x52\x80\x30\x1e\x90\x1e\x0e\x71\x6f\x4f\x8b\x19\xc1\x98\x64\x84\xf8\xbf\x4b\x2e\x3c\xdc\xc5\x24\x2b\x86\x69\xf8\x76\x0a\x26\x9e\x7b\x40\x37\x73\x60\x09\x28\x1d\xa8\xdb\xdb\x4d\x96\x11\xdf\xcc\x41\x34\xb5\xe0\x53\x0f\x7c\xf9\x89\x94\xda\xf8\xbf\x6b\xcb\x82\x8e\xb5\xd2\x84\xb5\x89\xf8\xeb\xc5\xc5\x69\xfe\x3f\x40\xb8\x07\xbe\x36\xcc\xa4\xfa\x02\xd6\x86\x74\xf2\x59\x33\xc5\xbb\x13\x99\x40\x58\x02\xa8\xc9\x08\xc9\xa8\x06\x75\xc5\x63\x38\x83\x18\x84\x39\x4f\x97\x4b\xa6\x6e\xce\x41\x71\xd0\x2d\x2f\x53\x4d\x45\xee\x63\x16\x7a\x56\xfc\x4f\xcc\x00\xf1\x67\x60\x2e\xf8\x12\x3c\x72\x34\x80\x97\x9d\x42\x59\x61\x65\x28\x13\xb2\xef\xde\xf4\xfb\x54\xf8\x20\x92\x90\x51\xe7\x89\x39\xd3\x7f\xfb\xff\x5f\xf3\xe9\xf7\x34\x19\xba\x97\xce\x2d\x67\xf0\x39\x05\x6d\xce\x98\x81\x5c\x81\x42\xae\x20\xc1\x16\xf4\x13\x33\x6c\x0f\xe2\x80\x1d\x86\x99\xbb\xcc\x18\x8d\x3b\xf5\x49\x6a\xab\xe6\x31\x7f\x95\xea\xb9\x57\x53\xf1\xf4\xbc\x18\x05\x17\xf2\x30\x15\x84\xd0\x1d\xe0\xbb\xb3\x87\xe1\x4e\x41\x59\x7d\xf9\x02\xbc\x57\x7d\xfa\xa5\x5d\xde\xbc\xd9\xd7\x85\x04\xbb\x8a\x9f\x48\x21\xac\xdb\x1e\xa6\xd5\x79\xe1\xcb\xf5\x17\xc1\x2f\xbe\x0c\xfe\x41\x9e\xc9\x74\xbf\x46\x84\xd6\xd0\x76\x0e\x3d\x46\x32\x9a\xae\xb4\x51\xc0\x96\x0f\x98\xe2\x6a\x0d\xd7\xd9\xd5\xee\x55\x4a\x2e\xc7\xc5\x54\x93\x8c\x26\xf2\x5a\x3c\x8e\x9c\xed\xc8\xb9\xa4\x03\xf0\x07\xf1\xf5\x0e\x66\xea\x7b\x18\x79\xa0\x7d\x1f\x13\xef\x87\x56\x0c\x3c\x00\x6d\xf1\xee\x00\xaa\xcd\xb7\xbb\x61\x17\x0f\x83\x35\xf9\x95\x63\x5b\xb4\xfa\x45\xc9\x74\x05\x89\x63\x57\x7d\xf1\x07\xbb\xd9\x00\xdb\xd4\x83\xc3\x30\x84\xdb\x5b\xf7\xff\x45\xf9\x30\x53\xab\xd8\xfd\x2f\x66\xb4\x3d\x89\x15\x47\x4e\x95\x5c\x72\x0d\x3e\x5b\x2c\x3c\xd8\x89\xf8\x86\x6c\xa6\x52\x79\x76\xa2\x55\xb8\xd1\x6e\x10\x9b\xcc\x75\xd8\x7f\xab\x8f\xc1\x5f\x80\x98\x99\xf9\x5b\xdd\xeb\x11\x33\xd2\x63\xff\x8a\x2d\x52\xe8\x76\x95\x8b\xe6\xba\xf0\xc1\x48\x8f\x49\x49\x11\xe5\xc2\xfb\x8e\xb1\xdf\x46\xb3\x4d\xb6\x57\x33\x9b\x87\xad\x0e\x25\x5e\xb8\x4c\x6e\xdf\x38\x9d\xe7\x4c\x7f\xbc\x16\xa7\x4a\xae\x40\x99\x1b\x4f\x90\x6e\xd7\x2b\x0c\x18\x89\xf1\xed\x6d\xed\x21\x1c\x8d\x09\xdd\x3e\x6e\xed\x1b\x89\x31\x69\xd9\xa8\x60\x2a\xd5\x92\x99\x76\xda\x72\xa5\x41\x81\xac\x5e\x6a\x97\x59\x9f\x68\xdf\x96\x4b\xb7\xb7\xc5\x1f\x5f\x81\x4e\x17\xe6\xf6\xb6\x1f\x86\x8d\x37\x85\x75\x6d\xe0\xa8\x5f\xcc\x80\xde\xed\xb2\x6d\x2b\x3a\x57\x29\xbc\xb3\x00\x83\xc4\x41\xf4\x81\x42\x64\x63\xf8\x12\x82\x5f\x99\x99\xfb\x4a\xa6\x22\xf1\x06\xf0\xf2\x39\x8c\xfa\x63\x92\x65\x5b\x57\x34\xb5\xde\x19\x0a\xf6\x0b\x71\x2e\x12\x23\x35\x1e\x41\x51\x93\xf9\xae\xa0\x1c\x87\x2b\xa6\x34\xfc\xbc\x90\xcc\xd6\x36\x03\x57\xdb\x64\x84\xd0\x7a\xf5\x69\xca\xe2\x53\xe5\xb5\xa7\xc8\xb2\x2a\xaa\xb5\x52\xf9\x9e\xc8\xe9\xf8\x11\x5e\xea\x74\x89\x26\x37\xc8\x73\x43\x91\xe2\x37\x52\xb0\x5a\xb0\x18\x5a\x4f\x5c\xb
|
2020-10-09 20:31:15 +00:00
|
|
|
|
2020-11-17 16:28:08 +00:00
|
|
|
func web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968JsBytes() ([]byte, error) {
|
2020-10-09 20:31:15 +00:00
|
|
|
return bindataRead(
|
2020-11-17 16:28:08 +00:00
|
|
|
_web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968Js,
|
|
|
|
"web_ui/assets/metrics-providers/prometheus-5f31ba3b7ffd850fa916a0a76933e968.js",
|
2020-10-09 20:31:15 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-11-17 16:28:08 +00:00
|
|
|
func web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968JsBytes()
|
2020-10-09 20:31:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/metrics-providers/prometheus-5f31ba3b7ffd850fa916a0a76933e968.js", size: 9627, mode: os.FileMode(420), modTime: time.Unix(1622839523, 0)}
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\xbd\xdb\x76\xe3\xb8\xb6\x28\xf6\xee\xaf\x90\x78\x56\xb8\x80\xd2\x34\x8b\x80\x24\x4a\x82\x0d\xeb\x54\x77\xbb\x7a\xd5\x59\x5d\x97\x53\xe5\xee\xde\xbd\xb5\xb4\xbd\x69\x09\xb2\x59\x25\x93\x5a\x24\x25\x97\x5b\xd4\x1e\x7d\x92\x9c\x5c\xc7\xc8\x07\xe4\x25\xe7\x35\x4f\xf9\x87\xfd\x27\xa7\xf3\x23\x19\xb8\xf0\x26\x51\xae\xda\x9d\x8c\xf8\xc1\x22\x41\x5c\x27\x80\x79\xc3\x9c\x13\x0f\x41\x38\x8f\x1e\x9c\xcb\xfb\x1b\x11\x5f\xbe\xf9\x89\x2f\xd6\xe1\x2c\x0d\xa2\x10\x09\x48\xf1\x76\x11\xc5\x68\xe3\xc7\xad\xb8\x15\x84\xad\x14\x8b\x49\x3c\xe5\xe9\x24\x9e\x9e\xc4\x22\x5d\xc7\x61\x4b\xec\xd0\x5e\x05\x59\xb6\xdd\xc1\xf6\xe5\xe5\x8b\xab\x1f\xdf\x5f\x7e\x60\xdb\x1d\x5c\xfe\xc3\xd5\xe5\x9b\xef\xae\xdf\xbd\x7f\x7b\xf5\xf6\xea\x97\x77\x32\xf1\x3b\x3f\x15\xac\x4d\x76\x70\xfd\xe2\xdd\xbb\x1f\x5e\x7d\xfb\xe2\xea\xd5\xdb\x37\xd7\x57\x97\xaf\xdf\xfd\xf0\xe2\xea\xf2\xfa\xe7\xf7\x2f\xde\xbd\xbb\x7c\xcf\xda\x04\xae\xbf\xbb\x7c\xf9\xe2\xc7\x1f\xae\xae\x5f\x7c\xf8\xe5\xcd\xb7\xd7\x6f\xbf\xf9\x70\xf9\xfe\xa7\xcb\xf7\x1f\x58\xdb\x85\xeb\xff\xf0\x1f\x7f\xbc\x7c\xff\xcb\xf5\xab\x37\x57\x97\xdf\xbf\x57\x75\xa8\x22\x45\x3d\x6f\xdf\xfc\xf0\xcb\xf5\xf7\x3f\xbc\x7a\xfd\xfa\xf2\xfd\xf5\xb7\x6f\x5f\xbf\x7b\xfb\xe6\xf2\xcd\x95\x2c\xbb\xc3\x27\x72\x58\xcb\xc8\x9f\x8b\x18\xe6\x62\x11\x84\x02\x62\xf1\xf7\x75\x10\x8b\xd7\xd1\x7c\xbd\x2c\xde\xf2\xdf\x8f\x09\xc4\xeb\x30\x0c\xc2\xdb\x2b\x91\xa4\x09\x6f\x93\x93\x1c\x54\xad\xeb\x34\xfa\x36\x0a\x93\xf5\xbd\x7f\xb3\x14\x2f\xe2\xd8\x7f\x44\x02\x6f\x0d\x88\xae\x7d\x99\xf0\x73\x90\xde\x45\xeb\xf4\x2f\xd1\x52\x24\x48\xe0\x2c\xbb\x0e\x52\x11\xcb\xfc\x57\x51\x5e\x22\xcb\xae\xd7\x61\xb2\x5e\xad\xa2\x38\x15\xf3\x57\x4d\xdf\xc3\x28\xcc\xd3\x3f\xac\x62\xe1\xcf\x11\xde\x95\xdd\x68\xf8\xba\x4d\xef\xe2\xe8\xa1\x15\x8a\x87\xd6\xd5\xe3\x4a\x5c\xc6\x71\x14\x23\xeb\x55\xb8\xf1\x97\xc1\xbc\xe5\xa7\xa9\xb8\x5f\xa5\xad\x34\x6a\x25\xaa\x40\x2b\x8c\xc2\xd3\xbc\x67\xad\x20\x4c\x52\x3f\x9c\x09\xe7\x6f\xe1\xab\xb0\x15\xc5\x73\x11\xcb\xac\x37\xa2\x95\x67\x01\x55\x40\x8d\xb0\x15\xdd\x7c\x14\xb3\x34\x69\xdd\xaf\x93\xb4\x75\xe7\x6f\x44\xcb\x6f\x4d\x3e\x3c\xde\xdf\x44\x4b\x47\xe5\x4f\xa3\x78\x8a\x70\xeb\x5e\xa4\x77\xd1\xdc\xb1\xaa\x3d\x3f\x04\xc6\x36\x58\x20\x6b\x1d\xea\xa9\x99\x5b\x6d\x9e\x3e\xae\x44\xb4\x68\xe9\x0a\x6d\x7b\xaf\x62\xb9\x3e\xdf\xaa\x0e\x20\x81\xb1\x01\xbd\xaa\xcb\x59\xc4\xd1\x3d\x12\xd5\xd6\x9a\x66\x44\xb6\xa7\xf3\x07\x49\xde\x07\x5c\x9b\xc2\x1f\x82\x4f\x95\xfe\x55\xaa\x9b\xc5\xc2\x4f\xc5\xcb\x28\x7e\xbb\x78\x65\xba\xf3\x17\xb1\x5c\x89\x58\xef\x21\xb5\x7f\x4e\xea\xc3\xe1\xf5\xe1\x64\x59\xb8\x5e\x2e\x39\x17\x07\xf0\x6a\xec\x57\x96\xa1\x98\x3f\xbd\x56\x70\x96\xa5\xb6\x2d\x6c\xdb\x0a\xd7\x72\x67\x96\x2d\x0a\x67\x29\xc2\xdb\xf4\x0e\x6f\x63\xdb\x46\x82\xc7\x7a\x2b\x84\xdc\x85\xa0\xdc\xfd\x78\xbb\x33\x7b\x7c\x9b\xb0\x00\x42\x56\xf9\x62\xa0\x12\x5e\xf0\xbc\xae\xf1\x76\x1e\x85\x42\xee\x2b\x66\x9e\x08\x6c\xfc\xe5\x5a\x30\x31\x09\x3b\x9d\xe9\x6e\x07\xa2\xac\x41\xe4\xab\x52\xec\x60\xc1\x82\xdd\xee\x6b\xd7\xa8\x86\x8a\xf8\xff\x77\x91\x4a\xe0\x44\xe0\xf3\xb6\x0b\x6a\xd7\x17\x50\xa9\x42\xa4\x61\xe6\x10\xde\xd5\xc1\x26\x2b\x12\x3c\x76\x42\xf1\x39\x45\x38\xc7\xa0\x3e\x17\x8e\x04\x19\x88\x7d\x18\x25\xb2\xc9\x88\x2b\x20\x55\xaa\x49\xe3\xc7\xad\x9f\x2f\x98\xd8\xd1\xd5\x64\x59\xfe\x24\x11\x42\x10\xfa\xcb\xe5\xa3\x5c\x39\x09\xd6\xb0\x8d\x76\xbb\x5d\x65\xc5\x3e\xb5\x74\xe4\x92\x0d\x16\xf9\x0e\x4c\xd2\x38\x08\x6f\x2b\xab\xe7\x89\x3d\x01\xa9\x5e\x4a\x31\xd7\x3b\xd1\x59\xc5\x51\x1a\xc9\x82\x4e\x1a\x7d\x50\x15\x39\x33\x7f\xb9\x44\x02\x3b\xc9\x32\x98\x09\x34\x84\x53\x92\x43\xc2\xd2\x85\x2c\xce\x79\x6c\xdb\xc2\x99\x45\x61\x92\xc6\xeb\x59\x1a\xc9\x75\x1a\xf3\x5a\x8a\x13\xfa\xf7\x02\x83\xf5\xda\x5f\xa9\x02\x59\x66\x7d\x10\xba\xec\xb8\xb6\xeb\x99\xf5\x22\xbe\x5d\xdf\x8b\x30\x4d\x4c\xc6\xe7\xff\x84\xc6\xec\xc7\x20\x7b\x85\xc3\x14\x8d\xd9\x30\x23\x5e\xd6\xa5\x18\x8d\xd9\xb7\x4b\xff\x7e\x25\xe6\x58\xd7\xf0\xa7\xe7\x4e\x2a\x92\x14\xc5\x78\xdc\x3c\x56\xb6\x89\x82\x79\xcb\xdd\xed\x23\x96\xfd\x7c\x5b\xa4\xe7\x2a\xcd\xb2\xf4\xa2\xd8\x7d\xb6\x8d\xd2\x62\xff\xe0\x93\x82\xd
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194JsBytes() ([]byte, error) {
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
return bindataRead(
|
2021-06-04 20:45:52 +00:00
|
|
|
_web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194Js,
|
|
|
|
"web_ui/assets/vendor-5d7aec9d1a955c335f43bf62e400f194.js",
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
func web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194Js() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194JsBytes()
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/vendor-5d7aec9d1a955c335f43bf62e400f194.js", size: 1951136, mode: os.FileMode(420), modTime: time.Unix(1622839524, 0)}
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-02-01 15:16:04 +00:00
|
|
|
var _web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\xfb\x72\xe2\xb8\xd2\x7f\x15\xbe\x9a\xda\xda\x9d\x9a\x10\xcc\x2d\x04\xbb\xf6\xab\x15\x97\x64\x20\x84\x04\x12\x92\x90\xff\x64\x5b\xd8\x5a\xdb\x92\x47\x96\x31\x09\x95\x77\x3f\x25\xf9\x12\x0c\x22\x99\x39\xb5\xa7\xce\xa9\xa9\x0c\xd0\x6a\xb5\xba\x7f\xdd\xea\x8b\x4e\xfb\xd4\x46\xd7\x98\x31\xca\xb6\x2b\x4a\x78\x75\x05\x03\xec\xbf\xe8\x01\x25\x34\x0a\xa1\x85\x0c\x17\x61\xc7\xe5\x7a\x53\xd3\xc2\x8d\x61\x51\x9f\x32\xfd\x8b\xa6\x69\x6f\x3b\x3b\xab\x3e\x26\x28\xda\x86\xd0\xb6\x31\x71\xf4\x56\xb8\xa9\x94\xd6\x2b\x21\x43\xc5\xaa\x56\x69\x85\x9b\xd2\x6e\x27\xe6\x1c\xb1\xea\x0a\xfb\x3e\x62\x27\xbb\x2b\x91\xc5\xa8\xef\x9b\x30\x5f\xdc\x9a\xd0\xf2\x1c\x46\x63\x62\x57\x33\x55\x56\xab\x95\x42\x58\xb4\x35\x29\xb3\x11\xab\x32\xa9\x7c\x3d\xdc\x54\x22\xea\x63\xbb\xf2\xc5\xb6\x6d\x43\x21\xa5\x23\xfe\x19\x89\x8b\x39\xaa\x4a\xbb\x75\x42\x13\x06\xc3\x03\x33\x49\x1c\x98\x88\xed\x58\xd3\x14\xd6\x56\xda\xe1\xc6\x08\x30\xa9\x26\xd8\xe6\xae\xde\x10\x58\x71\xb4\xe1\x55\xe8\x63\x87\xe8\x52\x8b\x1c\xbc\x6e\xb7\xfb\xd9\x41\xa9\x11\x01\x64\x1e\x62\xdb\x23\x98\xef\xf2\x54\xa3\xd8\xe4\x3e\xda\xbe\x9f\x50\x62\xb5\x62\x16\x51\x96\x43\xe2\xa3\x55\x09\x11\x4d\xd3\x8c\x12\x5a\x84\x12\x64\xa4\x86\x94\xdd\x68\xe3\x75\xc9\x3b\xc8\xa2\xc4\x86\xec\xe5\x43\xf9\x11\xf6\xd7\x88\xbd\x9d\x5a\x41\x75\x05\x79\xa6\x4b\x45\xa1\x5e\x7a\x22\x8c\x39\xcd\xd4\xd1\xb5\xff\xc3\x41\x48\x19\x87\x84\xef\xf8\x4c\xff\xd2\x41\x9d\x7d\x79\x7b\xaa\xa5\xd4\x68\xfb\x5a\xc5\xc4\x46\x1b\xbd\x2e\xf9\x21\xc1\x01\xe4\x68\x67\x9f\xea\x50\xa3\x9a\x20\xd3\xc3\x3c\x63\xc7\x94\xe8\xa6\x8f\x89\x57\xa9\x9f\x6a\x67\x51\x25\xe2\x28\x8c\xfe\xa8\x7f\xad\x60\xb2\xc2\x04\x73\x64\xfc\x2c\xdf\x61\xd8\x09\x43\xfe\xca\x8f\xf3\xd0\xcb\x8a\xc1\x00\x45\x15\x29\x66\xdb\xd6\x7e\x3b\x8c\x77\xce\x20\x89\x42\xc8\x10\xe1\x6f\x6f\x7f\xfd\xfa\x16\x01\x03\x87\xe6\xd6\xc6\x51\xe8\xc3\x17\x1d\x13\x11\xd4\x55\xd3\xa7\x96\x97\x46\xac\x8d\x2c\xca\x52\x73\x30\x71\x11\xc3\xbc\x14\x4b\x2c\x96\xf7\x50\x1d\x4a\x96\x65\x19\x21\x8d\xb0\xdc\x0d\xcd\x88\xfa\x31\x47\xf2\xcc\xa8\x6a\xa3\x15\x8c\x7d\x5e\x11\xbf\x5c\x04\xed\xdd\xc8\x5e\x29\x78\x7e\xc4\x94\x17\x11\xad\x75\x35\xc9\x42\x90\x03\x39\x5e\x17\x74\xbb\xd5\x92\xf4\xf4\xd0\x77\x7a\xa3\xdb\x78\x7b\x3f\xe8\x44\x4a\xe7\x8c\x12\x27\x4d\x72\x49\x9a\xd3\x3a\x5a\x2a\x15\x05\x29\x39\xe2\x2f\x3e\xd2\x31\x87\x3e\xb6\xe4\x82\x04\x75\x1f\x95\x98\xd8\x88\x09\xd4\xde\x32\xb1\xd8\x43\xdc\x65\x34\x76\xdc\x03\x5e\x09\x6e\xb6\xa8\xb0\xd1\x43\x2f\x09\x65\x76\xae\x75\x47\x3b\x57\x30\x41\x4e\x83\xc2\xae\x7a\x57\xc1\x91\xe5\xa4\x8c\xa7\x7e\xd6\x52\xf0\xd8\x68\xf5\x31\xde\x6b\xc8\x30\x34\x7d\x54\x6d\x14\x7c\x6d\xf8\x11\x5f\xb3\xe0\x3b\x6f\x2b\xf8\x2c\x1a\x04\x88\xf0\x9c\x09\xb6\x35\x05\x93\x40\x8f\x38\x05\x4f\xbd\x7e\x94\xe7\x5d\xad\x95\x52\x52\x80\x38\x3c\x51\x45\x11\xf4\xf1\x0a\xbf\xa3\xd3\x6e\xab\x94\x35\x63\xec\x73\x4c\x72\xa6\xa6\xa6\xb2\xdc\x64\xd0\xf2\x10\x7f\xcf\xb2\x1d\x05\x13\x87\x85\x39\xf5\x8e\x4a\x51\xc8\x39\xc3\x66\xbc\x13\xdb\x9a\xa5\xba\x22\xac\x94\xcd\x0f\xd6\x65\x68\xee\x49\xc0\x64\x0d\x7d\x6c\x5b\x2e\x64\x0a\x28\x90\x2c\xf2\xe9\x16\x86\xec\x72\x85\xa0\x81\xb8\x42\xc4\xc9\x6f\xb6\x49\x39\xa7\x81\xde\xc8\xef\xf6\x5b\x39\xc1\x56\xa2\x10\x92\x5d\x01\x01\xe4\x96\x8b\x89\xb3\x87\x91\xb6\xd2\x3e\xdb\x49\x28\x39\xb2\x79\xd5\x68\xbc\xa9\xce\x10\x10\xef\x94\x03\xe6\x98\xf0\x8f\x46\xbb\x7d\x52\x6f\x6b\x27\xda\xc9\x69\xf3\x6b\x69\x17\xb4\x44\x62\x48\xb3\x5c\xb1\x69\x77\xff\x17\x74\xbe\x6a\x94\xbb\x88\x6d\x91\xc4\x18\xf2\x65\xc2\x31\xe8\x1a\xb1\x95\x4f\x13\xdd\xc5\xb6\x8d\x48\xa9\x1e\xed\xf7\x20\x69\xdb\xb2\x2d\xb6\xa4\xbf\x77\x8a\x59\x00\x99\x83\x49\x0e\x72\xb5\x29\xda\x85\x8c\x96\x96\xe0\x94\x94\x35\x19\x39\x9f\xa4\x65\xed\x58\x5d\xd3\x7e\x33\x68\xcc\x85\x5d\xba\x66\x1c\xe8\x5b\xd6\x07\xbf\x22\x95\x4d\xa5\xaa\x2f\xa4\x67\x79\x7c\xb7\x62\xfc\x5c\xa3\xe6\x16\x9d\xda\x87\xfd\x5b\x69\x71\x5d\xac\x6e\x0f\x6a\x86\x91\x17\xee\x33\x23\xaf\x54\xa2\x2b\x79\x3b\xb2\x3f\xb5\x40\x33\x38\x0d\x75\xad\x70\x55\x75\x93\x3b\xab\xa0\xbc\x64\xbe\x78\x53\x2b\xbf\xcd\x90\xd6\x0c\x59\xd9\xb4\xdd\x8d\xfb\xa2\x36\x
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
|
2021-02-01 15:16:04 +00:00
|
|
|
func web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823CssBytes() ([]byte, error) {
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
return bindataRead(
|
2021-02-01 15:16:04 +00:00
|
|
|
_web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823Css,
|
|
|
|
"web_ui/assets/vendor-9ea7d400c0cec7682e8871df14073823.css",
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-02-01 15:16:04 +00:00
|
|
|
func web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823Css() (*asset, error) {
|
|
|
|
bytes, err := web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823CssBytes()
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/assets/vendor-9ea7d400c0cec7682e8871df14073823.css", size: 8078, mode: os.FileMode(420), modTime: time.Unix(1622839524, 0)}
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
var _web_uiIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x7b\xdf\x73\x5b\xb7\x92\xe6\x7b\xfe\x8a\x33\xda\xf2\xd3\x4a\x10\xfa\x27\x1a\x77\xad\x54\x29\x8c\x9c\x78\x4a\xfe\xb1\xb6\x33\x3b\xb9\x2f\x2a\x8a\x3c\xb2\x78\x57\x22\xb5\x24\x6d\xc7\x93\xca\xff\xbe\xd5\x00\x0e\x75\x44\xe9\x7a\x92\xa9\xdd\x17\x47\xf9\x88\xd3\x68\x74\x7f\xe8\xfe\x80\x43\x3e\xff\x97\x1f\xdf\x4c\x3e\xfc\xfa\xf6\xac\xbb\xde\xde\xde\x7c\xff\xdd\x73\xff\x4f\x77\x33\x5d\x7e\x3c\x39\xe8\x97\x07\xdd\xec\x66\xba\xd9\x9c\x1c\xf4\xb7\x97\xfd\xfa\xe8\x66\x35\x9d\x2f\x96\x1f\x0f\xbe\xff\xae\xeb\x9e\x5f\xf7\xd3\xb9\xff\xd1\x75\xcf\x6f\xfb\xed\xb4\x9b\x5d\x4f\xd7\x9b\x7e\x7b\x72\xf0\x69\x7b\x75\x64\x07\xe3\x8f\xae\xb7\xdb\xbb\xa3\xfe\xff\x7c\x5a\x7c\x3e\x39\xf8\xf7\xa3\x5f\x4e\x8f\x26\xab\xdb\xbb\xe9\x76\x71\x79\xd3\x1f\x74\xb3\xd5\x72\xdb\x2f\xb7\x27\x07\x2f\xcf\x4e\xfa\xf9\xc7\x7e\x78\x72\xbb\xd8\xde\xf4\xdf\x4f\x56\xcb\xcd\xa7\x9b\xee\xf2\x6b\xf7\xf3\x74\x73\xbd\x98\xac\xd6\x77\xcf\x8f\xeb\x47\xa3\x09\x96\xd3\xdb\xfe\xe4\x60\xde\x6f\x66\xeb\xc5\xdd\x76\xb1\x5a\x8e\xcc\x1e\x3c\x1e\xf8\x79\xd1\x7f\xb9\x5b\xad\xb7\xa3\x51\x5f\x16\xf3\xed\xf5\xc9\xbc\xff\xbc\x98\xf5\x47\xe5\x7f\x0e\xbb\xc5\x72\xb1\x5d\x4c\x6f\x8e\x36\xb3\xe9\x4d\x7f\x02\xcd\x50\xfd\x67\x6c\x6e\x56\x7c\x3c\xfa\xb4\x38\x9e\xad\x96\x57\x8b\x8f\xc7\xfd\xf2\xf3\x62\xbd\x5a\xde\xf6\xcb\xf1\x14\xcf\xd2\x0f\xcf\x10\x6f\x57\xf3\x4f\x37\xfd\xdb\x75\x7f\xb5\xf8\xed\x19\xe2\x33\x3a\x7d\x86\xb8\xb3\xe0\x08\x4e\x9e\x21\x8e\x4c\xec\x46\xdd\xad\x57\xf3\x4f\x33\x5f\xde\x6e\xd8\x7a\xb5\xda\xfe\xf2\xee\x7c\x37\xe4\x19\xbe\x70\x23\x2f\x76\x03\x6e\x56\xb3\xa9\x3f\xf1\xe1\xeb\x5d\xbf\x1b\x35\xfd\xb4\x5d\xed\x46\x6c\x57\xeb\xc5\xa2\x7d\x94\x7e\x78\x96\x7e\xac\xf0\x99\x67\xfc\xec\xf5\xbf\xdd\x7f\x82\xf8\xe2\xec\xf4\xc3\x2f\xef\xce\xde\x3f\x31\xfa\xdf\x3f\x9c\xbd\xfe\xf1\xe2\xed\xbb\x37\x1f\xde\x38\x9b\xde\x8f\x1f\xfb\x71\xba\x6d\x73\x5f\x4d\x6f\x36\xfd\xee\xa1\x8b\xd3\xb7\x6f\xcf\x5f\x4e\x4e\x3f\xbc\x7c\xf3\xfa\xe2\xc3\xd9\xab\xb7\xe7\xa7\x1f\xce\x2e\xfe\xd7\xbb\xd3\xb7\x6f\xcf\xde\x8d\x1f\xa8\xa3\x7f\x3c\x7b\x71\xfa\xcb\xf9\x87\x8b\xd3\xf7\xbf\xbe\x9e\x5c\xbc\xf9\xe1\xfd\xd9\xbb\x7f\x3b\x7b\xd7\x66\xda\xae\x3f\x0d\xe3\xfe\xf5\x7f\xfe\x72\xf6\xee\xd7\x8b\x97\xaf\x3f\x9c\xfd\xf4\xae\x18\x7f\x6c\x6b\x37\xdb\x9b\xd7\xe7\xbf\x5e\xfc\x74\xfe\xf2\xd5\xab\xb3\x77\x17\x93\x37\xaf\xde\xbe\x79\x7d\xf6\xfa\xc3\xd8\xe8\xe0\xed\xe9\xdb\xb7\xe3\x45\x79\xea\xbf\x91\xbf\xcf\xfd\x7a\xd3\x12\x55\x46\x60\xc0\x10\x9f\xe1\x0f\x98\xaf\x58\x41\x66\xfe\xc1\x60\x79\xdd\x6f\x16\xff\xd1\xbf\xef\xd7\x4e\xbe\x1f\xfb\xab\xe9\xa7\x9b\xed\x66\x3c\xd7\x62\xf9\x8f\xbe\xe4\xfd\xc5\x74\xe6\xe9\xea\x87\x4f\xc5\x3f\x75\x36\xef\xe6\x75\xb6\xad\x57\x37\x37\xfd\x7a\x04\xdd\xde\xad\x96\x8d\x48\xf2\xe3\x6e\xda\xc9\x9b\xd7\xef\x7f\x39\xbf\x98\xbc\x79\xfb\xeb\xbb\x97\x3f\xfd\xfc\xe1\xe2\xd7\xb3\xd3\x77\xf7\x0e\x47\x84\x9d\x89\x36\xf4\xa7\x97\x1f\x2e\xde\xff\x7c\x7a\x3f\xa6\x2d\x86\xf6\x07\x7a\x5e\x76\x71\x7f\x86\x08\x21\x07\xdd\x1f\xf4\xc3\xcb\xd7\xa7\xef\x7e\xbd\x70\xba\xec\x06\xae\x36\x9b\xfd\x61\xbf\xbc\xbc\xf8\xf1\xe5\xfb\xd3\x1f\xce\xcf\x2e\xde\x9d\x9d\x9e\x7f\x78\xf9\xea\xec\x51\x3e\x1f\x0f\x3d\x7d\x3d\xf9\xf9\xcd\xbb\x8b\xf7\x67\xe7\x67\x93\x27\x29\xb0\xba\xeb\xd7\xd3\xed\x6a\x3d\x29\x5b\xf6\x31\xa3\x9b\xc9\x9f\xdf\xbc\x3a\xbb\x18\xef\x30\xaf\x65\x9b\xf2\xe7\x8b\x67\xf8\xe2\xcb\x97\x2f\xa1\x26\x3f\x2c\x56\xfb\x9e\xbf\x3b\x7b\xfb\xe6\xe2\xe5\xfb\xf7\xbf\x9c\xbd\xff\x86\x89\x8f\x8b\xed\xf5\xa7\xcb\x30\x5b\xdd\x3e\xc3\x17\xd7\x5e\xe4\x66\xab\xf5\xdd\x33\x7c\x51\xed\x3e\xc3\x17\x8b\xcd\xe6\x93\xa7\xfc\xc5\xd2\x13\xfd\x62\x76\xbd\x5a\x6d\xfa\xfd\xc9\x7e\x7c\x33\xf9\xd6\x2c\x7b\x8e\xbe\x98\xaf\x66\x8f\x22\x5d\x4c\x9c\x9f\x9d\xbe\x7b\xfd\x0d\x43\x37\xfd\x74\xbd\x0c\x3b\x3f\xab\xdf\x4f\xd8\x39\x7d\xfb\xf2\x2f\xb8\x33\xbd\x5b\xec\x5b\xb9\xe7\xe5\xb7\xcd\x3c\xed\xca\xe5\x7a\xf5\x65\xd3\xaf\x17\x57\x5f\xc7\x1b\x69\xdb\x6f\x86\x9d\xf5\x60\x6f\xf7\xbf\x79\x3b\x38\xbd\xbb\xbb\x59\xd4\x72\xf9\xd3\xcd\xea\x72\x7a\xf3\xb0\x68\x1d\x74\xc7\xdf\x7f\xe7\x9d\xef\x5f\x8e\x8e\xba\x87\x44\xff\x5b\x57\x18\xde\x1d\x1d\x95\xd6\x78\xb3\x58\xfe\xef\x6e\xdd\xdf\x9c\x1c\x2c
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiIndexHtmlBytes() ([]byte, error) {
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
return bindataRead(
|
2019-04-12 15:02:27 +00:00
|
|
|
_web_uiIndexHtml,
|
|
|
|
"web_ui/index.html",
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiIndexHtml() (*asset, error) {
|
|
|
|
bytes, err := web_uiIndexHtmlBytes()
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/index.html", size: 15449, mode: os.FileMode(420), modTime: time.Unix(1622839524, 0)}
|
2020-05-14 14:33:09 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _web_uiOidcCallback = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcd\x6a\xc3\x30\x10\x84\xef\x79\x8a\x6d\x2e\x71\xa0\xb5\xaf\x85\xc8\xb9\xb8\x2e\x94\x40\x7f\xfc\x73\xc8\xc9\x08\x7b\x6b\x0b\x64\x29\x95\xd6\x09\xa5\xf4\xdd\x8b\x91\xdc\xa6\xc4\xe4\x24\x2d\xa3\xf9\x76\x56\xcb\x6e\x1e\x5e\x92\x62\xff\x9a\x42\x47\xbd\xdc\x2e\x98\x3b\x00\x58\x87\xbc\x19\x2f\x00\xac\x47\xe2\x50\x77\xdc\x58\xa4\x78\x59\x16\x8f\x77\xf7\x4b\x2f\x91\x20\x89\xdb\x44\x2b\x3b\x48\x16\xb9\xca\x29\xb6\x36\xe2\x40\xae\x00\x38\x72\x03\x49\x99\x65\xe9\x73\x51\x65\xe9\x5b\x99\xe6\x45\xb5\x4b\xf7\x10\xc3\xaa\xaa\x48\x1b\x21\x2a\x83\x1f\x03\x5a\x5a\x6d\xce\x2c\x07\x54\x8d\x50\x6d\xe6\xa4\x1d\x7e\x42\x0c\x27\xa1\x1a\x7d\x0a\xa5\xae\xb9\xcc\x49\x1b\xde\x62\xd8\x22\x3d\x11\xf6\xc1\x4c\x8b\xf5\x66\xe1\x81\xe2\x1d\x82\x0b\xe0\x1a\xbe\xbc\x0c\xb3\x64\x83\xbd\x3e\xe2\x15\xf8\x64\x1e\xe3\x0e\x46\xfe\x0f\x48\x42\xab\x90\x74\x4e\x46\xa8\x36\x38\x7b\x3d\xd7\xca\xfa\x21\x2e\x32\xde\x8e\xe0\x5f\xf3\xf7\x34\x8f\x67\xd4\x52\x5b\x9c\xd8\x2c\xfa\xfb\x77\x16\xb9\x1d\xb2\xc8\x2d\xf5\x27\x00\x00\xff\xff\xd4\xee\xca\xe3\xec\x01\x00\x00")
|
|
|
|
|
|
|
|
func web_uiOidcCallbackBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_web_uiOidcCallback,
|
|
|
|
"web_ui/oidc/callback",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func web_uiOidcCallback() (*asset, error) {
|
|
|
|
bytes, err := web_uiOidcCallbackBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/oidc/callback", size: 492, mode: os.FileMode(420), modTime: time.Unix(1622839406, 0)}
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-10-15 14:49:01 +00:00
|
|
|
var _web_uiRobotsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x52\x56\xc8\x28\x29\x29\xb0\xd2\xd7\x2f\x2f\x2f\xd7\x2b\xca\x4f\xca\x2f\x29\x2e\xa9\x28\xd1\xcb\x2f\x4a\xe7\x0a\x2d\x4e\x2d\xd2\x4d\x4c\x4f\xcd\x2b\xb1\x52\xd0\xe2\x72\xc9\x2c\x4e\xcc\xc9\xc9\x2f\xb7\x52\xd0\xe7\x02\x04\x00\x00\xff\xff\x62\x07\x43\x8a\x35\x00\x00\x00")
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiRobotsTxtBytes() ([]byte, error) {
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
return bindataRead(
|
2019-04-12 15:02:27 +00:00
|
|
|
_web_uiRobotsTxt,
|
|
|
|
"web_ui/robots.txt",
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:02:27 +00:00
|
|
|
func web_uiRobotsTxt() (*asset, error) {
|
|
|
|
bytes, err := web_uiRobotsTxtBytes()
|
UI V2 (#4086)
* Move settings to use the same service/route API as the rest of the app
* Put some ideas down for unit testing on adapters
* Favour `Model` over `Entity`
* Move away from using `reopen` to using Mixins
* Amend messages, comment/document some usage
* Make sure the returns are consistent in normalizePayload, also
Add some todo's in to remind me to think consider this further at a
later date. For example, is normalizePayload to be a hook or an
overridable method
* Start stripping back the HTML to semantics
* Use a variable rather than chaining
* Remove unused helpers
* Start picking through the new designs, start with listing pages
* First draft HTML for every page
* Making progress on the CSS
* Keep plugging away at the catalog css
* Looking at scrolling
* Wire up filtering
* Sort out filter counting, more or less done a few outstanding
* Start knocking the forms into shape
* Add in codemirror
* Keep moving forwards with the form like layouts
* Start looking at ACL editing page, add footer in
* Pull the filters back in, look at an autoresizer for scroll views
* First draft toggles
* 2nd draft healthcheck icons
* Tweak node healthcheck icons
* Looking at healthcheck detail icons
* Tweak the filter-bar and add selections to the in content tabs
* Add ACL create, pill-like acl type highlight
* Tweaking the main nav some more
* Working on the filter-bar and freetext-filter
* Masonry layout
* Stick with `checks` instead of healthy/unhealthy
* Fix up the filter numbers/counts
* Use the thead for a measure
* First draft tomography back in
* First draft DC dropdown
* Add a temporary create buttong to kv's
* Move KV and ACL to use a create page
* Move tags
* Run through old tests
* Injectable server
* Start adding test attributes
* Add some page objects
* More test attributes and pages
* Acl filter objects
* Add a page.. page object
* Clickable items in lists
* Add rest/spread babel plugin, remove mirage for now
* Add fix for ember-collection
* Keep track of acl filters
* ember-cli-page-object
* ember-test-selectors
* ui: update version of ui compile deps
* Update static assets
* Centralize radiogroup helper
* Rejig KV's and begin to clean it up
* Work around lack of Tags for the moment..
* Some little css tweaks and start to remove possibles
* Working on the dc page and incidentals
1. Sort the datacenter-picker list
2. Add a selected state to the datacenter-picker
3. Make dc an {Name: dc}
4. Add an env helper to get to 'env vars' from within templates
* Click outside stuff for the datacenter-picker, is-active on nav
* Make sure the dropdown CTA can be active
* Bump ember add pluralize helper
* Little try at sass based custom queries
* Rejig tablular collection so it deals with resizing, actions
1. WIP: start building actions dropdowns
2. Move tabular collection to deal with resizing to rule out differences
* First draft actions dropdowns
* Add ports, selectable IP's
* Flash messages, plus general cleanup/consistency
1. Add ember-cli-flash for flash messages
2. Move everything to get() instead of item.get
3. Spotted a few things that weren't consistent
* DOn't go lower than zero
* First draft vertical menu
* Missed a get, tweak dropmenu tick
* Big cleanup
1. this.get(), this.set() > get(), set()
2. assign > {...{}, ...{}}
3. Seperator > separator
* WIP: settings
* Moved things into a ui-v2 folder
* Decide on a way to do the settings page whilst maintaining the url + dc's
* Start some error pages
* Remove base64 polyfill
* Tie in settings, fix atob bug, tweak layout css
* Centralize confirmations into a component
* Allow switching between the old and new UI with the CONSUL_UI_BETA env var
Currently all the assets are packaged into a single AssetFS and a prefix is configured to switch between the two.
* Attempt at some updates to integrate the v2 ui build into the main infrastructure
* Add redirect to index.html for unknown paths
* Allow redictor to /index.html for new ui when using -ui-dir
* Take ACLs to the correct place on save
* First pass breadcrumbs
* Remove datacenter selector on the index page
* Tweak overall layout
* Make buttons 'resets'
* Tweak last DC stuff
* Validations plus kv keyname viewing tweaks
* Pull sessions back in
* Tweak the env vars to be more reusable
* Move isAnon to the view
* No items and disabled acl css
* ACL and KV details
1. Unauthorized page
2. Make sure the ACL is always selected when it needs it
3. Check record deletion with a changeset
* Few more acl tweaks/corrections
* Add no items view to node > services
* Tags for node > services
* Make sure we have tags
* Fix up the labels on the tomography graph
* Add node link (agent) to kv sessions
* Duplicate up `create` for KV 'root creation'
* Safety check for health checks
* Fix up the grids
* Truncate td a's, fix kv columns
* Watch for spaces in KV id's
* Move actions to their own mixins for now at least
* Link reset to settings incase I want to type it in
* Tweak error page
* Cleanup healthcheck icons in service listing
* Centralize errors and make getting back easier
* Nice numbers
* Compact buttons
* Some incidental css cleanups
* Use 'Key / Value' for root
* Tweak tomography layout
* Fix single healthcheck unhealthy resource
* Get loading screen ready
* Fix healthy healthcheck tick
* Everything in header starts white
* First draft loader
* Refactor the entire backend to use proper unique keys, plus..
1. Make unique keys form dc + slug (uid)
2. Fun with errors...
* Tweak header colors
* Add noopener noreferrer to external links
* Add supers to setupController
* Implement cloning, using ember-data...
* Move the more expensive down the switch order
* First draft empty record cleanup..
* Add the cusomt store test
* Temporarily use the htmlSafe prototype to remove the console warning
* Encode hashes in urls
* Go back to using title for errors for now
* Start removing unused bulma
* Lint
* WIP: Start looking at failing tests
* Remove single redirect test
* Finish off error message styling
* Add full ember-data cache invalidation to avoid stale data...
* Add uncolorable warning icons
* More info icon
* Rearrange single service, plus tag printing
* Logo
* No quotes
* Add a simple startup logo
* Tweak healthcheck statuses
* Fix border-color for healthchecks
* Tweak node tabs
* Catch 401 ACL errors and rethrow with the provided error message
* Remove old acl unauth and error routes
* Missed a super
* Make 'All' refer to number of checks, not services
* Remove ember-resizer, add autoprefixer
* Don't show tomography if its not worth it, viewify it more also
* Little model cleanup
* Chevrons
* Find a way to reliably set the class of html from the view
* Consistent html
* Make sure session id's are visible as long as possible
* Fix single service check count
* Add filters and searchs to the query string
* Don't remember the selected tab
* Change text
* Eror tweaking
* Use chevrons on all breadcrumbs even in kv's
* Clean up a file
* Tweak some messaging
* Makesure the footer overlays whats in the page
* Tweak KV errors
* Move json toggle over to the right
* feedback-dialog along with copy buttons
* Better confirmation dialogs
* Add git sha comment
* Same title as old UI
* Allow defaults
* Make sure value is a string
* WIP: Scrolling dropdowns/confirmations
* Add to kv's
* Remove set
* First pass trace
* Better table rows
* Pull over the hashi code editor styles
* Editor tweaks
* Responsive tabs
* Add number formatting to tomography
* Review whats left todo
* Lint
* Add a coordinate ember data triplet
* Bump in a v2.0.0
* Update old tests
* Get coverage working again
* Make sure query keys are also encoded
* Don't test console.error
* Unit test some more utils
* Tweak the size of the tabular collections
* Clean up gitignore
* Fix copy button rollovers
* Get healthcheck 'icon icons' onto the text baseline
* Tweak healthcheck padding and alignment
* Make sure commas kick in in rtt, probably never get to that
* Improve vertical menu
* Tweak dropdown active state to not have a bg
* Tweak paddings
* Search entire string not just 'startsWith'
* Button states
* Most buttons have 1px border
* More button tweaks
* You can only view kv folders
* CSS cleanup reduction
* Form input states and little cleanup
* More CSS reduction
* Sort checks by importance
* Fix click outside on datacenter picker
* Make sure table th's also auto calculate properly
* Make sure `json` isn't remembered in KV editing
* Fix recursive deletion in KV's
* Centralize size
* Catch updateRecord
* Don't double envode
* model > item consistency
* Action loading and ACL tweaks
* Add settings dependencies to acl tests
* Better loading
* utf-8 base64 encode/decode
* Don't hang off a prototype for htmlSafe
* Missing base64 files...
* Get atob/btoa polyfill right
* Shadowy rollovers
* Disabled button styling for primaries
* autofocuses only onload for now
* Fix footer centering
* Beginning of 'notices'
* Remove the isLocked disabling as we are letting you do what the API does
* Don't forget the documentation link for sessions
* Updates are more likely
* Use exported constant
* Dont export redirectFS and a few other PR updates
* Remove the old bootstrap config which was used for the old UI skin
* Use curlies for multiple properties
2018-05-10 18:52:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/robots.txt", size: 53, mode: os.FileMode(420), modTime: time.Unix(1622839406, 0)}
|
2020-05-14 14:33:09 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _web_uiToriiRedirectHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x4f\x4b\xc3\x40\x10\xc5\xef\xfd\x14\x63\x2f\x4d\x41\x93\xab\xd0\x4d\x41\x6a\x04\x29\x58\xcd\x9f\x43\x4f\x61\x49\xc6\x64\x61\x93\xad\x93\x49\x8b\x88\xdf\x5d\xc2\x6e\xb4\xd2\xd0\xd3\xee\xf2\xe6\xfd\xe6\xcd\x8e\xb8\x79\xdc\x6d\xd2\xfd\x6b\x04\x35\x37\x7a\x3d\x13\xf6\x00\x10\x35\xca\x72\xb8\x00\x88\x06\x59\x42\x51\x4b\xea\x90\xc3\x79\x96\x3e\xdd\xdd\xcf\x9d\xc4\x8a\x35\xae\x53\x43\x4a\xc1\xee\xa1\xe7\x1a\x62\x2c\x15\x61\xc1\x22\xb0\x9a\xad\xeb\x0a\x52\x07\xb6\x0f\x80\xa3\x24\xd8\x64\x71\x1c\xbd\xa4\x79\x1c\xbd\x65\x51\x92\xe6\xdb\x68\x0f\x21\x2c\xf2\x9c\x07\x58\x4e\xf8\xd1\x63\xc7\x8b\xd5\x99\xe5\x80\x6d\xa9\xda\x2a\xb6\xd2\x16\x3f\x21\x84\x93\x6a\x4b\x73\xf2\xb5\x29\xa4\x4e\xd8\x90\xac\xd0\xaf\x90\x9f\x19\x1b\x6f\xa2\xc5\x72\x35\x73\x40\xf5\x0e\xde\x05\x70\x09\x5f\x4e\x86\x49\x32\x61\x63\x8e\x78\x05\x3e\x9a\x87\xb8\x3d\xe9\xff\x01\x59\x99\xd6\x67\x93\x30\xa9\xb6\xf2\xce\xaa\xa7\x5a\x75\x6e\x88\x8b\x8c\xb7\x03\xf8\xd7\xfc\x3d\xce\xe3\x18\x85\x36\x1d\x8e\x6c\x11\xfc\xfd\xbb\x08\xec\x46\x45\x60\x57\xfc\x13\x00\x00\xff\xff\xe6\x06\x7f\x8f\xfa\x01\x00\x00")
|
|
|
|
|
|
|
|
func web_uiToriiRedirectHtmlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_web_uiToriiRedirectHtml,
|
|
|
|
"web_ui/torii/redirect.html",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func web_uiToriiRedirectHtml() (*asset, error) {
|
|
|
|
bytes, err := web_uiToriiRedirectHtmlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-04 20:45:52 +00:00
|
|
|
info := bindataFileInfo{name: "web_ui/torii/redirect.html", size: 506, mode: os.FileMode(420), modTime: time.Unix(1622839524, 0)}
|
2015-11-30 19:24:39 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 Asset(name string) ([]byte, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.bytes, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustAsset is like Asset but panics when Asset would return an error.
|
|
|
|
// It simplifies safe initialization of global variables.
|
|
|
|
func MustAsset(name string) []byte {
|
|
|
|
a, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
panic("asset: Asset(" + name + "): " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetInfo loads and returns the asset info for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func AssetInfo(name string) (os.FileInfo, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.info, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetNames returns the names of the assets.
|
|
|
|
func AssetNames() []string {
|
|
|
|
names := make([]string, 0, len(_bindata))
|
|
|
|
for name := range _bindata {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
|
|
|
// _bindata is a table, holding each asset generator, mapped to its name.
|
|
|
|
var _bindata = map[string]func() (*asset, error){
|
2021-06-04 20:45:52 +00:00
|
|
|
"web_ui/assets/apple-touch-icon-01cd4680782fbb5bc02301347df9903d.png": web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPng,
|
2020-08-07 22:58:09 +00:00
|
|
|
"web_ui/assets/codemirror/mode/javascript/javascript-77218cd1268ea6df75775114ae086566.js": web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566Js,
|
|
|
|
"web_ui/assets/codemirror/mode/ruby/ruby-ea43ca3a3bdd63a52811e8464d66134b.js": web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJs,
|
|
|
|
"web_ui/assets/codemirror/mode/yaml/yaml-86bec82a0f62e7a53eef41d44a8e4727.js": web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727Js,
|
2021-06-04 20:45:52 +00:00
|
|
|
"web_ui/assets/consul-ui-00082c91bf8ec03a8cb114c3c113a550.js": web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550Js,
|
|
|
|
"web_ui/assets/consul-ui-42af648a63ae37bbcb2469597e5e8100.css": web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100Css,
|
2020-08-07 22:58:09 +00:00
|
|
|
"web_ui/assets/css.escape-851839b3ea1d0b4eb4c7089446df5e9f.js": web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJs,
|
2020-09-15 19:57:37 +00:00
|
|
|
"web_ui/assets/encoding-cdb50fbdab6d4d3fdf574dd784f77d27.js": web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27Js,
|
2019-04-12 15:02:27 +00:00
|
|
|
"web_ui/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js": web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js,
|
2020-10-09 20:31:15 +00:00
|
|
|
"web_ui/assets/favicon.ico": web_uiAssetsFaviconIco,
|
2021-06-04 20:45:52 +00:00
|
|
|
"web_ui/assets/favicon.svg": web_uiAssetsFaviconSvg,
|
2021-04-15 18:15:02 +00:00
|
|
|
"web_ui/assets/init-5910c08f0513d860b0c43c7123524fdc.js": web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJs,
|
2020-10-09 20:31:15 +00:00
|
|
|
"web_ui/assets/loading-cylon-pink.svg": web_uiAssetsLoadingCylonPinkSvg,
|
|
|
|
"web_ui/assets/metrics-providers/consul-31d7e3b0ef7c58d62338c7d7aeaaf545.js": web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545Js,
|
2020-11-17 16:28:08 +00:00
|
|
|
"web_ui/assets/metrics-providers/prometheus-5f31ba3b7ffd850fa916a0a76933e968.js": web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968Js,
|
2021-06-04 20:45:52 +00:00
|
|
|
"web_ui/assets/vendor-5d7aec9d1a955c335f43bf62e400f194.js": web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194Js,
|
2020-12-11 03:26:04 +00:00
|
|
|
"web_ui/assets/vendor-9ea7d400c0cec7682e8871df14073823.css": web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823Css,
|
2020-05-14 14:33:09 +00:00
|
|
|
"web_ui/index.html": web_uiIndexHtml,
|
|
|
|
"web_ui/oidc/callback": web_uiOidcCallback,
|
|
|
|
"web_ui/robots.txt": web_uiRobotsTxt,
|
|
|
|
"web_ui/torii/redirect.html": web_uiToriiRedirectHtml,
|
2015-11-30 19:24:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 AssetDir(name string) ([]string, error) {
|
|
|
|
node := _bintree
|
|
|
|
if len(name) != 0 {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
pathList := strings.Split(cannonicalName, "/")
|
|
|
|
for _, p := range pathList {
|
|
|
|
node = node.Children[p]
|
|
|
|
if node == nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if node.Func != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
rv := make([]string, 0, len(node.Children))
|
|
|
|
for childName := range node.Children {
|
|
|
|
rv = append(rv, childName)
|
|
|
|
}
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type bintree struct {
|
|
|
|
Func func() (*asset, error)
|
|
|
|
Children map[string]*bintree
|
|
|
|
}
|
|
|
|
|
|
|
|
var _bintree = &bintree{nil, map[string]*bintree{
|
2017-06-21 21:43:07 +00:00
|
|
|
"web_ui": &bintree{nil, map[string]*bintree{
|
2019-04-12 15:02:27 +00:00
|
|
|
"assets": &bintree{nil, map[string]*bintree{
|
2021-06-04 20:45:52 +00:00
|
|
|
"apple-touch-icon-01cd4680782fbb5bc02301347df9903d.png": &bintree{web_uiAssetsAppleTouchIcon01cd4680782fbb5bc02301347df9903dPng, map[string]*bintree{}},
|
2019-04-12 15:02:27 +00:00
|
|
|
"codemirror": &bintree{nil, map[string]*bintree{
|
|
|
|
"mode": &bintree{nil, map[string]*bintree{
|
|
|
|
"javascript": &bintree{nil, map[string]*bintree{
|
2020-08-07 22:58:09 +00:00
|
|
|
"javascript-77218cd1268ea6df75775114ae086566.js": &bintree{web_uiAssetsCodemirrorModeJavascriptJavascript77218cd1268ea6df75775114ae086566Js, map[string]*bintree{}},
|
2019-04-12 15:02:27 +00:00
|
|
|
}},
|
|
|
|
"ruby": &bintree{nil, map[string]*bintree{
|
2020-08-07 22:58:09 +00:00
|
|
|
"ruby-ea43ca3a3bdd63a52811e8464d66134b.js": &bintree{web_uiAssetsCodemirrorModeRubyRubyEa43ca3a3bdd63a52811e8464d66134bJs, map[string]*bintree{}},
|
2019-04-12 15:02:27 +00:00
|
|
|
}},
|
|
|
|
"yaml": &bintree{nil, map[string]*bintree{
|
2020-08-07 22:58:09 +00:00
|
|
|
"yaml-86bec82a0f62e7a53eef41d44a8e4727.js": &bintree{web_uiAssetsCodemirrorModeYamlYaml86bec82a0f62e7a53eef41d44a8e4727Js, map[string]*bintree{}},
|
2018-10-19 18:57:23 +00:00
|
|
|
}},
|
|
|
|
}},
|
2018-06-14 17:07:03 +00:00
|
|
|
}},
|
2021-06-04 20:45:52 +00:00
|
|
|
"consul-ui-00082c91bf8ec03a8cb114c3c113a550.js": &bintree{web_uiAssetsConsulUi00082c91bf8ec03a8cb114c3c113a550Js, map[string]*bintree{}},
|
|
|
|
"consul-ui-42af648a63ae37bbcb2469597e5e8100.css": &bintree{web_uiAssetsConsulUi42af648a63ae37bbcb2469597e5e8100Css, map[string]*bintree{}},
|
2020-08-07 22:58:09 +00:00
|
|
|
"css.escape-851839b3ea1d0b4eb4c7089446df5e9f.js": &bintree{web_uiAssetsCssEscape851839b3ea1d0b4eb4c7089446df5e9fJs, map[string]*bintree{}},
|
2020-09-15 19:57:37 +00:00
|
|
|
"encoding-cdb50fbdab6d4d3fdf574dd784f77d27.js": &bintree{web_uiAssetsEncodingCdb50fbdab6d4d3fdf574dd784f77d27Js, map[string]*bintree{}},
|
2019-04-12 15:02:27 +00:00
|
|
|
"encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js": &bintree{web_uiAssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js, map[string]*bintree{}},
|
2021-01-20 18:40:46 +00:00
|
|
|
"favicon.ico": &bintree{web_uiAssetsFaviconIco, map[string]*bintree{}},
|
2021-06-04 20:45:52 +00:00
|
|
|
"favicon.svg": &bintree{web_uiAssetsFaviconSvg, map[string]*bintree{}},
|
2021-04-15 18:15:02 +00:00
|
|
|
"init-5910c08f0513d860b0c43c7123524fdc.js": &bintree{web_uiAssetsInit5910c08f0513d860b0c43c7123524fdcJs, map[string]*bintree{}},
|
2021-01-20 18:40:46 +00:00
|
|
|
"loading-cylon-pink.svg": &bintree{web_uiAssetsLoadingCylonPinkSvg, map[string]*bintree{}},
|
2020-10-09 20:31:15 +00:00
|
|
|
"metrics-providers": &bintree{nil, map[string]*bintree{
|
|
|
|
"consul-31d7e3b0ef7c58d62338c7d7aeaaf545.js": &bintree{web_uiAssetsMetricsProvidersConsul31d7e3b0ef7c58d62338c7d7aeaaf545Js, map[string]*bintree{}},
|
2020-11-17 16:28:08 +00:00
|
|
|
"prometheus-5f31ba3b7ffd850fa916a0a76933e968.js": &bintree{web_uiAssetsMetricsProvidersPrometheus5f31ba3b7ffd850fa916a0a76933e968Js, map[string]*bintree{}},
|
2020-10-09 20:31:15 +00:00
|
|
|
}},
|
2021-06-04 20:45:52 +00:00
|
|
|
"vendor-5d7aec9d1a955c335f43bf62e400f194.js": &bintree{web_uiAssetsVendor5d7aec9d1a955c335f43bf62e400f194Js, map[string]*bintree{}},
|
|
|
|
"vendor-9ea7d400c0cec7682e8871df14073823.css": &bintree{web_uiAssetsVendor9ea7d400c0cec7682e8871df14073823Css, map[string]*bintree{}},
|
2015-11-30 19:24:39 +00:00
|
|
|
}},
|
2019-04-12 15:02:27 +00:00
|
|
|
"index.html": &bintree{web_uiIndexHtml, map[string]*bintree{}},
|
2020-05-14 14:33:09 +00:00
|
|
|
"oidc": &bintree{nil, map[string]*bintree{
|
|
|
|
"callback": &bintree{web_uiOidcCallback, map[string]*bintree{}},
|
|
|
|
}},
|
2019-04-12 15:02:27 +00:00
|
|
|
"robots.txt": &bintree{web_uiRobotsTxt, map[string]*bintree{}},
|
2020-05-14 14:33:09 +00:00
|
|
|
"torii": &bintree{nil, map[string]*bintree{
|
|
|
|
"redirect.html": &bintree{web_uiToriiRedirectHtml, map[string]*bintree{}},
|
|
|
|
}},
|
2015-11-30 19:24:39 +00:00
|
|
|
}},
|
|
|
|
}}
|
|
|
|
|
|
|
|
// RestoreAsset restores an asset under the given directory
|
|
|
|
func RestoreAsset(dir, name string) error {
|
|
|
|
data, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
info, err := AssetInfo(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RestoreAssets restores an asset under the given directory recursively
|
|
|
|
func RestoreAssets(dir, name string) error {
|
|
|
|
children, err := AssetDir(name)
|
|
|
|
// File
|
|
|
|
if err != nil {
|
|
|
|
return RestoreAsset(dir, name)
|
|
|
|
}
|
|
|
|
// Dir
|
|
|
|
for _, child := range children {
|
|
|
|
err = RestoreAssets(dir, filepath.Join(name, child))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func _filePath(dir, name string) string {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func assetFS() *assetfs.AssetFS {
|
2016-08-10 02:03:10 +00:00
|
|
|
assetInfo := func(path string) (os.FileInfo, error) {
|
|
|
|
return os.Stat(path)
|
|
|
|
}
|
2015-11-30 19:24:39 +00:00
|
|
|
for k := range _bintree.Children {
|
2016-08-10 02:03:10 +00:00
|
|
|
return &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, AssetInfo: assetInfo, Prefix: k}
|
2015-11-30 19:24:39 +00:00
|
|
|
}
|
|
|
|
panic("unreachable")
|
|
|
|
}
|