From 481c2574a6d63855e53f1012acf5ae49e20888fb Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 06:38:53 +0500 Subject: [PATCH 01/42] Updated build script, and addded environment option for projects --- README.md | 10 +++++++++- build.sh | 6 ++---- cycle.go | 10 +++++----- exec.go | 7 ++++++- project.go | 2 ++ 5 files changed, 24 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3350abb..c4bf67c 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,17 @@ You'll setup a project which will need the following information: 5. Path to the release file 6. Script to set release name / version +An optional set of environment strings can be set to define the environment in which the scripts run. +``` +"environment": [ +"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/go/bin", +"GOPATH=@dir" +] +``` + Projects will be defined in a project.json file for now. I may add a web interface later. -@dir in any of the script strings will be replaced with an absolute path to the current working directory of the specific version being worked on. +@dir in any of the script strings or environment entries will be replaced with an absolute path to the current working directory of the specific version being worked on. ``` sh ./build.sh @dir ``` diff --git a/build.sh b/build.sh index 4616cfc..3da48b2 100644 --- a/build.sh +++ b/build.sh @@ -2,10 +2,8 @@ dir=$1 -export GOPATH=$dir - -echo working dir: $dir - go get -u git.townsourced.com/townsourced/ironsmith +cd $dir/src/git.townsourced.com/townsourced/ironsmith + go-bindata web/... && go build -a -v -o ironsmith diff --git a/cycle.go b/cycle.go index 0fc3aac..cfb975a 100644 --- a/cycle.go +++ b/cycle.go @@ -94,13 +94,13 @@ func (p *Project) fetch() { } //fetch project - fetchResult, err := runCmd(p.Fetch, tempDir) + fetchResult, err := runCmd(p.Fetch, tempDir, p.Environment) if p.errHandled(err) { return } // fetched succesfully, determine version - version, err := runCmd(p.Version, tempDir) + version, err := runCmd(p.Version, tempDir, p.Environment) if p.errHandled(err) { return @@ -152,7 +152,7 @@ func (p *Project) build() { return } - output, err := runCmd(p.Build, p.workingDir()) + output, err := runCmd(p.Build, p.workingDir(), p.Environment) if p.errHandled(err) { return @@ -173,7 +173,7 @@ func (p *Project) test() { if p.Test == "" { return } - output, err := runCmd(p.Test, p.workingDir()) + output, err := runCmd(p.Test, p.workingDir(), p.Environment) if p.errHandled(err) { return @@ -195,7 +195,7 @@ func (p *Project) release() { return } - output, err := runCmd(p.Release, p.workingDir()) + output, err := runCmd(p.Release, p.workingDir(), p.Environment) if p.errHandled(err) { return diff --git a/exec.go b/exec.go index 6399a6d..ebe5a31 100644 --- a/exec.go +++ b/exec.go @@ -10,9 +10,13 @@ import ( "strings" ) -func runCmd(cmd, dir string) ([]byte, error) { +func runCmd(cmd, dir string, env []string) ([]byte, error) { s := strings.Fields(strings.Replace(cmd, "@dir", dir, -1)) + for i := range env { + env[i] = strings.Replace(env[i], "@dir", dir, -1) + } + var args []string if len(s) > 1 { @@ -22,6 +26,7 @@ func runCmd(cmd, dir string) ([]byte, error) { ec := exec.Command(s[0], args...) ec.Dir = dir + ec.Env = env vlog("Executing command: %s in dir %s\n", cmd, dir) diff --git a/project.go b/project.go index e3a7596..c124c28 100644 --- a/project.go +++ b/project.go @@ -48,6 +48,8 @@ The project lifecycle goes like this, each step calling the next if successful type Project struct { Name string `json:"name"` // name of the project + Environment []string `json:"environment"` // Environment for each of the scripts below, if empty will use the current processes environment + Fetch string `json:"fetch"` //Script to fetch the latest project code into the current directory Build string `json:"build"` //Script to build the latest project code Test string `json:"test"` //Script to test the latest project code From cf681a83f5a4a28c7f806eee1e61e80355ac728e Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 18:38:53 +0500 Subject: [PATCH 02/42] Updated build script, and addded environment option for projects --- README.md | 10 +++++++++- build.sh | 6 ++---- cycle.go | 10 +++++----- exec.go | 7 ++++++- project.go | 2 ++ 5 files changed, 24 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3350abb..c4bf67c 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,17 @@ You'll setup a project which will need the following information: 5. Path to the release file 6. Script to set release name / version +An optional set of environment strings can be set to define the environment in which the scripts run. +``` +"environment": [ +"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/go/bin", +"GOPATH=@dir" +] +``` + Projects will be defined in a project.json file for now. I may add a web interface later. -@dir in any of the script strings will be replaced with an absolute path to the current working directory of the specific version being worked on. +@dir in any of the script strings or environment entries will be replaced with an absolute path to the current working directory of the specific version being worked on. ``` sh ./build.sh @dir ``` diff --git a/build.sh b/build.sh index 4616cfc..3da48b2 100644 --- a/build.sh +++ b/build.sh @@ -2,10 +2,8 @@ dir=$1 -export GOPATH=$dir - -echo working dir: $dir - go get -u git.townsourced.com/townsourced/ironsmith +cd $dir/src/git.townsourced.com/townsourced/ironsmith + go-bindata web/... && go build -a -v -o ironsmith diff --git a/cycle.go b/cycle.go index 0fc3aac..cfb975a 100644 --- a/cycle.go +++ b/cycle.go @@ -94,13 +94,13 @@ func (p *Project) fetch() { } //fetch project - fetchResult, err := runCmd(p.Fetch, tempDir) + fetchResult, err := runCmd(p.Fetch, tempDir, p.Environment) if p.errHandled(err) { return } // fetched succesfully, determine version - version, err := runCmd(p.Version, tempDir) + version, err := runCmd(p.Version, tempDir, p.Environment) if p.errHandled(err) { return @@ -152,7 +152,7 @@ func (p *Project) build() { return } - output, err := runCmd(p.Build, p.workingDir()) + output, err := runCmd(p.Build, p.workingDir(), p.Environment) if p.errHandled(err) { return @@ -173,7 +173,7 @@ func (p *Project) test() { if p.Test == "" { return } - output, err := runCmd(p.Test, p.workingDir()) + output, err := runCmd(p.Test, p.workingDir(), p.Environment) if p.errHandled(err) { return @@ -195,7 +195,7 @@ func (p *Project) release() { return } - output, err := runCmd(p.Release, p.workingDir()) + output, err := runCmd(p.Release, p.workingDir(), p.Environment) if p.errHandled(err) { return diff --git a/exec.go b/exec.go index 6399a6d..ebe5a31 100644 --- a/exec.go +++ b/exec.go @@ -10,9 +10,13 @@ import ( "strings" ) -func runCmd(cmd, dir string) ([]byte, error) { +func runCmd(cmd, dir string, env []string) ([]byte, error) { s := strings.Fields(strings.Replace(cmd, "@dir", dir, -1)) + for i := range env { + env[i] = strings.Replace(env[i], "@dir", dir, -1) + } + var args []string if len(s) > 1 { @@ -22,6 +26,7 @@ func runCmd(cmd, dir string) ([]byte, error) { ec := exec.Command(s[0], args...) ec.Dir = dir + ec.Env = env vlog("Executing command: %s in dir %s\n", cmd, dir) diff --git a/project.go b/project.go index e3a7596..c124c28 100644 --- a/project.go +++ b/project.go @@ -48,6 +48,8 @@ The project lifecycle goes like this, each step calling the next if successful type Project struct { Name string `json:"name"` // name of the project + Environment []string `json:"environment"` // Environment for each of the scripts below, if empty will use the current processes environment + Fetch string `json:"fetch"` //Script to fetch the latest project code into the current directory Build string `json:"build"` //Script to build the latest project code Test string `json:"test"` //Script to test the latest project code From b1ee0c640efc20ee364f43d1469f7acaff01f78e Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:15:53 +0000 Subject: [PATCH 03/42] Fixed issue with environment not getting set in projects --- project.go | 1 + 1 file changed, 1 insertion(+) diff --git a/project.go b/project.go index c124c28..df3e824 100644 --- a/project.go +++ b/project.go @@ -275,6 +275,7 @@ func (p *Project) setData(new *Project) { defer p.Unlock() p.Name = new.Name + p.Environment = new.Environment p.Fetch = new.Fetch p.Build = new.Build From f0735abb3281f5426137696b89efa5161c14d488 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:15:53 +0000 Subject: [PATCH 04/42] Fixed issue with environment not getting set in projects --- project.go | 1 + 1 file changed, 1 insertion(+) diff --git a/project.go b/project.go index c124c28..df3e824 100644 --- a/project.go +++ b/project.go @@ -275,6 +275,7 @@ func (p *Project) setData(new *Project) { defer p.Unlock() p.Name = new.Name + p.Environment = new.Environment p.Fetch = new.Fetch p.Build = new.Build From 19d11b456b11dab6c462b0382a03b2d53e3d7db3 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:22:42 +0000 Subject: [PATCH 05/42] Post trigger test --- build.sh | 3 ++- json.go | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 3da48b2..2e5624f 100644 --- a/build.sh +++ b/build.sh @@ -4,6 +4,7 @@ dir=$1 go get -u git.townsourced.com/townsourced/ironsmith -cd $dir/src/git.townsourced.com/townsourced/ironsmith +ls $dir +#cd $dir/src/git.townsourced.com/townsourced/ironsmith go-bindata web/... && go build -a -v -o ironsmith diff --git a/json.go b/json.go index ad60f6c..92c1a62 100644 --- a/json.go +++ b/json.go @@ -6,6 +6,7 @@ package main import ( "encoding/json" + "fmt" "io" "io/ioutil" "log" @@ -84,6 +85,8 @@ func parseInput(r *http.Request, result interface{}) error { return err } + fmt.Printf("JSON Input: %s\n", buff) + if lr.N == 0 { return errInputTooLarge } From 9632d7f2b60b953ef51a2114809a2e61a14b3216 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:22:42 +0000 Subject: [PATCH 06/42] Post trigger test --- build.sh | 3 ++- json.go | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 3da48b2..2e5624f 100644 --- a/build.sh +++ b/build.sh @@ -4,6 +4,7 @@ dir=$1 go get -u git.townsourced.com/townsourced/ironsmith -cd $dir/src/git.townsourced.com/townsourced/ironsmith +ls $dir +#cd $dir/src/git.townsourced.com/townsourced/ironsmith go-bindata web/... && go build -a -v -o ironsmith diff --git a/json.go b/json.go index ad60f6c..92c1a62 100644 --- a/json.go +++ b/json.go @@ -6,6 +6,7 @@ package main import ( "encoding/json" + "fmt" "io" "io/ioutil" "log" @@ -84,6 +85,8 @@ func parseInput(r *http.Request, result interface{}) error { return err } + fmt.Printf("JSON Input: %s\n", buff) + if lr.N == 0 { return errInputTooLarge } From 0908c91a7d59762c235adc10c72c3efc9a2a328d Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:42:16 +0000 Subject: [PATCH 07/42] Updated build script --- build.sh | 5 ----- json.go | 3 --- 2 files changed, 8 deletions(-) diff --git a/build.sh b/build.sh index 2e5624f..b0a7c11 100644 --- a/build.sh +++ b/build.sh @@ -1,10 +1,5 @@ #!/bin/bash -dir=$1 - go get -u git.townsourced.com/townsourced/ironsmith -ls $dir -#cd $dir/src/git.townsourced.com/townsourced/ironsmith - go-bindata web/... && go build -a -v -o ironsmith diff --git a/json.go b/json.go index 92c1a62..ad60f6c 100644 --- a/json.go +++ b/json.go @@ -6,7 +6,6 @@ package main import ( "encoding/json" - "fmt" "io" "io/ioutil" "log" @@ -85,8 +84,6 @@ func parseInput(r *http.Request, result interface{}) error { return err } - fmt.Printf("JSON Input: %s\n", buff) - if lr.N == 0 { return errInputTooLarge } From 066ae7aa32e576d8478281735f029bcda3ed0bfa Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 20 Apr 2016 16:42:16 +0000 Subject: [PATCH 08/42] Updated build script --- build.sh | 5 ----- json.go | 3 --- 2 files changed, 8 deletions(-) diff --git a/build.sh b/build.sh index 2e5624f..b0a7c11 100644 --- a/build.sh +++ b/build.sh @@ -1,10 +1,5 @@ #!/bin/bash -dir=$1 - go get -u git.townsourced.com/townsourced/ironsmith -ls $dir -#cd $dir/src/git.townsourced.com/townsourced/ironsmith - go-bindata web/... && go build -a -v -o ironsmith diff --git a/json.go b/json.go index 92c1a62..ad60f6c 100644 --- a/json.go +++ b/json.go @@ -6,7 +6,6 @@ package main import ( "encoding/json" - "fmt" "io" "io/ioutil" "log" @@ -85,8 +84,6 @@ func parseInput(r *http.Request, result interface{}) error { return err } - fmt.Printf("JSON Input: %s\n", buff) - if lr.N == 0 { return errInputTooLarge } From 9cb1f8c34796cf14a4ab4aa12e3298ecf8212ec9 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 21 Apr 2016 13:41:21 +0000 Subject: [PATCH 09/42] Build script change --- build.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.sh b/build.sh index b0a7c11..10f1704 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,3 @@ #!/bin/bash -go get -u git.townsourced.com/townsourced/ironsmith - go-bindata web/... && go build -a -v -o ironsmith From 358b2069d6b5d024ccd14fc9f856e79dd48160c2 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 21 Apr 2016 13:41:21 +0000 Subject: [PATCH 10/42] Build script change --- build.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.sh b/build.sh index b0a7c11..10f1704 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,3 @@ #!/bin/bash -go get -u git.townsourced.com/townsourced/ironsmith - go-bindata web/... && go build -a -v -o ironsmith From 0cabc10fd722b70d025760e994f335048a3286dc Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Fri, 22 Apr 2016 20:39:06 +0000 Subject: [PATCH 11/42] Added better error handling. Moved main project list columns around --- bindata.go | 10 +++++----- build.sh | 2 ++ exec.go | 2 +- web/index.html | 12 ++++++------ 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/bindata.go b/bindata.go index f68ef73..b02a3d1 100644 --- a/bindata.go +++ b/bindata.go @@ -86,12 +86,12 @@ func webCssPureMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/css/pure-min.css", size: 17286, mode: os.FileMode(436), modTime: time.Unix(1424722911, 0)} + info := bindataFileInfo{name: "web/css/pure-min.css", size: 17286, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb8\x15\x7e\xf6\xfc\x0a\x46\x83\x06\x49\x1a\x59\x33\x4d\xd3\x09\x5c\xd9\x6d\x8a\xa0\x40\x81\x24\x28\x36\x8b\xbc\x2c\xf6\x81\x96\x68\x8b\x19\x4a\x14\x48\x6a\x2e\x31\xe6\xbf\xef\xe1\x4d\xa2\x6e\x1e\x27\x01\x02\xec\xd3\x88\x87\x87\xe7\x7c\xfc\xce\x85\xa4\x27\x7d\x92\xf3\x4c\xdd\xd7\x04\x15\xaa\x64\x9b\xb3\x54\xff\x41\x0c\x57\xfb\x75\x44\xaa\x48\x0b\x08\xce\x37\x67\x8b\xb4\x24\x0a\xa3\xac\xc0\x42\x12\xb5\x8e\x1a\xb5\x8b\xdf\x44\xad\xbc\xc2\x25\x59\x47\x37\x94\xdc\xd6\x5c\xa8\x08\x65\xbc\x52\xa4\x02\xbd\x5b\x9a\xab\x62\x9d\x93\x1b\x9a\x91\xd8\x0c\x5e\x22\x5a\x51\x45\x31\x8b\x65\x86\x19\x59\x5f\x2e\x2f\x86\x76\x72\x22\x33\x41\x6b\x45\x79\x15\x98\xfa\x9f\xe0\x95\x2c\xa9\x2a\x50\x8c\xde\x22\x49\xcb\x9a\x91\x97\xc8\x6a\xa2\x5c\xd0\x1b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xbd\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\x6c\x7e\xd0\x54\x9a\x58\x33\xda\x20\xa3\xd5\x35\x12\x84\xad\x23\xa9\xee\x19\x91\x05\x21\xb0\xff\x42\x90\xdd\x3a\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\xb5\x84\x81\xc5\x60\x14\x61\xcb\x8b\xa5\xf6\x81\x69\x45\x04\x3a\xc0\x70\x51\xe3\x3c\xa7\xd5\x3e\x16\x74\x5f\xa8\x15\xba\x7c\x5d\xdf\xfd\x33\x94\x33\xb2\x0b\xc5\x25\x16\x7b\x5a\x79\x6d\xdc\x28\x1e\x8a\xad\xb2\x97\x3e\x80\xe3\xc5\xbf\x4b\x92\x53\x8c\x9e\x01\x1a\x1b\x8b\x15\xba\xfa\xc7\x9b\xfa\xee\xb9\x75\x3f\x84\x33\xc4\xf3\xf7\x0b\xe7\x78\x00\xa8\x95\x3f\x78\x47\xcb\x0c\x22\x46\x44\xbc\x65\x3c\xbb\xb6\xc6\x72\x2a\x6b\x86\xef\x57\xc8\xc8\xe6\x81\xce\xec\xca\x9a\x55\xe4\x4e\xc5\xd6\xb6\xb5\x6a\x04\x98\xd1\x7d\xb5\x42\x56\xde\x2a\x27\x2f\x14\xde\x42\x40\x5e\x24\x76\xa9\x1e\xc4\x82\xc8\x1a\x42\x0f\x01\xb6\xeb\xbf\x05\xc2\x82\xdf\x10\xb1\x63\xfc\x36\xbe\x1b\xe1\x1a\x1a\x37\x02\xeb\xc2\x11\x7d\x79\x71\xf1\x17\x67\xfc\x2e\x1e\xc8\x1c\x5e\x44\x84\xe0\x02\x01\x60\x30\x69\xbf\xfb\xd4\xd1\x0a\xb2\x8d\xc4\x1d\x83\x5b\x9c\x5d\xef\x05\x6f\xaa\x3c\xce\x38\xe3\x62\x05\x99\x98\x9b\x19\x37\xbc\x2d\xa8\x22\x56\x95\x8b\x1c\x22\x22\x70\x4e\x1b\x09\x31\xeb\xa7\xd6\x0a\x2d\x5f\x93\x12\x5d\x92\x32\x20\x40\x03\xb4\x6a\x1e\xe0\x56\x40\x33\xc8\x44\x53\x6e\x25\xb2\xbc\x9e\x87\xa2\x90\xd2\x2d\x57\x8a\x97\x03\x13\xcb\x4e\x3b\x96\xa4\xc6\x50\x53\x7e\x93\x0e\xf0\x79\x96\x65\x06\xc2\x0e\x72\x31\xbe\x25\x36\x04\x5b\xce\xf2\x4e\x2a\xe9\x57\xb2\x42\x7f\xb3\x58\xc1\xae\x36\x5c\x37\x8c\x99\x30\x5a\x6b\x10\x26\x0c\xeb\xb4\xc0\x2a\x79\x15\x13\xd3\x9e\x8e\x91\x38\x25\x13\x4b\x5a\x12\xa9\x70\x59\x3b\xad\xce\xe3\xf2\xea\xb5\xe3\xc7\x83\xbd\xba\xba\x1a\x67\x72\x7f\xc7\x8c\xef\x27\x52\x6d\xa6\x86\xbd\xb8\x5b\xba\x41\xb5\x98\xca\xd5\x4e\x73\x91\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x96\xe7\xf7\xf0\xc7\xf5\x33\x9a\xaf\x23\xf5\x01\xea\x3a\x42\xba\xd1\xc3\x00\x8a\x26\x11\x38\x53\x90\xa9\xba\xc3\xe7\xf4\x06\x65\x0c\x4b\xb9\x8e\xba\x0e\x60\xda\xd6\xde\x74\xe6\x60\xde\x48\x9b\xf8\x52\xcb\x17\x69\xf1\xca\xcb\x83\xc2\x8c\x4c\x77\x45\x9f\x74\x7b\x05\x44\xaf\xb4\xe6\xe1\x70\x4e\x77\x36\xbd\x1f\x74\x2c\x7a\x36\x7b\x6b\x4d\x7b\x49\x65\x8d\x2b\x3f\x6d\x56\x45\x9b\xc3\xc1\x2d\x87\xed\xc2\xac\x51\x4c\x13\x30\x63\xed\x27\x74\x67\x2c\x1b\xc3\x7a\xc7\x41\x5e\x46\x3d\xf4\x25\xa9\x1a\xd4\x7e\xc5\x05\x17\xf4\xab\xde\x35\x43\x23\x20\x69\xc3\x46\x4b\x63\x46\xa5\xf2\x38\x19\x1d\xcf\x43\xc1\x95\x6e\x7e\x91\x62\x7f\x12\x8c\x31\xc4\xfa\xe4\x88\x36\xff\x17\xfc\x0b\xc9\x14\x7a\x0f\x66\xd3\x04\x3b\xc3\x09\xa3\xf6\xcb\x32\x57\x5b\x25\xcb\xdd\x09\x7e\xfb\x0c\x4e\x15\x5d\xb4\x49\x02\x22\x43\x8f\xce\xe5\x13\x68\x76\x52\x1f\x78\x4f\x9f\xa2\x27\x59\x23\x04\xf0\xf2\x49\xe1\x3d\xf1\x20\xe6\x51\x84\xec\x62\x19\x67\x05\x65\x39\x2c\x8f\x50\x4e\x32\x6e\xbc\xaf\x23\x3d\xdb\xa2\xed\x78\x3a\x8f\x4c\xf0\xdc\x7e\x3f\x68\xa5\x39\xe2\x0e\x07\xa7\xb5\xd4\x97\x06\x9d\x17\xb8\xb3\x37\x15\xb8\x16\x47\xab\x76\x02\x91\x03\x70\xd3\x58\x10\xaf\xe2\x8c\xd1\xec\x1a\x92\x19\x2a\x79\x4f\xc4\x7f\x1a\xf0\x15\x6d\x7e\xb5\x23\x64\x86\x21\xc0\x90\x6f\x3d\x68\x58\x1b\xb9\x30\x10\x84\xc9\x13\xf8\x9e\xe0\x31\x71\xdc\x24\x1d\x4b\x34\x7f\x78\xf8\x1e\x32\x7b\x80\x7c\x99\x0d\xbf\x83\x24\xd5\x09\xe3\x72\xe7\xe7\xe4\xeb\x09\xd6\x1f\xa1\x05\x86\x2d\xe2\x23\x14\xb5\x3a\x1d\x3b\x61\xa1\x3e\xce\x87\xfe\x9c\x2a\xa5\x3f\x13\x3f\xf0\xdd\xdf\xc2\x11\xc2\xfa\x8a\x8f\xb0\xe6\x8b\x20\x68\xea\xa6\x0f\xf5\x7a\xdf\xe1\xb0\x71\x63\x69\x04\xb6\x44\x82\x76\x35\x54\x0b\xb4\xda\xa9\x50\xb5\x05\xe0\xdc\xba\x3f\x67\x67\xe0\x1d\xa8\xd5\xef\x14\x14\x78\xec\x9d\x5b\x83\x4b\x9f\x3e\x4a\xed\xbd\x2f\x24\xc4\x4a\xba\xcf\x58\x42\x8b\xa8\x49\x6e\x4e\x56\xe5\x1e\x57\xf0\x25\xec\x89\xa3\x0a\x7f\x22\xc0\x23\xa3\x68\x65\x40\xa1\x6a\x64\x4f\xf4\x1e\x4b\x85\x7e\x21\x8c\x60\x49\x66\x27\xd0\x7f\x29\x9b\x98\xfd\x6c\x19\x18\x4f\xbc\xe7\x7b\x2f\x84\xbf\x1a\x93\x1e\xba\x17\xa0\xb2\xf7\x0a\x13\x19\xcf\xc9\x8a\x3e\x3c\x2c\xac\x09\x81\xcc\xab\x68\x1d\x1d\x0e\x3b\x2e\x4a\xac\xde\x61\x45\x9e\x2d\x81\x0b\x05\x66\x97\xb7\x05\xa9\x9e\x43\xba\xb8\x13\x4e\xe5\x9b\xa9\xb4\xb3\xf9\xa6\x93\x27\xe8\x44\x80\x21\xef\x96\xc1\x94\x34\x74\xe8\xc9\x70\x62\x78\xe6\x0e\xad\xc2\x5f\x61\x69\xf9\xdc\x56\xfb\x66\x42\x18\x1c\xc3\x63\xf3\x36\x2b\xdd\x12\xf9\x1b\x58\xfe\xbd\xeb\xd0\xad\x6b\x37\xef\x5d\xff\x6b\x07\x61\xd0\xbe\xda\x75\xb0\x6c\xa9\x85\x1f\xdb\x4d\x2e\x26\x9b\xfe\x47\xee\x7d\x21\xad\x8e\xf0\x0d\xa6\x4c\xe7\xd1\xb8\x23\x7f\x33\x19\x3e\x32\x37\x3d\x36\x46\xd2\x69\x3a\xba\x60\xb7\x2b\xe0\xbe\x6a\x6d\x68\x86\xfa\xd2\xbe\xd6\x52\x36\x5b\x5d\x06\xd5\xfe\xd9\xc5\x4b\x78\x04\x3d\xd7\x0a\x66\x23\xad\x0b\x97\x7d\x7a\x83\x61\xc1\x83\xd8\x5d\x6e\x13\x53\x4d\x6d\xc1\x6a\x3d\x5b\xae\xa0\x36\x51\xbc\x3f\xa9\x76\xa7\x0a\xcb\xb4\xbf\xa3\xa5\x66\x84\x53\x15\x7b\x52\x0d\xfa\x48\x9d\x50\x8b\xe3\x1a\x9c\x4f\x93\xc1\x01\x30\xc8\x92\x47\xb2\xc3\x15\xa9\x6d\xfb\x33\x59\xd3\xcf\x16\x9f\x25\x27\x65\xc7\x7c\x3d\x76\xa8\xd1\x5f\x91\x47\x79\xbc\x42\x67\x37\x3a\xae\xda\x69\xeb\x73\x85\x3c\x51\x9a\x41\x5a\xfb\xa8\x1d\x4d\xeb\xf9\xbc\xee\x0e\xb1\xb4\x10\x3a\xff\x4f\xa4\xe1\x3b\x18\xe8\x6a\xa2\x7d\x40\x9b\x9a\xd8\x36\xf0\xc4\xaf\xc2\xef\xb8\x16\x14\x9e\xa9\xf7\xd1\xe6\x1d\xbf\xad\xe0\x7d\x9d\x77\x27\x14\x36\x45\x6a\x28\x39\x1b\x3d\x29\x67\x1f\x65\xa6\xd4\x8e\x3e\xc3\xe6\x9f\x21\xee\x02\xd1\xbf\x85\x74\x3a\x12\x90\x65\x8a\xe4\x0e\x95\x7b\xf2\x7d\x4b\x25\xcc\xbf\xea\xde\x32\xe6\x0a\xc3\xdf\x75\x00\x8c\x29\x08\x53\xa5\x27\xc0\x0e\x51\x0f\xef\x8d\x68\xbd\x46\xbe\xbc\x7e\x7c\x3f\xe1\xd5\xce\x5b\x3d\x72\xa9\xeb\xea\x7a\xb0\xbf\xc4\xee\xcf\xe6\xb3\xbe\xcb\xf9\x2b\x95\xce\xcf\x30\xe2\x50\xe3\x1a\xdc\x78\x9f\x96\x98\xe2\xd5\xf8\xea\x28\x4b\xcc\xda\x24\x68\x7f\xa1\xd1\x70\x82\xf6\x06\x76\xa5\x6f\x71\x70\x19\xd6\x4b\x36\xfe\x17\x88\xb4\x16\x64\x93\x4a\x58\x04\x6b\x8c\xa2\xe9\x38\xa0\xa6\x45\x69\xa2\xa7\xcf\xc2\xc3\x77\x18\x2f\x87\xab\xdd\xfd\x49\x88\xe6\xd0\xf4\xe1\x4c\x42\xe9\x13\xea\x2b\x67\xf2\xb4\x83\x95\xe6\x97\x9e\xee\x27\x1f\x29\x32\x88\xf8\x17\xe9\x7f\xe5\x59\xea\xdf\x9f\xbf\xc8\x68\x73\x44\x95\x56\x39\xb9\x1b\x2a\x25\xbe\x2d\xd9\xff\x0e\xfc\x11\x00\x00\xff\xff\xe2\x31\xfe\x1b\x2e\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5f\x6f\xdb\x36\x10\x7f\x76\x3e\x05\xab\x60\x45\xdb\x55\x56\xb2\xae\x4b\xe1\xc9\xde\x3a\x14\x03\x06\xb4\xc5\xb0\x0e\x7d\x19\xf6\x40\x4b\xb4\xc5\x86\x12\x05\x92\xca\x9f\x1a\xf9\xee\x3b\xfe\x93\x28\x59\x72\x9c\x16\x28\xb0\xa7\x88\xc7\xe3\xdd\x8f\x77\xf7\x3b\x92\x4e\xfa\x28\xe7\x99\xba\xad\x09\x2a\x54\xc9\x56\x27\xa9\xfe\x83\x18\xae\xb6\xcb\x88\x54\x91\x16\x10\x9c\xaf\x4e\x66\x69\x49\x14\x46\x59\x81\x85\x24\x6a\x19\x35\x6a\x13\xbf\x8a\x5a\x79\x85\x4b\xb2\x8c\xae\x28\xb9\xae\xb9\x50\x11\xca\x78\xa5\x48\x05\x7a\xd7\x34\x57\xc5\x32\x27\x57\x34\x23\xb1\x19\x3c\x47\xb4\xa2\x8a\x62\x16\xcb\x0c\x33\xb2\x3c\x9f\x9f\x0d\xed\xe4\x44\x66\x82\xd6\x8a\xf2\x2a\x30\xf5\x87\xe0\x95\x2c\xa9\x2a\x50\x8c\x5e\x23\x49\xcb\x9a\x91\xe7\xc8\x6a\xa2\x5c\xd0\x2b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xad\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\xac\xbe\xd2\x54\x9a\x58\x33\xda\x20\xa3\xd5\x25\x12\x84\x2d\x23\xa9\x6e\x19\x91\x05\x21\xb0\xff\x42\x90\xcd\x32\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\x35\x87\x81\xc5\x60\x14\x61\xcb\xb3\xb9\xf6\x81\x69\x45\x04\xda\xc1\x70\x56\xe3\x3c\xa7\xd5\x36\x16\x74\x5b\xa8\x05\x3a\x7f\x59\xdf\xfc\x1c\xca\x19\xd9\x84\xe2\x12\x8b\x2d\xad\xbc\x36\x6e\x14\x0f\xc5\x56\xd9\x4b\xef\xc0\xf1\xec\xd7\x92\xe4\x14\xa3\x27\x80\xc6\xe6\x62\x81\x2e\x7e\x7a\x55\xdf\x3c\xb5\xee\x87\x70\x86\x78\x7e\x3c\x73\x8e\x07\x80\x5a\xf9\x9d\x77\x34\xcf\x20\x63\x44\xc4\x6b\xc6\xb3\x4b\x6b\x2c\xa7\xb2\x66\xf8\x76\x81\x8c\x6c\x1a\xe8\xc4\xae\xac\x59\x45\x6e\x54\x6c\x6d\x5b\xab\x46\x80\x19\xdd\x56\x0b\x64\xe5\xad\x72\xf2\x4c\xe1\x35\x24\xe4\x59\x62\x97\xea\x41\x2c\x88\xac\x21\xf5\x90\x60\xbb\xfe\x21\x10\x66\xfc\x8a\x88\x0d\xe3\xd7\xf1\xcd\x1e\xae\xa1\x71\x23\xb0\x2e\x5c\xa0\xcf\xcf\xce\xbe\x73\xc6\x6f\xe2\x81\xcc\xe1\x45\x44\x08\x2e\x10\x00\x06\x93\xf6\xbb\x1f\x3a\x5a\x41\xb5\x91\xb8\x8b\xe0\x1a\x67\x97\x5b\xc1\x9b\x2a\x8f\x33\xce\xb8\x58\x40\x25\xe6\x66\xc6\x0d\xaf\x0b\xaa\x88\x55\xe5\x22\x87\x8c\x08\x9c\xd3\x46\x42\xce\xfa\xa5\xb5\x40\xf3\x97\xa4\x44\xe7\xa4\x0c\x02\xa0\x01\x5a\x35\x0f\x70\x2d\xa0\x19\x64\xa2\x29\xd7\x12\xd9\xb8\x9e\x86\xa2\x30\xa4\x6b\xae\x14\x2f\x07\x26\xe6\x9d\x76\x2c\x49\x8d\x81\x53\x7e\x93\x0e\xf0\x69\x96\x65\x06\xc2\x06\x6a\x31\xbe\x26\x36\x05\x6b\xce\xf2\x4e\x2a\xe9\x67\xb2\x40\x3f\x58\xac\x60\x57\x1b\xae\x1b\xc6\x4c\x1a\xad\x35\x48\x13\x86\x75\x5a\x60\x95\xbc\x8a\xc9\x69\x4f\xc7\x48\x9c\x92\xc9\x25\x2d\x89\x54\xb8\xac\x9d\x56\xe7\x71\x7e\xf1\xd2\xc5\xc7\x83\xbd\xb8\xb8\xd8\xaf\xe4\xfe\x8e\x19\xdf\x8e\x94\xda\x04\x87\xbd\xb8\x5b\xba\x42\xb5\x18\xab\xd5\x4e\x73\x96\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x9a\xe7\xb7\xf0\xc7\xf5\x33\x9a\x2f\x23\xf5\x0e\x78\x1d\x21\xdd\xe8\x61\x00\xa4\x49\x04\xce\x14\x54\xaa\xee\xf0\x39\xbd\x42\x19\xc3\x52\x2e\xa3\xae\x03\x98\xb6\xb5\x35\x9d\x39\x98\x37\xd2\x26\x3e\xd7\xf2\x59\x5a\xbc\xf0\xf2\x80\x98\x91\xe9\xae\xe8\x83\x6e\xaf\x80\xe8\x85\xd6\xdc\xed\x4e\xe9\xc6\x96\xf7\x9d\xce\x45\xcf\x66\x6f\xad\x69\x2f\xa9\xac\x71\xe5\xa7\xcd\xaa\x68\xb5\xdb\xb9\xe5\xb0\x5d\x98\x35\x8a\x69\x02\x66\xac\xfd\x84\x6e\x8c\x65\x63\x58\xef\x38\xa8\xcb\xa8\x87\xbe\x24\x55\x83\xda\xaf\xb8\xe0\x82\x7e\xd6\xbb\x66\x68\x0f\x48\xda\xb0\xbd\xa5\x31\xa3\x52\x79\x9c\x8c\xee\xcf\x03\xe1\x4a\x37\x3f\x4b\xb1\x3f\x09\xf6\x31\xc4\xfa\xe4\x88\x56\x7f\x0a\xfe\x89\x64\x0a\xbd\x05\xb3\x69\x82\x9d\xe1\x84\x51\xfb\x65\x23\x57\x5b\x25\x1b\xbb\x23\xfc\xf6\x23\x38\x46\xba\x68\x95\x04\x81\x0c\x3d\x3a\x97\x8f\xa0\xd9\x49\x7d\xe0\x3d\x7e\x8c\x1e\x65\x8d\x10\x10\x97\x0f\x0a\x6f\x89\x07\x31\x8d\x22\x8c\x2e\x96\x71\x56\x50\x96\xc3\xf2\x08\xe5\x24\xe3\xc6\xfb\x32\xd2\xb3\x2d\xda\x2e\x4e\xa7\x91\x49\x9e\xdb\xef\x3b\xad\x34\x15\xb8\xdd\xce\x69\xcd\xf5\xa5\x41\xd7\x05\xee\xec\x8d\x25\xae\xc5\xd1\xaa\x1d\x11\xc8\x01\xb8\x71\x2c\x88\x57\x71\xc6\x68\x76\x09\xc5\x0c\x4c\xde\x12\xf1\x5b\x03\xbe\xa2\xd5\xdf\x76\x84\xcc\x30\x04\x18\xc6\x5b\x0f\x1a\xd6\x66\x2e\x4c\x04\x61\xf2\x88\x78\x8f\xc4\x31\x71\xb1\x49\xba\x28\xd1\xfc\xee\xee\x4b\x82\xd9\x03\xe4\x69\x36\xfc\x0e\x8a\x54\x17\x8c\xab\x9d\x6f\x53\xaf\x47\x58\xbf\x27\x2c\x30\x6c\x11\x1f\x08\x51\xab\xd3\x45\x27\x24\xea\xfd\xf1\xd0\x9f\x63\x54\xfa\x3f\xc5\x07\xbe\xfb\x5b\x38\x10\xb0\xbe\xe2\x3d\x51\xf3\x24\x08\x9a\xba\xe9\x43\xbd\xde\xb7\xdb\xad\xdc\x58\x1a\x81\xa5\x48\xd0\xae\x86\x6a\x81\x56\x3b\x15\xaa\xb6\x00\x9c\x5b\xf7\xe7\xe4\x04\xbc\x43\x68\xf5\x3b\x05\x05\x1e\x7b\xe7\xd6\xe0\xd2\xa7\x8f\x52\x7b\xef\x0b\x03\x62\x25\xdd\x67\x2c\xa1\x45\xd4\x24\x37\x27\xab\x72\x8f\x2b\xf8\x12\xf6\xc4\x51\x85\x3f\x11\xe0\x91\x51\xb4\x32\x08\xa1\x6a\x64\x4f\xf4\x16\x4b\x85\x3e\xda\xad\xec\x4f\xbc\xe5\xdb\x7d\xe1\x5f\x84\x11\x2c\xc9\xe4\x04\xfa\x9d\xb2\x76\x16\xfe\x6a\x4c\x7a\xe8\x5e\x80\xca\xde\x2b\x4c\x66\x7c\x4c\x16\xf4\xee\x6e\x66\x6d\x09\x64\x5e\x45\xcb\x68\xb7\xdb\x70\x51\x62\xf5\x06\x2b\xf2\x64\x0e\xb1\x50\x80\x66\x7e\x5d\x90\xea\x29\x94\x8b\x3b\xe1\x54\xbe\x1a\x2b\x3b\x5b\x6f\xba\x78\x82\x4e\x04\x18\xf2\x6e\x19\x4c\x49\x13\x0e\x3d\x19\x4e\x0c\xcf\xdc\xa1\x55\xf8\xeb\xc1\x74\x74\x5f\x8d\x49\x83\x83\x38\x70\xd0\xed\xaf\x5d\x01\x57\x34\x6b\x43\x97\x6a\x5f\xda\xd7\x9a\xcb\x66\xad\x33\x5f\x6d\x9f\x9c\x3d\x87\x7b\xff\x53\xad\x60\x4a\xef\xc1\x7b\x10\x36\x59\x1f\x7b\x5b\x18\x0a\xc7\x77\xd0\x3b\xe1\xdd\x12\xf9\x0f\x58\xfe\xb7\x3b\x65\x5a\xd7\x6e\xde\xbb\xfe\x65\x03\xc5\xa1\x7d\xb5\xeb\x60\xd9\x5c\x0b\xdf\xb7\x89\x9a\x8d\x1e\x5c\xef\xb9\xf7\x85\xb4\x3a\xc2\x57\x98\x32\xcd\x85\xfd\x53\xa5\x45\xeb\xaa\x4f\x4f\x86\x84\x07\xb1\xbb\xdc\x26\x86\x4d\x2d\x61\xb5\x9e\xa5\x2b\xa8\x8d\x90\xf7\x1b\x71\x77\x8c\x8f\xa6\xfd\xdd\xcf\xd0\x2f\xe6\xa0\x2f\xdb\x23\xb8\xb8\xcf\xc1\xe9\x7a\x1b\x1c\x00\x03\xca\xdc\x43\x15\x47\x52\xdb\xf6\x27\x28\xd4\xa7\x8e\xa7\xcc\x43\xa9\x32\xa8\xe5\x0e\x35\xfa\x1e\x79\x94\x87\xab\x7b\x72\xa3\xfb\x15\x3f\x6e\x7d\x8a\x04\x87\xcb\xda\x67\xed\x60\x59\x4f\xd7\x75\x77\x88\xa5\x85\xd0\xf5\x7f\x64\x18\xbe\x20\x02\x1d\x27\xda\x07\xb4\xe1\xc4\xba\x81\x27\x7e\x15\x7e\xc7\xb5\xa0\xf0\x4c\xbd\x8d\x56\x6f\xf8\x75\x05\xef\xeb\xbc\x3b\x73\xb0\x21\xa9\x09\xc9\xc9\xde\x93\x72\xf2\x51\x66\xa8\x76\xf0\x19\x36\xfd\x0c\x71\x17\x88\xfe\x2d\xa4\xd3\x91\x80\x2c\x53\x24\x77\xa8\xdc\x93\xef\x21\x4c\x98\x7e\xd5\xbd\x66\xcc\x11\xc3\xdf\x75\x00\x8c\x21\x84\x61\xe9\x11\xb0\x43\xd4\xc3\x7b\x23\x5a\x2e\x91\xa7\xd7\xd7\xef\x27\xbc\xda\x79\xab\x07\x2e\x75\x1d\xaf\x07\xfb\x4b\xec\xfe\x6c\x3d\xeb\xbb\x9c\xbf\x52\xe9\xfa\x0c\x33\x0e\x1c\xd7\xe0\xf6\xf7\x69\x03\x53\xbc\xd8\xbf\x3a\xca\x12\xb3\xb6\x08\xda\x5f\x68\x34\x9c\xa0\xbd\x81\x5d\xe9\x5b\x1c\x5c\x86\xf5\x92\x95\xff\x05\x22\xad\x05\x59\xa5\x12\x16\xc1\x1a\xa3\x68\x3a\x0e\xa8\x69\x51\x9a\xe8\xe9\x93\xf0\xe0\x1a\xe6\xcb\xe1\x6a\x77\x7f\x14\xa2\x29\x34\x7d\x38\xa3\x50\xfa\x01\xf5\xcc\x19\x3d\xed\x60\xa5\xf9\xa5\xa7\xfb\xc9\x47\x8a\x0c\x32\xfe\x49\xfa\x5f\x79\xe6\xfa\xf7\xe7\x4f\x32\x5a\x1d\x50\xa5\x55\x4e\x6e\x86\x4a\x89\x6f\x4b\xf6\xbf\x03\xff\x05\x00\x00\xff\xff\x1c\xd1\xc5\xa3\x2e\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461014001, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461355098, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -126,7 +126,7 @@ func webJsIndexJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461015713, 0)} + info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -146,7 +146,7 @@ func webJsRactiveMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/ractive.min.js", size: 165209, mode: os.FileMode(436), modTime: time.Unix(1459954640, 0)} + info := bindataFileInfo{name: "web/js/ractive.min.js", size: 165209, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/build.sh b/build.sh index 10f1704..6d92b94 100644 --- a/build.sh +++ b/build.sh @@ -1,3 +1,5 @@ #!/bin/bash +echo $PATH + go-bindata web/... && go build -a -v -o ironsmith diff --git a/exec.go b/exec.go index ebe5a31..0fc4e6e 100644 --- a/exec.go +++ b/exec.go @@ -32,7 +32,7 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { result, err := ec.CombinedOutput() if err != nil { - return nil, fmt.Errorf("%s", result) + return nil, fmt.Errorf("%s\n%s", err, result) } return result, nil } diff --git a/web/index.html b/web/index.html index 0b583f7..22d7ad0 100644 --- a/web/index.html +++ b/web/index.html @@ -163,10 +163,10 @@ Project Status - Last Release - Last Release File Last Version Last Log + Last Release + Last Release File @@ -174,6 +174,10 @@ {{.name}} {{.status}} + + {{.lastLog.version}} + + {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} {{.releaseVersion}} @@ -184,10 +188,6 @@ No release file available {{/if}} - - {{.lastLog.version}} - - {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} {{/projects}} From 6ca5b8668a016743877fe1db34a78a7316ee63fd Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Fri, 22 Apr 2016 20:39:06 +0000 Subject: [PATCH 12/42] Added better error handling. Moved main project list columns around --- bindata.go | 10 +++++----- build.sh | 2 ++ exec.go | 2 +- web/index.html | 12 ++++++------ 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/bindata.go b/bindata.go index f68ef73..b02a3d1 100644 --- a/bindata.go +++ b/bindata.go @@ -86,12 +86,12 @@ func webCssPureMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/css/pure-min.css", size: 17286, mode: os.FileMode(436), modTime: time.Unix(1424722911, 0)} + info := bindataFileInfo{name: "web/css/pure-min.css", size: 17286, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb8\x15\x7e\xf6\xfc\x0a\x46\x83\x06\x49\x1a\x59\x33\x4d\xd3\x09\x5c\xd9\x6d\x8a\xa0\x40\x81\x24\x28\x36\x8b\xbc\x2c\xf6\x81\x96\x68\x8b\x19\x4a\x14\x48\x6a\x2e\x31\xe6\xbf\xef\xe1\x4d\xa2\x6e\x1e\x27\x01\x02\xec\xd3\x88\x87\x87\xe7\x7c\xfc\xce\x85\xa4\x27\x7d\x92\xf3\x4c\xdd\xd7\x04\x15\xaa\x64\x9b\xb3\x54\xff\x41\x0c\x57\xfb\x75\x44\xaa\x48\x0b\x08\xce\x37\x67\x8b\xb4\x24\x0a\xa3\xac\xc0\x42\x12\xb5\x8e\x1a\xb5\x8b\xdf\x44\xad\xbc\xc2\x25\x59\x47\x37\x94\xdc\xd6\x5c\xa8\x08\x65\xbc\x52\xa4\x02\xbd\x5b\x9a\xab\x62\x9d\x93\x1b\x9a\x91\xd8\x0c\x5e\x22\x5a\x51\x45\x31\x8b\x65\x86\x19\x59\x5f\x2e\x2f\x86\x76\x72\x22\x33\x41\x6b\x45\x79\x15\x98\xfa\x9f\xe0\x95\x2c\xa9\x2a\x50\x8c\xde\x22\x49\xcb\x9a\x91\x97\xc8\x6a\xa2\x5c\xd0\x1b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xbd\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\x6c\x7e\xd0\x54\x9a\x58\x33\xda\x20\xa3\xd5\x35\x12\x84\xad\x23\xa9\xee\x19\x91\x05\x21\xb0\xff\x42\x90\xdd\x3a\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\xb5\x84\x81\xc5\x60\x14\x61\xcb\x8b\xa5\xf6\x81\x69\x45\x04\x3a\xc0\x70\x51\xe3\x3c\xa7\xd5\x3e\x16\x74\x5f\xa8\x15\xba\x7c\x5d\xdf\xfd\x33\x94\x33\xb2\x0b\xc5\x25\x16\x7b\x5a\x79\x6d\xdc\x28\x1e\x8a\xad\xb2\x97\x3e\x80\xe3\xc5\xbf\x4b\x92\x53\x8c\x9e\x01\x1a\x1b\x8b\x15\xba\xfa\xc7\x9b\xfa\xee\xb9\x75\x3f\x84\x33\xc4\xf3\xf7\x0b\xe7\x78\x00\xa8\x95\x3f\x78\x47\xcb\x0c\x22\x46\x44\xbc\x65\x3c\xbb\xb6\xc6\x72\x2a\x6b\x86\xef\x57\xc8\xc8\xe6\x81\xce\xec\xca\x9a\x55\xe4\x4e\xc5\xd6\xb6\xb5\x6a\x04\x98\xd1\x7d\xb5\x42\x56\xde\x2a\x27\x2f\x14\xde\x42\x40\x5e\x24\x76\xa9\x1e\xc4\x82\xc8\x1a\x42\x0f\x01\xb6\xeb\xbf\x05\xc2\x82\xdf\x10\xb1\x63\xfc\x36\xbe\x1b\xe1\x1a\x1a\x37\x02\xeb\xc2\x11\x7d\x79\x71\xf1\x17\x67\xfc\x2e\x1e\xc8\x1c\x5e\x44\x84\xe0\x02\x01\x60\x30\x69\xbf\xfb\xd4\xd1\x0a\xb2\x8d\xc4\x1d\x83\x5b\x9c\x5d\xef\x05\x6f\xaa\x3c\xce\x38\xe3\x62\x05\x99\x98\x9b\x19\x37\xbc\x2d\xa8\x22\x56\x95\x8b\x1c\x22\x22\x70\x4e\x1b\x09\x31\xeb\xa7\xd6\x0a\x2d\x5f\x93\x12\x5d\x92\x32\x20\x40\x03\xb4\x6a\x1e\xe0\x56\x40\x33\xc8\x44\x53\x6e\x25\xb2\xbc\x9e\x87\xa2\x90\xd2\x2d\x57\x8a\x97\x03\x13\xcb\x4e\x3b\x96\xa4\xc6\x50\x53\x7e\x93\x0e\xf0\x79\x96\x65\x06\xc2\x0e\x72\x31\xbe\x25\x36\x04\x5b\xce\xf2\x4e\x2a\xe9\x57\xb2\x42\x7f\xb3\x58\xc1\xae\x36\x5c\x37\x8c\x99\x30\x5a\x6b\x10\x26\x0c\xeb\xb4\xc0\x2a\x79\x15\x13\xd3\x9e\x8e\x91\x38\x25\x13\x4b\x5a\x12\xa9\x70\x59\x3b\xad\xce\xe3\xf2\xea\xb5\xe3\xc7\x83\xbd\xba\xba\x1a\x67\x72\x7f\xc7\x8c\xef\x27\x52\x6d\xa6\x86\xbd\xb8\x5b\xba\x41\xb5\x98\xca\xd5\x4e\x73\x91\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x96\xe7\xf7\xf0\xc7\xf5\x33\x9a\xaf\x23\xf5\x01\xea\x3a\x42\xba\xd1\xc3\x00\x8a\x26\x11\x38\x53\x90\xa9\xba\xc3\xe7\xf4\x06\x65\x0c\x4b\xb9\x8e\xba\x0e\x60\xda\xd6\xde\x74\xe6\x60\xde\x48\x9b\xf8\x52\xcb\x17\x69\xf1\xca\xcb\x83\xc2\x8c\x4c\x77\x45\x9f\x74\x7b\x05\x44\xaf\xb4\xe6\xe1\x70\x4e\x77\x36\xbd\x1f\x74\x2c\x7a\x36\x7b\x6b\x4d\x7b\x49\x65\x8d\x2b\x3f\x6d\x56\x45\x9b\xc3\xc1\x2d\x87\xed\xc2\xac\x51\x4c\x13\x30\x63\xed\x27\x74\x67\x2c\x1b\xc3\x7a\xc7\x41\x5e\x46\x3d\xf4\x25\xa9\x1a\xd4\x7e\xc5\x05\x17\xf4\xab\xde\x35\x43\x23\x20\x69\xc3\x46\x4b\x63\x46\xa5\xf2\x38\x19\x1d\xcf\x43\xc1\x95\x6e\x7e\x91\x62\x7f\x12\x8c\x31\xc4\xfa\xe4\x88\x36\xff\x17\xfc\x0b\xc9\x14\x7a\x0f\x66\xd3\x04\x3b\xc3\x09\xa3\xf6\xcb\x32\x57\x5b\x25\xcb\xdd\x09\x7e\xfb\x0c\x4e\x15\x5d\xb4\x49\x02\x22\x43\x8f\xce\xe5\x13\x68\x76\x52\x1f\x78\x4f\x9f\xa2\x27\x59\x23\x04\xf0\xf2\x49\xe1\x3d\xf1\x20\xe6\x51\x84\xec\x62\x19\x67\x05\x65\x39\x2c\x8f\x50\x4e\x32\x6e\xbc\xaf\x23\x3d\xdb\xa2\xed\x78\x3a\x8f\x4c\xf0\xdc\x7e\x3f\x68\xa5\x39\xe2\x0e\x07\xa7\xb5\xd4\x97\x06\x9d\x17\xb8\xb3\x37\x15\xb8\x16\x47\xab\x76\x02\x91\x03\x70\xd3\x58\x10\xaf\xe2\x8c\xd1\xec\x1a\x92\x19\x2a\x79\x4f\xc4\x7f\x1a\xf0\x15\x6d\x7e\xb5\x23\x64\x86\x21\xc0\x90\x6f\x3d\x68\x58\x1b\xb9\x30\x10\x84\xc9\x13\xf8\x9e\xe0\x31\x71\xdc\x24\x1d\x4b\x34\x7f\x78\xf8\x1e\x32\x7b\x80\x7c\x99\x0d\xbf\x83\x24\xd5\x09\xe3\x72\xe7\xe7\xe4\xeb\x09\xd6\x1f\xa1\x05\x86\x2d\xe2\x23\x14\xb5\x3a\x1d\x3b\x61\xa1\x3e\xce\x87\xfe\x9c\x2a\xa5\x3f\x13\x3f\xf0\xdd\xdf\xc2\x11\xc2\xfa\x8a\x8f\xb0\xe6\x8b\x20\x68\xea\xa6\x0f\xf5\x7a\xdf\xe1\xb0\x71\x63\x69\x04\xb6\x44\x82\x76\x35\x54\x0b\xb4\xda\xa9\x50\xb5\x05\xe0\xdc\xba\x3f\x67\x67\xe0\x1d\xa8\xd5\xef\x14\x14\x78\xec\x9d\x5b\x83\x4b\x9f\x3e\x4a\xed\xbd\x2f\x24\xc4\x4a\xba\xcf\x58\x42\x8b\xa8\x49\x6e\x4e\x56\xe5\x1e\x57\xf0\x25\xec\x89\xa3\x0a\x7f\x22\xc0\x23\xa3\x68\x65\x40\xa1\x6a\x64\x4f\xf4\x1e\x4b\x85\x7e\x21\x8c\x60\x49\x66\x27\xd0\x7f\x29\x9b\x98\xfd\x6c\x19\x18\x4f\xbc\xe7\x7b\x2f\x84\xbf\x1a\x93\x1e\xba\x17\xa0\xb2\xf7\x0a\x13\x19\xcf\xc9\x8a\x3e\x3c\x2c\xac\x09\x81\xcc\xab\x68\x1d\x1d\x0e\x3b\x2e\x4a\xac\xde\x61\x45\x9e\x2d\x81\x0b\x05\x66\x97\xb7\x05\xa9\x9e\x43\xba\xb8\x13\x4e\xe5\x9b\xa9\xb4\xb3\xf9\xa6\x93\x27\xe8\x44\x80\x21\xef\x96\xc1\x94\x34\x74\xe8\xc9\x70\x62\x78\xe6\x0e\xad\xc2\x5f\x61\x69\xf9\xdc\x56\xfb\x66\x42\x18\x1c\xc3\x63\xf3\x36\x2b\xdd\x12\xf9\x1b\x58\xfe\xbd\xeb\xd0\xad\x6b\x37\xef\x5d\xff\x6b\x07\x61\xd0\xbe\xda\x75\xb0\x6c\xa9\x85\x1f\xdb\x4d\x2e\x26\x9b\xfe\x47\xee\x7d\x21\xad\x8e\xf0\x0d\xa6\x4c\xe7\xd1\xb8\x23\x7f\x33\x19\x3e\x32\x37\x3d\x36\x46\xd2\x69\x3a\xba\x60\xb7\x2b\xe0\xbe\x6a\x6d\x68\x86\xfa\xd2\xbe\xd6\x52\x36\x5b\x5d\x06\xd5\xfe\xd9\xc5\x4b\x78\x04\x3d\xd7\x0a\x66\x23\xad\x0b\x97\x7d\x7a\x83\x61\xc1\x83\xd8\x5d\x6e\x13\x53\x4d\x6d\xc1\x6a\x3d\x5b\xae\xa0\x36\x51\xbc\x3f\xa9\x76\xa7\x0a\xcb\xb4\xbf\xa3\xa5\x66\x84\x53\x15\x7b\x52\x0d\xfa\x48\x9d\x50\x8b\xe3\x1a\x9c\x4f\x93\xc1\x01\x30\xc8\x92\x47\xb2\xc3\x15\xa9\x6d\xfb\x33\x59\xd3\xcf\x16\x9f\x25\x27\x65\xc7\x7c\x3d\x76\xa8\xd1\x5f\x91\x47\x79\xbc\x42\x67\x37\x3a\xae\xda\x69\xeb\x73\x85\x3c\x51\x9a\x41\x5a\xfb\xa8\x1d\x4d\xeb\xf9\xbc\xee\x0e\xb1\xb4\x10\x3a\xff\x4f\xa4\xe1\x3b\x18\xe8\x6a\xa2\x7d\x40\x9b\x9a\xd8\x36\xf0\xc4\xaf\xc2\xef\xb8\x16\x14\x9e\xa9\xf7\xd1\xe6\x1d\xbf\xad\xe0\x7d\x9d\x77\x27\x14\x36\x45\x6a\x28\x39\x1b\x3d\x29\x67\x1f\x65\xa6\xd4\x8e\x3e\xc3\xe6\x9f\x21\xee\x02\xd1\xbf\x85\x74\x3a\x12\x90\x65\x8a\xe4\x0e\x95\x7b\xf2\x7d\x4b\x25\xcc\xbf\xea\xde\x32\xe6\x0a\xc3\xdf\x75\x00\x8c\x29\x08\x53\xa5\x27\xc0\x0e\x51\x0f\xef\x8d\x68\xbd\x46\xbe\xbc\x7e\x7c\x3f\xe1\xd5\xce\x5b\x3d\x72\xa9\xeb\xea\x7a\xb0\xbf\xc4\xee\xcf\xe6\xb3\xbe\xcb\xf9\x2b\x95\xce\xcf\x30\xe2\x50\xe3\x1a\xdc\x78\x9f\x96\x98\xe2\xd5\xf8\xea\x28\x4b\xcc\xda\x24\x68\x7f\xa1\xd1\x70\x82\xf6\x06\x76\xa5\x6f\x71\x70\x19\xd6\x4b\x36\xfe\x17\x88\xb4\x16\x64\x93\x4a\x58\x04\x6b\x8c\xa2\xe9\x38\xa0\xa6\x45\x69\xa2\xa7\xcf\xc2\xc3\x77\x18\x2f\x87\xab\xdd\xfd\x49\x88\xe6\xd0\xf4\xe1\x4c\x42\xe9\x13\xea\x2b\x67\xf2\xb4\x83\x95\xe6\x97\x9e\xee\x27\x1f\x29\x32\x88\xf8\x17\xe9\x7f\xe5\x59\xea\xdf\x9f\xbf\xc8\x68\x73\x44\x95\x56\x39\xb9\x1b\x2a\x25\xbe\x2d\xd9\xff\x0e\xfc\x11\x00\x00\xff\xff\xe2\x31\xfe\x1b\x2e\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5f\x6f\xdb\x36\x10\x7f\x76\x3e\x05\xab\x60\x45\xdb\x55\x56\xb2\xae\x4b\xe1\xc9\xde\x3a\x14\x03\x06\xb4\xc5\xb0\x0e\x7d\x19\xf6\x40\x4b\xb4\xc5\x86\x12\x05\x92\xca\x9f\x1a\xf9\xee\x3b\xfe\x93\x28\x59\x72\x9c\x16\x28\xb0\xa7\x88\xc7\xe3\xdd\x8f\x77\xf7\x3b\x92\x4e\xfa\x28\xe7\x99\xba\xad\x09\x2a\x54\xc9\x56\x27\xa9\xfe\x83\x18\xae\xb6\xcb\x88\x54\x91\x16\x10\x9c\xaf\x4e\x66\x69\x49\x14\x46\x59\x81\x85\x24\x6a\x19\x35\x6a\x13\xbf\x8a\x5a\x79\x85\x4b\xb2\x8c\xae\x28\xb9\xae\xb9\x50\x11\xca\x78\xa5\x48\x05\x7a\xd7\x34\x57\xc5\x32\x27\x57\x34\x23\xb1\x19\x3c\x47\xb4\xa2\x8a\x62\x16\xcb\x0c\x33\xb2\x3c\x9f\x9f\x0d\xed\xe4\x44\x66\x82\xd6\x8a\xf2\x2a\x30\xf5\x87\xe0\x95\x2c\xa9\x2a\x50\x8c\x5e\x23\x49\xcb\x9a\x91\xe7\xc8\x6a\xa2\x5c\xd0\x2b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xad\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\xac\xbe\xd2\x54\x9a\x58\x33\xda\x20\xa3\xd5\x25\x12\x84\x2d\x23\xa9\x6e\x19\x91\x05\x21\xb0\xff\x42\x90\xcd\x32\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\x35\x87\x81\xc5\x60\x14\x61\xcb\xb3\xb9\xf6\x81\x69\x45\x04\xda\xc1\x70\x56\xe3\x3c\xa7\xd5\x36\x16\x74\x5b\xa8\x05\x3a\x7f\x59\xdf\xfc\x1c\xca\x19\xd9\x84\xe2\x12\x8b\x2d\xad\xbc\x36\x6e\x14\x0f\xc5\x56\xd9\x4b\xef\xc0\xf1\xec\xd7\x92\xe4\x14\xa3\x27\x80\xc6\xe6\x62\x81\x2e\x7e\x7a\x55\xdf\x3c\xb5\xee\x87\x70\x86\x78\x7e\x3c\x73\x8e\x07\x80\x5a\xf9\x9d\x77\x34\xcf\x20\x63\x44\xc4\x6b\xc6\xb3\x4b\x6b\x2c\xa7\xb2\x66\xf8\x76\x81\x8c\x6c\x1a\xe8\xc4\xae\xac\x59\x45\x6e\x54\x6c\x6d\x5b\xab\x46\x80\x19\xdd\x56\x0b\x64\xe5\xad\x72\xf2\x4c\xe1\x35\x24\xe4\x59\x62\x97\xea\x41\x2c\x88\xac\x21\xf5\x90\x60\xbb\xfe\x21\x10\x66\xfc\x8a\x88\x0d\xe3\xd7\xf1\xcd\x1e\xae\xa1\x71\x23\xb0\x2e\x5c\xa0\xcf\xcf\xce\xbe\x73\xc6\x6f\xe2\x81\xcc\xe1\x45\x44\x08\x2e\x10\x00\x06\x93\xf6\xbb\x1f\x3a\x5a\x41\xb5\x91\xb8\x8b\xe0\x1a\x67\x97\x5b\xc1\x9b\x2a\x8f\x33\xce\xb8\x58\x40\x25\xe6\x66\xc6\x0d\xaf\x0b\xaa\x88\x55\xe5\x22\x87\x8c\x08\x9c\xd3\x46\x42\xce\xfa\xa5\xb5\x40\xf3\x97\xa4\x44\xe7\xa4\x0c\x02\xa0\x01\x5a\x35\x0f\x70\x2d\xa0\x19\x64\xa2\x29\xd7\x12\xd9\xb8\x9e\x86\xa2\x30\xa4\x6b\xae\x14\x2f\x07\x26\xe6\x9d\x76\x2c\x49\x8d\x81\x53\x7e\x93\x0e\xf0\x69\x96\x65\x06\xc2\x06\x6a\x31\xbe\x26\x36\x05\x6b\xce\xf2\x4e\x2a\xe9\x67\xb2\x40\x3f\x58\xac\x60\x57\x1b\xae\x1b\xc6\x4c\x1a\xad\x35\x48\x13\x86\x75\x5a\x60\x95\xbc\x8a\xc9\x69\x4f\xc7\x48\x9c\x92\xc9\x25\x2d\x89\x54\xb8\xac\x9d\x56\xe7\x71\x7e\xf1\xd2\xc5\xc7\x83\xbd\xb8\xb8\xd8\xaf\xe4\xfe\x8e\x19\xdf\x8e\x94\xda\x04\x87\xbd\xb8\x5b\xba\x42\xb5\x18\xab\xd5\x4e\x73\x96\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x9a\xe7\xb7\xf0\xc7\xf5\x33\x9a\x2f\x23\xf5\x0e\x78\x1d\x21\xdd\xe8\x61\x00\xa4\x49\x04\xce\x14\x54\xaa\xee\xf0\x39\xbd\x42\x19\xc3\x52\x2e\xa3\xae\x03\x98\xb6\xb5\x35\x9d\x39\x98\x37\xd2\x26\x3e\xd7\xf2\x59\x5a\xbc\xf0\xf2\x80\x98\x91\xe9\xae\xe8\x83\x6e\xaf\x80\xe8\x85\xd6\xdc\xed\x4e\xe9\xc6\x96\xf7\x9d\xce\x45\xcf\x66\x6f\xad\x69\x2f\xa9\xac\x71\xe5\xa7\xcd\xaa\x68\xb5\xdb\xb9\xe5\xb0\x5d\x98\x35\x8a\x69\x02\x66\xac\xfd\x84\x6e\x8c\x65\x63\x58\xef\x38\xa8\xcb\xa8\x87\xbe\x24\x55\x83\xda\xaf\xb8\xe0\x82\x7e\xd6\xbb\x66\x68\x0f\x48\xda\xb0\xbd\xa5\x31\xa3\x52\x79\x9c\x8c\xee\xcf\x03\xe1\x4a\x37\x3f\x4b\xb1\x3f\x09\xf6\x31\xc4\xfa\xe4\x88\x56\x7f\x0a\xfe\x89\x64\x0a\xbd\x05\xb3\x69\x82\x9d\xe1\x84\x51\xfb\x65\x23\x57\x5b\x25\x1b\xbb\x23\xfc\xf6\x23\x38\x46\xba\x68\x95\x04\x81\x0c\x3d\x3a\x97\x8f\xa0\xd9\x49\x7d\xe0\x3d\x7e\x8c\x1e\x65\x8d\x10\x10\x97\x0f\x0a\x6f\x89\x07\x31\x8d\x22\x8c\x2e\x96\x71\x56\x50\x96\xc3\xf2\x08\xe5\x24\xe3\xc6\xfb\x32\xd2\xb3\x2d\xda\x2e\x4e\xa7\x91\x49\x9e\xdb\xef\x3b\xad\x34\x15\xb8\xdd\xce\x69\xcd\xf5\xa5\x41\xd7\x05\xee\xec\x8d\x25\xae\xc5\xd1\xaa\x1d\x11\xc8\x01\xb8\x71\x2c\x88\x57\x71\xc6\x68\x76\x09\xc5\x0c\x4c\xde\x12\xf1\x5b\x03\xbe\xa2\xd5\xdf\x76\x84\xcc\x30\x04\x18\xc6\x5b\x0f\x1a\xd6\x66\x2e\x4c\x04\x61\xf2\x88\x78\x8f\xc4\x31\x71\xb1\x49\xba\x28\xd1\xfc\xee\xee\x4b\x82\xd9\x03\xe4\x69\x36\xfc\x0e\x8a\x54\x17\x8c\xab\x9d\x6f\x53\xaf\x47\x58\xbf\x27\x2c\x30\x6c\x11\x1f\x08\x51\xab\xd3\x45\x27\x24\xea\xfd\xf1\xd0\x9f\x63\x54\xfa\x3f\xc5\x07\xbe\xfb\x5b\x38\x10\xb0\xbe\xe2\x3d\x51\xf3\x24\x08\x9a\xba\xe9\x43\xbd\xde\xb7\xdb\xad\xdc\x58\x1a\x81\xa5\x48\xd0\xae\x86\x6a\x81\x56\x3b\x15\xaa\xb6\x00\x9c\x5b\xf7\xe7\xe4\x04\xbc\x43\x68\xf5\x3b\x05\x05\x1e\x7b\xe7\xd6\xe0\xd2\xa7\x8f\x52\x7b\xef\x0b\x03\x62\x25\xdd\x67\x2c\xa1\x45\xd4\x24\x37\x27\xab\x72\x8f\x2b\xf8\x12\xf6\xc4\x51\x85\x3f\x11\xe0\x91\x51\xb4\x32\x08\xa1\x6a\x64\x4f\xf4\x16\x4b\x85\x3e\xda\xad\xec\x4f\xbc\xe5\xdb\x7d\xe1\x5f\x84\x11\x2c\xc9\xe4\x04\xfa\x9d\xb2\x76\x16\xfe\x6a\x4c\x7a\xe8\x5e\x80\xca\xde\x2b\x4c\x66\x7c\x4c\x16\xf4\xee\x6e\x66\x6d\x09\x64\x5e\x45\xcb\x68\xb7\xdb\x70\x51\x62\xf5\x06\x2b\xf2\x64\x0e\xb1\x50\x80\x66\x7e\x5d\x90\xea\x29\x94\x8b\x3b\xe1\x54\xbe\x1a\x2b\x3b\x5b\x6f\xba\x78\x82\x4e\x04\x18\xf2\x6e\x19\x4c\x49\x13\x0e\x3d\x19\x4e\x0c\xcf\xdc\xa1\x55\xf8\xeb\xc1\x74\x74\x5f\x8d\x49\x83\x83\x38\x70\xd0\xed\xaf\x5d\x01\x57\x34\x6b\x43\x97\x6a\x5f\xda\xd7\x9a\xcb\x66\xad\x33\x5f\x6d\x9f\x9c\x3d\x87\x7b\xff\x53\xad\x60\x4a\xef\xc1\x7b\x10\x36\x59\x1f\x7b\x5b\x18\x0a\xc7\x77\xd0\x3b\xe1\xdd\x12\xf9\x0f\x58\xfe\xb7\x3b\x65\x5a\xd7\x6e\xde\xbb\xfe\x65\x03\xc5\xa1\x7d\xb5\xeb\x60\xd9\x5c\x0b\xdf\xb7\x89\x9a\x8d\x1e\x5c\xef\xb9\xf7\x85\xb4\x3a\xc2\x57\x98\x32\xcd\x85\xfd\x53\xa5\x45\xeb\xaa\x4f\x4f\x86\x84\x07\xb1\xbb\xdc\x26\x86\x4d\x2d\x61\xb5\x9e\xa5\x2b\xa8\x8d\x90\xf7\x1b\x71\x77\x8c\x8f\xa6\xfd\xdd\xcf\xd0\x2f\xe6\xa0\x2f\xdb\x23\xb8\xb8\xcf\xc1\xe9\x7a\x1b\x1c\x00\x03\xca\xdc\x43\x15\x47\x52\xdb\xf6\x27\x28\xd4\xa7\x8e\xa7\xcc\x43\xa9\x32\xa8\xe5\x0e\x35\xfa\x1e\x79\x94\x87\xab\x7b\x72\xa3\xfb\x15\x3f\x6e\x7d\x8a\x04\x87\xcb\xda\x67\xed\x60\x59\x4f\xd7\x75\x77\x88\xa5\x85\xd0\xf5\x7f\x64\x18\xbe\x20\x02\x1d\x27\xda\x07\xb4\xe1\xc4\xba\x81\x27\x7e\x15\x7e\xc7\xb5\xa0\xf0\x4c\xbd\x8d\x56\x6f\xf8\x75\x05\xef\xeb\xbc\x3b\x73\xb0\x21\xa9\x09\xc9\xc9\xde\x93\x72\xf2\x51\x66\xa8\x76\xf0\x19\x36\xfd\x0c\x71\x17\x88\xfe\x2d\xa4\xd3\x91\x80\x2c\x53\x24\x77\xa8\xdc\x93\xef\x21\x4c\x98\x7e\xd5\xbd\x66\xcc\x11\xc3\xdf\x75\x00\x8c\x21\x84\x61\xe9\x11\xb0\x43\xd4\xc3\x7b\x23\x5a\x2e\x91\xa7\xd7\xd7\xef\x27\xbc\xda\x79\xab\x07\x2e\x75\x1d\xaf\x07\xfb\x4b\xec\xfe\x6c\x3d\xeb\xbb\x9c\xbf\x52\xe9\xfa\x0c\x33\x0e\x1c\xd7\xe0\xf6\xf7\x69\x03\x53\xbc\xd8\xbf\x3a\xca\x12\xb3\xb6\x08\xda\x5f\x68\x34\x9c\xa0\xbd\x81\x5d\xe9\x5b\x1c\x5c\x86\xf5\x92\x95\xff\x05\x22\xad\x05\x59\xa5\x12\x16\xc1\x1a\xa3\x68\x3a\x0e\xa8\x69\x51\x9a\xe8\xe9\x93\xf0\xe0\x1a\xe6\xcb\xe1\x6a\x77\x7f\x14\xa2\x29\x34\x7d\x38\xa3\x50\xfa\x01\xf5\xcc\x19\x3d\xed\x60\xa5\xf9\xa5\xa7\xfb\xc9\x47\x8a\x0c\x32\xfe\x49\xfa\x5f\x79\xe6\xfa\xf7\xe7\x4f\x32\x5a\x1d\x50\xa5\x55\x4e\x6e\x86\x4a\x89\x6f\x4b\xf6\xbf\x03\xff\x05\x00\x00\xff\xff\x1c\xd1\xc5\xa3\x2e\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461014001, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461355098, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -126,7 +126,7 @@ func webJsIndexJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461015713, 0)} + info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -146,7 +146,7 @@ func webJsRactiveMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/ractive.min.js", size: 165209, mode: os.FileMode(436), modTime: time.Unix(1459954640, 0)} + info := bindataFileInfo{name: "web/js/ractive.min.js", size: 165209, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/build.sh b/build.sh index 10f1704..6d92b94 100644 --- a/build.sh +++ b/build.sh @@ -1,3 +1,5 @@ #!/bin/bash +echo $PATH + go-bindata web/... && go build -a -v -o ironsmith diff --git a/exec.go b/exec.go index ebe5a31..0fc4e6e 100644 --- a/exec.go +++ b/exec.go @@ -32,7 +32,7 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { result, err := ec.CombinedOutput() if err != nil { - return nil, fmt.Errorf("%s", result) + return nil, fmt.Errorf("%s\n%s", err, result) } return result, nil } diff --git a/web/index.html b/web/index.html index 0b583f7..22d7ad0 100644 --- a/web/index.html +++ b/web/index.html @@ -163,10 +163,10 @@ Project Status - Last Release - Last Release File Last Version Last Log + Last Release + Last Release File @@ -174,6 +174,10 @@ {{.name}} {{.status}} + + {{.lastLog.version}} + + {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} {{.releaseVersion}} @@ -184,10 +188,6 @@ No release file available {{/if}} - - {{.lastLog.version}} - - {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} {{/projects}} From 01f655a2a1e45188b9e9a05f94fd59fdd050d239 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Fri, 22 Apr 2016 21:25:33 +0000 Subject: [PATCH 13/42] Added / stole some code to handle cmd execs better It'll now use any custom environment path to lookup executables to run as part of the project scripts --- build.sh | 2 -- exec.go | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 63 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 6d92b94..10f1704 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,3 @@ #!/bin/bash -echo $PATH - go-bindata web/... && go build -a -v -o ironsmith diff --git a/exec.go b/exec.go index 0fc4e6e..584cc81 100644 --- a/exec.go +++ b/exec.go @@ -6,7 +6,9 @@ package main import ( "fmt" + "os" "os/exec" + "path/filepath" "strings" ) @@ -23,10 +25,21 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { args = s[1:] } - ec := exec.Command(s[0], args...) + name := s[0] + ec := &exec.Cmd{ + Path: name, + Args: append([]string{name}, args...), + Dir: dir, + Env: env, + } - ec.Dir = dir - ec.Env = env + if filepath.Base(name) == name { + lp, err := lookPath(name, env) + if err != nil { + return nil, err + } + ec.Path = lp + } vlog("Executing command: %s in dir %s\n", cmd, dir) @@ -36,3 +49,50 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { } return result, nil } + +// similar to os/exec.LookPath, except it checks if the passed in +// custom environment includes a path definitions and uses that path instead +// note this probably only works on unix, that's all I care about for now +func lookPath(file string, env []string) (string, error) { + if strings.Contains(file, "/") { + err := findExecutable(file) + if err == nil { + return file, nil + } + return "", &exec.Error{file, err} + } + + for i := range env { + if strings.HasPrefix(env[i], "PATH=") { + pathenv := env[i][5:] + if pathenv == "" { + return "", &exec.Error{file, exec.ErrNotFound} + } + for _, dir := range strings.Split(pathenv, ":") { + if dir == "" { + // Unix shell semantics: path element "" means "." + dir = "." + } + path := dir + "/" + file + if err := findExecutable(path); err == nil { + return path, nil + } + } + return "", &exec.Error{file, exec.ErrNotFound} + } + } + + return exec.LookPath(file) +} + +func findExecutable(file string) error { + d, err := os.Stat(file) + if err != nil { + return err + } + if m := d.Mode(); !m.IsDir() && m&0111 != 0 { + return nil + } + + return os.ErrPermission +} From 78d160247da07d0502916e6e9841574f0e298586 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Fri, 22 Apr 2016 21:25:33 +0000 Subject: [PATCH 14/42] Added / stole some code to handle cmd execs better It'll now use any custom environment path to lookup executables to run as part of the project scripts --- build.sh | 2 -- exec.go | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 63 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 6d92b94..10f1704 100644 --- a/build.sh +++ b/build.sh @@ -1,5 +1,3 @@ #!/bin/bash -echo $PATH - go-bindata web/... && go build -a -v -o ironsmith diff --git a/exec.go b/exec.go index 0fc4e6e..584cc81 100644 --- a/exec.go +++ b/exec.go @@ -6,7 +6,9 @@ package main import ( "fmt" + "os" "os/exec" + "path/filepath" "strings" ) @@ -23,10 +25,21 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { args = s[1:] } - ec := exec.Command(s[0], args...) + name := s[0] + ec := &exec.Cmd{ + Path: name, + Args: append([]string{name}, args...), + Dir: dir, + Env: env, + } - ec.Dir = dir - ec.Env = env + if filepath.Base(name) == name { + lp, err := lookPath(name, env) + if err != nil { + return nil, err + } + ec.Path = lp + } vlog("Executing command: %s in dir %s\n", cmd, dir) @@ -36,3 +49,50 @@ func runCmd(cmd, dir string, env []string) ([]byte, error) { } return result, nil } + +// similar to os/exec.LookPath, except it checks if the passed in +// custom environment includes a path definitions and uses that path instead +// note this probably only works on unix, that's all I care about for now +func lookPath(file string, env []string) (string, error) { + if strings.Contains(file, "/") { + err := findExecutable(file) + if err == nil { + return file, nil + } + return "", &exec.Error{file, err} + } + + for i := range env { + if strings.HasPrefix(env[i], "PATH=") { + pathenv := env[i][5:] + if pathenv == "" { + return "", &exec.Error{file, exec.ErrNotFound} + } + for _, dir := range strings.Split(pathenv, ":") { + if dir == "" { + // Unix shell semantics: path element "" means "." + dir = "." + } + path := dir + "/" + file + if err := findExecutable(path); err == nil { + return path, nil + } + } + return "", &exec.Error{file, exec.ErrNotFound} + } + } + + return exec.LookPath(file) +} + +func findExecutable(file string) error { + d, err := os.Stat(file) + if err != nil { + return err + } + if m := d.Mode(); !m.IsDir() && m&0111 != 0 { + return nil + } + + return os.ErrPermission +} From dd12b9dfbfbafe09fc43fab39bc4f46c59206e26 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 15:44:04 +0000 Subject: [PATCH 15/42] Testing git hooks with ironsmith --- build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sh b/build.sh index 10f1704..2055dd3 100644 --- a/build.sh +++ b/build.sh @@ -1,3 +1,2 @@ #!/bin/bash - go-bindata web/... && go build -a -v -o ironsmith From 4785efdfc2fa7954ac0d13b0c127c51a9bffb32c Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 15:44:04 +0000 Subject: [PATCH 16/42] Testing git hooks with ironsmith --- build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sh b/build.sh index 10f1704..2055dd3 100644 --- a/build.sh +++ b/build.sh @@ -1,3 +1,2 @@ #!/bin/bash - go-bindata web/... && go build -a -v -o ironsmith From 6afd073f57b67086d057cae05ed773960b07e462 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 16:51:01 +0000 Subject: [PATCH 17/42] Fixed issue with new projects If they haven't done a single poll the UI was filing to find a last version. --- web/js/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/js/index.js b/web/js/index.js index 57c82c5..e7d04a7 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,6 +171,8 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; + } else if(!project.lastLog) { + project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; } else { From 2066c6825701ef7d6394c6b8e9eb1630603b93a8 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 16:51:01 +0000 Subject: [PATCH 18/42] Fixed issue with new projects If they haven't done a single poll the UI was filing to find a last version. --- web/js/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/js/index.js b/web/js/index.js index 57c82c5..e7d04a7 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,6 +171,8 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; + } else if(!project.lastLog) { + project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; } else { From e586626a696b28b525712112440bc124e165d797 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 16:56:48 +0000 Subject: [PATCH 19/42] Another small change in the same code --- web/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/index.js b/web/js/index.js index e7d04a7..ff07593 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,7 +171,7 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; - } else if(!project.lastLog) { + } else if(!project.lastLog || !project.lastLog.version) { project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; From 7a0b821be4a6e33a797a7e5c85a6a574d2e0cc60 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 16:56:48 +0000 Subject: [PATCH 20/42] Another small change in the same code --- web/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/index.js b/web/js/index.js index e7d04a7..ff07593 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,7 +171,7 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; - } else if(!project.lastLog) { + } else if(!project.lastLog || !project.lastLog.version) { project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; From 345062d93ae9fa6b3f7ee5664577e68cf983fbef Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 19:41:03 +0000 Subject: [PATCH 21/42] Added pre-version version No fetch and load errors can be properly seen without having to run ironsmith manually. --- bindata.go | 4 ++-- cycle.go | 2 +- web/js/index.js | 10 +++++++--- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bindata.go b/bindata.go index b02a3d1..020b0c9 100644 --- a/bindata.go +++ b/bindata.go @@ -111,7 +111,7 @@ func webIndexHtml() (*asset, error) { return a, nil } -var _webJsIndexJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x3a\xeb\x72\xdb\x36\xd6\xff\xfd\x14\x08\xbf\x99\x8a\x4e\x64\xca\x49\x3b\xdf\xee\xd8\x71\x3a\xae\xa5\xb6\xde\xca\x97\xb1\x9c\x6c\x77\x32\x99\x0c\x24\x42\x12\x13\x8a\x54\x40\xd0\xa9\xa6\xd5\xbb\xef\x39\xb8\x88\x00\x48\xca\x72\xe2\x76\xcb\x1f\x36\x45\x9c\xfb\x1d\x20\x7b\x3d\x72\x96\x2f\x57\x3c\x99\xcd\x05\x79\x71\xf8\xfc\xff\xc9\x6d\xb2\x20\xa3\x39\xcd\xb2\x3c\x8b\xc8\x69\x9a\x12\xb9\x56\x10\xce\x0a\xc6\xef\x58\x1c\xed\x01\xce\xeb\x82\x91\x7c\x4a\xc4\x3c\x29\x48\x91\x97\x7c\xc2\xc8\x24\x8f\x19\x81\x9f\xb3\xfc\x8e\xf1\x8c\xc5\x64\xbc\x82\x75\x46\x2e\xce\x6f\x49\x9a\x4c\x58\x56\x30\xc4\x14\x73\x2a\xc8\x84\x66\x64\xcc\xc8\x34\x2f\xb3\x98\x24\x99\x84\x1b\x9e\x9f\x0d\x2e\x47\x03\x32\x4d\x52\x06\x3c\x9e\x92\x0f\xc5\x3c\xc9\x04\x21\x85\xe0\xc9\x44\x1c\x11\xc1\x4b\x46\x9e\xf6\xf6\xf6\x6e\xe8\x44\x24\x77\x2c\xea\x0f\x7e\x78\xfd\x13\x39\x21\x53\x9a\x16\xec\x78\x6f\x2f\x9c\x96\x19\xac\xe4\x59\xb8\x4f\x7e\xdf\x23\x70\x05\x25\xc8\xa9\xf0\x03\x00\xc0\x47\x77\x94\x13\x0e\x48\x19\xfb\x4c\x34\xa1\x50\x01\xe3\xc5\xd2\x23\x12\x8c\xf3\x78\x15\x74\x37\xcf\x04\x5b\x2c\x53\x2a\x18\xac\xfc\x9f\xb8\xa0\x49\x66\xad\xc5\x54\xd0\x23\x52\xe3\x6b\x2e\xce\x44\xc9\x33\xef\x21\x5e\x4b\x9e\x7f\x60\xa8\x54\x56\xa6\x69\xb7\xb6\x0c\x16\x2c\x80\x5e\xdb\x72\x21\xe8\x8c\x15\x6d\xab\x93\x92\x73\x96\x89\x11\x02\xb5\xc1\xa4\xf9\xac\x15\x5f\xcb\x06\xeb\x6f\xdf\xd5\x57\x19\xe7\x39\x6f\x43\x9d\xe6\x7c\x41\x45\x5f\x1a\xab\xba\xaf\xc3\x71\x96\x32\x5a\xa0\x0a\xbf\xaf\xdd\xd5\xf5\xf1\xe6\xa7\xb5\x12\xb3\x49\xce\xa9\xc8\x39\x62\x38\xf0\x0b\x96\x95\x96\x03\x32\x08\x42\xdf\x09\x78\xa1\xb7\xaf\x4b\xce\xfa\x3c\x5f\xc6\xf9\x67\x0d\x78\xdc\x20\x58\x8b\xc3\xf0\x12\x8c\x72\x44\xde\xe2\xf0\x3a\xad\x3a\x0f\x4f\xb7\x06\xcd\x3d\x08\x7d\xbb\xde\xd7\x21\x5c\x30\x71\x4d\xc5\xbc\x08\xf1\x81\x7c\xc2\x23\x90\xa5\x92\x24\x80\x88\x9f\xcd\x18\xff\xa1\x4c\xd2\x38\xb0\xc4\x65\x77\x10\x18\xbe\xcc\xf2\x61\x94\x03\x4a\x92\xd1\x34\x5a\x72\xf9\xa0\xcf\xa6\xb4\x4c\x45\xe8\x19\x09\xd3\xa7\x60\x13\xd0\x0d\x72\xe8\x73\x92\x81\x3d\x00\x23\x5f\x2c\x45\x18\x5c\x4b\xa7\x12\x40\x66\x5c\xa6\xb4\x16\xc3\x20\x40\x44\xa8\x8a\x61\xa2\x3f\xf0\x88\xdb\x62\x87\x3c\x9a\x31\x20\xaa\x61\xa3\x24\x0e\xf6\xbb\x9a\xd2\x7e\x2d\x48\xd6\x1b\x53\x18\x5d\x5d\x62\x9a\xca\x79\x7f\x43\xc2\x32\x02\xfd\x40\x7f\x03\xe9\xaf\x46\xb7\x41\x97\x04\x3d\x8d\xd8\x0b\xc8\x33\x62\xe1\xd5\x1d\xad\x28\x1d\xe9\xff\x6d\xde\xb3\x85\x0a\xa1\x88\x82\x51\x9b\xa2\x46\xdb\x32\xcd\x27\x54\x8a\x7f\x02\x92\x04\xad\x21\xb1\x23\x51\x1e\x15\x68\x43\x99\xb3\xa0\x1b\xfc\x37\xc0\xd1\x82\x15\x05\x14\x08\xcf\x03\x6b\xfd\x7b\xed\x5b\xb3\x8a\x39\x8b\x0d\x06\xc3\x12\x9f\x56\xb1\x60\xe4\x8f\xf0\x79\x46\x17\x2c\x2a\x96\x69\x02\x32\xf4\x02\x13\xbe\x78\x25\x53\x12\x4a\xcc\x28\x65\xd9\x4c\xcc\xc9\xcb\x13\xf2\xdc\xd7\x00\xfc\x7f\xad\x6b\x91\x1f\x86\x7e\x6e\xad\x1d\xca\x4f\x24\xe9\xb7\xcf\xdf\x7d\x15\xc5\xba\xb0\x40\x91\x9c\x80\x63\x74\x54\x04\x3e\xf9\x0a\xf0\x45\x8d\xb5\xbb\xfe\x6d\xe3\xba\x0b\xf3\x5d\x2b\x8c\x56\x45\x56\xf8\x0d\xc3\x2e\x31\xa4\xcd\x1d\x10\x68\xa9\x3e\x8d\x4f\x81\xe2\x1b\xd5\x77\x1a\x68\x36\x50\xaa\x53\xa9\xcc\x5b\x99\xc1\x8b\xaf\x47\x70\x87\x17\xd4\x01\xc6\x25\xb9\xcc\x85\x1a\x27\x9e\x04\x6d\x21\xec\x70\xb3\x2c\x2b\xcb\x4c\x0f\x3a\x62\x2f\x78\x70\x82\x61\x49\x0b\x31\x0d\x12\x48\x81\xc3\x63\xf8\xf7\x92\x28\xe8\x08\x47\x03\x1d\xdd\xf0\xfc\xd9\xb3\x36\x67\x16\xd2\x91\xa2\x2c\x42\x0b\xf1\x6d\xd2\xe6\xbb\x39\x2d\x6e\x54\xf7\xf4\xe0\xa1\x42\x82\x31\xfc\x92\xea\xd9\xae\x32\x6f\x25\x63\x91\x73\x51\x8d\x4e\xb4\x4b\xc6\xdb\x62\x93\x46\x98\xd5\xe4\x15\x19\xcb\x9b\xfb\x1b\x20\x79\xfe\x90\x20\xb4\x58\xbc\xdc\x9d\xc5\xc1\x83\x78\x68\xa4\xc3\x06\x4b\x35\x8d\x04\x2a\xdc\xcc\x54\x04\x11\x67\x19\xcf\xae\x69\xe6\xd2\x95\x10\xb0\x60\x94\x66\x79\x29\x42\x2b\xf2\xba\xe4\xf9\x21\x5c\x7e\x5a\xfc\xa5\x95\xdd\x66\x61\xe7\x6c\x12\xb7\xa4\x05\x34\x42\x08\xae\x2f\x14\xd1\x14\x4b\xdf\x6e\x3e\x38\x7a\xde\x0e\x4b\x3d\x03\x17\x6d\xee\xbf\x2f\xf5\x0c\xfe\x2e\x39\x88\x57\x73\x62\xc9\xac\x6a\x22\x8b\x19\xa7\xef\x77\xae\xb2\xeb\xbf\x91\xd3\x4d\xa9\x47\xfd\x8c\x1e\x5b\xbc\x0f\x7f\x02\x79\xab\x61\xbf\x54\x76\x8d\x1e\x54\x4c\x5b\x33\x4e\xed\x72\xb6\xc6\xcd\xff\xd6\x84\xaa\xff\x5a\x06\xec\xaa\x9d\xd9\x43\xec\xb8\xf9\x2d\x31\xbf\x54\x1d\xdc\xce\xdd\x9b\x60\x1a\xd6\xde\x1e\x06\x46\xe2\xbf\x8d\x59\xad\x2c\x6c\x89\xcc\xde\xd3\x9e\xde\x3e\xf6\x5e\xea\xda\x72\x90\xc4\xaf\x7a\x2f\x35\xec\xab\xa7\x3d\xcf\xfa\x06\xfc\x71\x23\xd9\xec\x61\xa3\x0d\xd9\x4d\x14\xfc\x09\x01\xbb\x85\x1b\x0c\x3d\x6c\x9a\x64\x2c\x6e\x30\xf1\x5e\xa3\x91\xab\x91\x43\x1b\xd0\xb1\x6f\xaf\x90\x6b\xac\x20\xee\x04\xac\x37\x62\x32\x60\xc8\x13\x18\x83\x3f\xd3\x44\x24\xd9\xac\x36\x06\x5b\x90\x40\x07\xaa\xb3\x83\x6a\xcd\x74\x84\xa5\xb0\x5f\xb4\x89\xa7\xb4\x10\xc3\x7c\x66\x2a\x6b\x04\x7b\xb1\x05\x0c\x6b\x27\x15\x0d\x6d\x88\x37\x0e\xc0\xbd\x12\x04\xa3\x72\x32\x81\x40\x9c\x96\x69\xba\x22\x3a\xc2\xe2\xa0\x26\x4b\xc3\x3c\xef\x49\xa6\xd4\xc7\x5d\x40\x9a\xd3\xb8\x49\xfd\x66\x01\x86\x00\x4d\x7e\xa4\x49\x8a\x28\x9e\xa3\xda\xed\x50\x71\x9b\x32\x31\x99\xef\xce\xee\x47\x04\xff\x1a\x7e\x63\xdc\x37\xef\xce\x4f\x6e\xb3\xbf\x86\x9f\x60\x45\x63\x30\x35\xb3\xbb\x05\xe8\xe2\x6b\xd8\xa9\x30\xda\x9d\xa1\x0e\x99\xed\x2c\x77\x72\x4c\x33\x01\x6f\x27\x0b\x19\xbb\xde\x97\xe7\x3b\x9b\xa4\x95\xa7\x14\x62\xb5\x64\x90\xf1\x3c\xed\xca\xa3\x47\x28\xdf\x2a\xae\xbb\xea\x5c\xae\xf9\xdc\x13\x9f\xc8\x63\x4f\xf6\x49\x1f\x7c\xfe\x7a\x31\xfc\x59\x88\xe5\x0d\xfb\x54\x82\x21\xcd\xde\x0b\xd6\xa3\x7c\xc9\xb2\x8a\x8b\x19\x6f\xd1\x96\x9a\x13\xf9\xe3\x0f\x97\xd7\x06\x33\xc3\x84\xc0\xe3\xd8\xb6\xc3\x31\x35\xe1\x7d\x32\xc6\x78\x75\x42\x5e\x1c\x1e\x92\x6f\xbe\x21\xd6\xc3\x97\xe4\x3b\x98\x8e\x5b\xf6\xce\x46\x04\x40\x41\x11\xf3\xa9\x51\x1f\x5c\x7a\x42\x3a\x86\x71\xa7\x6d\xcc\x53\x46\xc0\x4a\xdb\x3c\xb1\x09\xbe\xda\xba\xd7\x40\x4c\x50\xf0\x5f\xa3\xab\xcb\x68\x49\xb9\x9c\x14\x3f\x41\x45\x2a\x96\x30\x10\xb2\x5b\xf6\x9b\x68\x1b\x05\xc9\x84\x62\x3e\x86\xf7\x6c\x66\x34\x83\x20\x78\xc8\x76\x46\xdb\xc0\xf4\x90\x5d\x36\xea\x4d\x47\x93\xde\x2e\xb1\xd7\x9b\x42\xa4\xb2\xb8\xe6\x41\xe9\x7c\xcb\x05\xea\xf7\xfd\x0e\x90\x70\x68\xb0\xd6\x23\x01\xeb\x04\x54\x05\x94\x26\xbd\x3d\xa2\xfe\x74\x79\xd6\xd5\x8b\x83\x82\x65\x71\x1f\xf2\xee\x78\x93\x15\xc8\x54\x36\x43\x18\x35\x02\x3f\x25\xa0\xcf\xea\x14\xfb\x99\xd1\x98\xf1\x30\x38\xcb\x33\x01\xc3\xd7\xc1\x2d\xa0\xe1\xd9\x05\x5d\x2e\xd3\x44\x9d\x98\xf5\x3e\x14\x30\x17\x5b\xc2\x18\x66\x26\xe2\x30\x9f\xb3\x59\x32\x5d\x85\xd6\x60\xa1\x85\x53\xdc\xb2\x38\x34\x48\xb0\xbc\xb6\x8a\x07\x0e\x42\xb2\x6a\xec\x5a\x2f\xd4\x99\xe8\x4f\x03\x3c\x12\x95\x88\xf2\xc0\xdf\x47\x77\x99\xe8\xa9\x4f\x26\xc3\xf6\x4a\x64\x1c\x5b\x99\x4b\x4f\x89\x47\x24\x38\xcd\xf4\x72\x3e\x91\xa3\x6a\xac\x4f\x65\xd6\x56\x2d\xd2\xae\x36\xcc\xa4\xb7\x03\x65\x1f\xc7\x09\x92\x90\x99\x40\x81\x9f\x41\xd0\xb6\xf3\xab\xb6\x0f\xee\x24\xba\xc2\x74\xb3\xdd\xc0\x7a\xbe\x90\xc7\x0b\x92\x98\x6b\xa0\xea\x95\x48\x08\xc2\xe2\xff\xed\x66\x02\x3f\x33\x5d\xb1\x1d\xa4\x2a\xfc\x9e\xc4\x16\x11\x8b\xb9\xa9\x20\x6b\x5b\x22\x84\x8d\x44\x3e\xcc\x27\x34\x65\x48\x68\x24\x2d\x06\x59\x05\x23\x31\xa1\x82\xe0\x6c\xe9\x00\xe1\x01\x86\x01\x92\xaa\x54\xba\x38\x6f\x53\x62\x7d\x73\x4d\xb9\xf5\x82\xa1\xe5\xed\xdb\xf5\xcd\xe0\xc7\xf3\x5f\x41\xaf\xce\x12\x68\x1c\x74\xaa\x91\xf8\xf4\xec\xf6\xfc\xcd\xe0\xfd\xd9\xf0\x74\x34\x7a\x7f\x79\x7a\x31\x00\x20\x0d\xfd\x8c\x74\xf0\x55\xcf\x81\x7a\x63\x67\xe3\xdc\x9c\x9f\xbe\xbf\xb9\x1a\x22\x6c\x87\xe7\x69\x6d\xed\xe7\xf3\x7e\x7f\x70\x89\xab\x94\x27\xf4\x60\x9e\xc4\x31\xcb\x2c\xa0\x8b\xc1\xe5\xeb\xf7\x57\xd7\x12\xe4\xd0\x7b\x7c\x36\xbc\x1a\x0d\xfa\xb0\xf0\xdc\x5b\xb8\x3e\xbd\x19\x5c\xde\xba\x92\x2a\x75\xa4\x94\xb0\x8b\x39\x80\x69\x2d\x8d\x79\x9d\x95\x56\x72\x34\x18\x0e\xce\x6e\xaf\x6e\x10\x31\xaa\x30\x6b\xfa\x49\x9c\xe1\xf9\xe5\x2f\x6d\x18\x30\x4d\x7c\xf4\xe1\x5b\x40\x1b\x44\xea\x9f\x8f\x2e\xce\x41\x87\xc1\x1b\xd0\x07\xc0\x43\x7d\x7a\x05\x1a\x5c\x81\x3f\xc1\xaf\x8c\x8b\x15\x94\x57\xa7\x46\x36\x02\x85\x1d\x28\x6e\x79\x39\x99\x43\x2b\xe7\xa2\x03\x43\xf9\xf7\x1b\xa4\x8e\xb5\x40\x8e\xc0\x97\x39\xc4\x06\x46\x0c\x88\x62\xb9\xeb\xe6\xea\xdf\xef\x7f\x19\xfc\x07\xc4\xb9\x3c\xfd\x61\x28\x2d\x8f\x6f\x7d\x2d\x98\x38\x5e\xe0\xc3\x79\x52\x1c\x43\x8b\x22\x18\x78\x04\xe9\xc8\x17\x81\x0a\x0c\x17\xa3\xf7\x38\x4f\x60\xf2\x58\x7e\x3c\xb6\xd6\x8b\x79\xfe\xb9\xad\xb3\xc8\x0a\x63\x11\x79\x72\x72\x52\x45\x89\xdf\x4a\x14\xa0\x9b\x00\xd1\x04\x06\xce\x62\x98\x14\x22\xa2\x71\x1c\xd6\xc2\xda\x7f\xed\x25\x49\xa0\x02\xd8\x31\x4e\x05\x64\xcc\xb8\x84\x74\xb7\xc2\xb7\xab\x5e\x72\x37\x22\x3a\x9a\xa2\x88\xfe\x6b\x91\xb5\xad\x38\xc4\x3f\x7b\xb0\xe2\xca\x7e\x0f\x54\x9d\xb3\x45\x7e\xc7\x1e\x47\x7b\x8c\x82\x46\x3c\x8c\xfe\x68\x9a\x4f\xca\xda\x1b\x84\x2d\x61\xb0\xc5\x3c\x22\x9f\xcd\xd2\x56\x03\x21\xc8\x5b\x87\xb0\x6b\x21\xf2\x3d\xe9\x60\x64\xc9\x18\x47\x4b\x77\xde\x19\xb1\x5c\x27\x50\x39\xe7\x55\xef\x65\x9d\xa6\x05\x9d\x3e\x5f\x62\x56\xd1\x19\x55\x22\x1c\x5b\x8b\xcd\xef\x67\x1d\xf2\x9e\x4f\x80\x93\xfb\xe0\x78\xcf\x35\xa0\xce\xa8\x9a\x2f\x61\x74\xe1\xab\x11\xec\x7c\x26\x02\x46\xa5\x7a\x25\xda\xb7\x09\xa1\x07\x1f\x40\xa8\x91\xc6\x34\xe1\x85\xb8\x00\x42\x43\x5b\x2a\x19\x1b\x3b\xc8\x22\x09\x41\x51\x18\x31\x21\x4b\x3f\xb4\x34\x1d\x4c\x85\xa7\xb0\x1b\x69\xba\x31\x50\x68\xec\xcb\x72\xd9\xe9\x42\xb5\x82\x70\xeb\xd4\xb4\x6b\x88\x4f\x6c\x3c\x5d\xd5\x9a\xee\x83\x57\x5c\x52\x3a\x66\x29\x8c\xd5\xe3\x15\xf0\xb1\x04\x9a\x39\xa0\x49\x0c\xe5\x73\x17\x72\xa6\x9b\xb9\x22\xbf\x7d\x07\x29\xc1\x07\x74\x32\x8f\xa0\x8b\xa7\xe1\x5e\x43\xae\x39\xf6\x3c\x05\xa0\x4e\x9a\x74\xf6\xab\xc6\x50\xc5\x66\x5a\xfb\x60\x20\x6d\xb7\xc4\x12\x3f\x13\xca\x04\x55\x63\xb7\x9f\x6a\x5f\x25\x1f\x7d\x04\xf1\x90\x74\x22\xd8\xa2\x51\x34\x13\x3f\xb7\xaa\x06\xc0\x90\x33\x81\xe1\xfc\xa3\x1f\x3b\x50\xd2\x07\x98\x81\x58\xe4\x18\xec\x51\xc2\x8e\x04\x03\x27\x3c\x62\x3e\xe3\x05\xbd\x4e\xd7\xa3\x4d\x96\x5b\x52\xfe\xc2\x56\xe3\x9c\xf2\x98\x64\xf4\x2e\x51\x84\xe5\x52\x0c\xc5\x70\x81\x49\x57\x97\xf3\x23\x5b\xa9\x9e\xdb\x22\x29\x4e\x67\xfa\x78\x18\x13\xd0\x3d\xab\x44\x39\x13\x68\xdb\xa3\x64\x8c\x07\x18\xee\x62\x06\xd3\x70\xe3\x82\xc1\xaa\xd3\x43\x14\x7c\x6a\xbd\x41\x03\xad\x92\xa9\xfc\x72\x44\x16\x93\xa4\xc8\x3a\x82\xa8\x89\xa8\x4b\x92\x59\x96\x73\xe6\xf4\x2a\x34\xd0\x2e\x3d\x7a\xcb\xcb\xe4\x1a\x4b\x79\xbf\x54\x75\x13\xb6\x18\x34\x23\x78\x24\xd2\xd5\x62\xc0\x06\x68\x8c\x80\xed\xe2\xb4\x15\x2b\x6f\xec\xab\x1d\x59\x6e\x91\xd1\x72\x09\x96\xf2\x16\x2e\x9d\x23\xd9\x06\x3b\xfb\xae\x41\xfb\x49\xb1\x48\x8a\xc2\x28\xa2\xd4\x84\xd0\x1e\x8c\xce\x1c\xe1\x59\x04\xd1\x71\x86\xdf\xf0\x61\x4f\x7b\xf1\x0f\x5f\xbe\xde\x53\x32\x28\x26\xc4\x3a\x5c\xc7\x0b\x85\xc1\x66\x16\xfa\xdd\x59\x2e\x40\x03\x0c\x6b\x89\xa6\xe5\xfa\x29\x27\x22\x97\xc6\xc6\x40\x20\xb2\x0d\x81\x58\x72\x96\xa3\xb0\x75\xfa\x5c\xa5\x88\x39\xcd\x6b\x98\x0f\x61\xdb\xef\x0a\xfe\x5d\xed\xf0\x08\x04\xef\x6f\x88\xee\x2c\x3f\x48\x08\x25\x79\x23\x9f\x8e\x6d\x12\x82\x19\x87\xe7\xfb\xea\xdb\x47\x66\x3c\x23\xa5\xef\x14\xb0\xd2\x96\x14\x38\x59\x5b\x6e\x84\xd1\xd8\xf6\x6a\xa4\xe2\xed\x12\x94\x88\x6c\x24\xf5\x99\x5d\x4d\x30\x1d\xb0\x36\x24\xc4\x2d\x25\x02\x0d\x89\x1f\xb6\x91\x30\xcb\x05\x7a\x1c\x62\x03\x4b\xc1\x7e\x97\xcc\x5c\x73\xe7\x19\x73\x07\x7a\xd8\x19\x20\x9a\x45\x12\x4c\x6b\xfd\x8c\x90\xee\xad\x3a\xec\x68\xf8\x54\xa7\xae\xae\x83\x5b\xdd\xb7\x9d\xb5\x18\x02\x3a\xc8\x6d\x49\xd0\x58\x36\x35\x2f\xec\xfd\xad\xd0\xfe\x76\xb3\x71\xf9\x91\x6a\x96\x1b\xfb\xa7\x2b\x22\xf3\x86\xc5\xd2\x8b\x5d\xf5\x4b\x5a\x4a\x4e\x23\x35\x53\xc9\x6d\xb7\xe3\xcb\xba\x29\x5a\x73\xb4\x26\x6c\xf3\xec\x6a\x1d\x61\x1b\xa3\xb4\x59\x7c\xd8\x3a\x00\xfb\x67\xca\xda\x0c\x55\xe2\x99\xda\xbc\x49\xbe\x72\xf9\x35\xa9\xf7\xed\x3f\x1b\x52\xef\xf5\xf2\xcb\x13\xaf\xd9\x43\xdb\x9a\xd2\xee\x69\xe6\x23\x36\xc5\x8c\x4e\x0a\x1f\x14\x14\xf7\x1e\xed\x90\x1c\x75\x41\x7d\x1a\xde\xef\x6d\x89\x62\x37\x55\x54\xd9\x43\x45\xb5\x7d\xea\x7f\x59\xd2\xe0\xab\x96\xba\x9f\x1e\x2b\x69\x70\x76\x3b\x42\x16\xea\x2c\x83\xec\x9a\x4f\xbe\x5a\x26\xb0\x37\xba\xd1\x2a\x1b\x90\x87\x5d\x30\x9d\x05\x6f\xd2\xdc\xbc\x67\xaa\x1c\xb2\xcd\xfb\xbb\x27\xab\x3d\xe9\xb5\xb5\xf0\xbc\x14\x05\xee\xe6\xe5\xfc\x78\xcf\xec\xe7\x9c\xf3\x6c\x9b\xff\x04\xe5\x33\xf9\x71\x2f\x8b\xd4\xed\xb1\x7b\x3c\xa0\x96\x31\xce\xa5\xbf\x64\xe9\x80\x8c\x78\x52\x79\x6f\x92\xc3\xfc\x9f\x64\x85\x86\xad\x4d\x3a\x4d\xa3\xc1\xc6\xff\x72\xc2\x1e\xa7\x25\xaf\x0f\x0e\xd2\x24\xeb\xbd\xff\x06\x00\x00\xff\xff\x6f\xa9\xe4\xbf\xb2\x30\x00\x00") +var _webJsIndexJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x3a\xeb\x72\xdb\x36\xd6\xff\xfd\x14\x30\xbf\x99\x8a\x4e\x64\xca\x49\x3b\xdf\xee\xd8\x71\x3a\xae\xa5\xb6\xde\xca\x97\xb1\x9c\x6c\x77\x32\x99\x0c\x24\x42\x12\x53\x8a\x50\x40\xd0\xa9\xa6\xd5\xbb\xef\x39\x00\x28\x02\x20\x29\xcb\x8d\xdb\x2d\x7f\xd8\x14\x71\xee\x77\x80\xec\xf5\xc8\x39\x5f\xae\x44\x32\x9b\x4b\xf2\xf2\xe8\xc5\xff\x93\xbb\x64\x41\x46\x73\x9a\x65\x3c\x8b\xc8\x59\x9a\x12\xb5\x96\x13\xc1\x72\x26\xee\x59\x1c\xed\x01\xce\x9b\x9c\x11\x3e\x25\x72\x9e\xe4\x24\xe7\x85\x98\x30\x32\xe1\x31\x23\xf0\x73\xc6\xef\x99\xc8\x58\x4c\xc6\x2b\x58\x67\xe4\xf2\xe2\x8e\xa4\xc9\x84\x65\x39\x43\x4c\x39\xa7\x92\x4c\x68\x46\xc6\x8c\x4c\x79\x91\xc5\x24\xc9\x14\xdc\xf0\xe2\x7c\x70\x35\x1a\x90\x69\x92\x32\xe0\xf1\x8c\x7c\xcc\xe7\x49\x26\x09\xc9\xa5\x48\x26\xf2\x98\x48\x51\x30\xf2\xac\xb7\xb7\x77\x4b\x27\x32\xb9\x67\x51\x7f\xf0\xdd\x9b\x1f\xc8\x29\x99\xd2\x34\x67\x27\x7b\x7b\xe1\xb4\xc8\x60\x85\x67\xe1\x01\xf9\x6d\x8f\xc0\x15\x14\x20\xa7\xc6\x0f\x00\x00\x1f\xdd\x53\x41\x04\x20\x65\xec\x33\x31\x84\x42\x0d\x8c\x17\x4b\x8f\x49\x30\xe6\xf1\x2a\xe8\x6e\x9e\x49\xb6\x58\xa6\x54\x32\x58\xf9\x3f\x79\x49\x93\xcc\x5a\x8b\xa9\xa4\xc7\xa4\xc6\xb7\xbc\x04\x93\x85\xc8\xbc\x87\x78\x2d\x05\xff\xc8\x50\xa9\xac\x48\xd3\x6e\x6d\x19\x2c\x98\x03\xbd\xb6\xe5\x5c\xd2\x19\xcb\xdb\x56\x27\x85\x10\x2c\x93\x23\x04\x6a\x83\x49\xf9\xac\x15\xdf\xc8\x06\xeb\xef\xde\xd7\x57\x99\x10\x5c\xb4\xa1\x4e\xb9\x58\x50\xd9\x57\xc6\xaa\xee\xeb\x70\x82\xa5\x8c\xe6\xa8\xc2\x6f\x6b\x77\x75\x7d\xb2\xf9\x69\xad\xc4\x6c\xc2\x05\x95\x5c\x20\x86\x03\xbf\x60\x59\x61\x39\x20\x83\x20\xf4\x9d\x80\x17\x7a\xfb\xa6\x10\xac\x2f\xf8\x32\xe6\x9f\x0d\xe0\x49\x83\x60\x2d\x0e\xc3\x4b\x32\x2a\x10\x79\x8b\xc3\xeb\xb4\xea\x3c\x3c\xdd\x1a\x34\xf7\x20\xcc\xed\xfa\xc0\x84\x70\xce\xe4\x0d\x95\xf3\x3c\xc4\x07\xea\x89\x88\x40\x96\x4a\x92\x00\x22\x7e\x36\x63\xe2\xbb\x22\x49\xe3\xc0\x12\x97\xdd\x43\x60\xf8\x32\xab\x87\x11\x07\x94\x24\xa3\x69\xb4\x14\xea\x41\x9f\x4d\x69\x91\xca\xd0\x33\x12\xa6\x4f\xce\x26\xa0\x1b\xe4\xd0\xe7\x24\x03\x7b\x00\x06\x5f\x2c\x65\x18\xdc\x28\xa7\x12\x40\x66\x42\xa5\xb4\x11\xa3\x44\x80\x88\xd0\x15\xa3\x8c\xfe\xc0\x23\x6e\x8b\x1d\x8a\x68\xc6\x80\xa8\x81\x8d\x92\x38\x38\xe8\x1a\x4a\x07\xb5\x20\x59\x6f\x4c\x51\xea\xea\x12\x33\x54\x2e\xfa\x1b\x12\x96\x11\xe8\x47\xfa\x2b\x48\x7f\x3d\xba\x0b\xba\x24\xe8\x19\xc4\x5e\x40\x9e\x13\x0b\xaf\xee\x68\x4d\xe9\xd8\xfc\x6f\xf3\x9e\x2d\x54\x08\x45\x14\x8c\xda\x14\x35\xc6\x96\x29\x9f\x50\x25\xfe\x29\x48\x12\xb4\x86\xc4\x8e\x44\x45\x94\xa3\x0d\x55\xce\x82\x6e\xf0\xbf\x04\x8e\x16\x2c\xcf\xa1\x40\x78\x1e\x58\x9b\xdf\x6b\xdf\x9a\x55\xcc\x59\x6c\x30\x18\x96\xf8\xb4\x8a\x85\x52\xfe\x08\x9f\x67\x74\xc1\xa2\x7c\x99\x26\x20\x43\x2f\x28\xc3\x17\xaf\x64\x4a\x42\x85\x19\xa5\x2c\x9b\xc9\x39\x79\x75\x4a\x5e\xf8\x1a\x80\xff\x6f\x4c\x2d\xf2\xc3\xd0\xcf\xad\xb5\x43\x79\x5f\x91\x7e\xf7\xe2\xfd\x17\x51\xac\x0b\x0b\x14\xc9\x29\x38\xc6\x44\x45\xe0\x93\xaf\x00\x5f\xd6\x58\xbb\xeb\x5f\x37\xae\xbb\x30\xdf\xb4\xc2\x18\x55\x54\x85\xdf\x30\xec\x92\x92\x74\x79\x07\x04\x5a\xaa\x4f\xe3\x53\xa0\xf8\x56\xf7\x9d\x06\x9a\x0d\x94\xea\x54\x2a\xf3\x56\x66\xf0\xe2\xeb\x09\xdc\xe1\x05\x75\x80\x71\x49\xae\xb8\xd4\xe3\xc4\x7e\xd0\x16\xc2\x0e\x37\xcb\xb2\xaa\xcc\xf4\xa0\x23\xf6\x82\x47\x27\x18\x96\xb4\x10\xd3\x20\x81\x14\x38\x3a\x81\x7f\xaf\x88\x86\x8e\x70\x34\x30\xd1\x0d\xcf\x9f\x3f\x6f\x73\x66\xae\x1c\x29\x8b\x3c\xb4\x10\xdf\x25\x6d\xbe\x9b\xd3\xfc\x56\x77\x4f\x0f\x1e\x2a\x24\x18\xc3\x2f\xa9\x9e\xed\x2a\xf3\x56\x32\xe6\x5c\xc8\x6a\x74\xa2\x5d\x32\xde\x16\x9b\x34\xc2\xac\x26\xaf\xc9\x58\xdd\x3c\xdc\x00\xc9\x8b\xc7\x04\xa1\xc5\xe2\xd5\xee\x2c\x0e\x1f\xc5\xc3\x20\x1d\x35\x58\xaa\x69\x24\xd0\xe1\x56\x4e\x45\x10\x71\x96\xf1\xec\x9a\x56\x5e\xa6\x12\x02\x16\x8c\xd2\x8c\x17\x32\xb4\x22\xaf\x4b\x5e\x1c\xc1\xe5\xa7\xc5\x5f\x5a\xd9\x6d\x16\x76\xce\x26\x71\x4b\x5a\x40\x23\x84\xe0\xfa\x83\x22\x96\xc5\xd2\xb7\x9b\x0f\x8e\x9e\xb7\xc3\xd2\xcc\xc0\x79\x9b\xfb\x1f\x4a\xbd\x12\x7f\x97\x1c\xc4\xab\x39\xb1\x54\x56\x35\x91\xc5\x8c\x33\xf7\x3b\x57\xd9\xf5\xdf\xc8\xe9\x65\xa9\x47\xfd\x4a\x3d\xb6\x78\x1f\xfe\x04\xea\xd6\xc0\x3e\x5a\x76\xd5\x97\x2d\x43\x92\xdf\x7f\x27\xfb\xf5\x52\xe9\x3f\x7e\x77\x54\x99\xb9\xc5\x79\xc6\x2a\x06\x2a\xa8\xd4\x69\xc8\x6f\xd8\xe0\xc1\x84\xba\x23\x9d\x16\x31\x76\xe9\x84\x86\x96\xde\xa8\x6d\x0d\xfd\xff\x6d\x14\xe8\x11\xc2\x8a\x81\xae\xde\x5c\x3e\x26\x14\x36\xbf\x15\xe6\x1f\x55\x07\x77\xa4\x0f\xd6\x08\x03\x6b\xef\x70\x83\x52\xe2\xbf\x8d\x59\xad\x42\xd2\x92\x5c\xbd\x67\x3d\xb3\x03\xee\xbd\x32\xe5\xf1\x30\x89\x5f\xf7\x5e\x19\xd8\xd7\xcf\x7a\x9e\xf5\x4b\xf0\x27\x4a\x46\xa3\x6b\xb9\x0d\x8f\x36\x64\x37\x51\xf0\x27\x04\xec\x16\x6e\x30\xb7\xb1\x69\x92\xb1\xb8\xc1\xc4\x7b\x8d\x46\xae\xa6\x26\x63\x40\xc7\xbe\xbd\x5c\xad\xb1\x9c\xb8\x43\xbc\xd9\x4b\xaa\x80\x21\xfb\x30\xc9\x7f\xa6\x89\x4c\xb2\x59\x6d\x92\xb7\x20\x81\x0e\x34\x18\x07\xd5\x1a\x4b\x75\x41\xd1\x9b\x0e\x03\x92\xd2\x5c\x0e\xf9\x4c\x55\x32\xef\x59\x5b\x29\xab\xb1\xdb\x08\xd6\xc8\xaa\x85\x6a\x04\x3b\xd7\x05\x8c\xb6\xa7\x95\xb8\xc6\xe6\x6f\x1d\x80\x87\xb9\x8f\x8a\xc9\x04\x62\x7e\x5a\xa4\xe9\x8a\x98\x60\x8e\xeb\xb2\x34\xec\x7e\x3c\xc9\xb4\xa5\x71\xcf\x94\x72\x1a\x37\x59\xba\x59\x80\x21\x40\x93\xef\x69\x92\xba\x36\x78\xc0\x0e\x15\xb7\x29\x93\x93\xf9\xee\xec\xbe\x47\xf0\x2f\xe1\x37\xc6\x53\x86\xdd\xf9\xa9\x43\x89\x2f\xe1\x27\x59\xde\x18\xb7\xcd\xec\xee\x00\x3a\xff\x12\x76\x3a\x8c\x76\x67\x68\x42\x66\x3b\xcb\x9d\x1c\xd3\x4c\xc0\xdb\xf7\x43\x71\x58\x1f\xa8\xd3\xb0\x4d\x7d\x50\x67\x3a\x72\xb5\x64\x50\x5c\x44\xda\x55\x07\xb5\xd0\x29\x74\x5c\x77\xf5\x29\x66\xf3\x29\x31\x3e\x51\x87\xc4\xec\x93\x39\x26\xfe\xf9\x72\xf8\xa3\x94\xcb\x5b\xf6\xa9\x00\x43\x96\x3b\x55\x58\x8f\xf8\x92\x65\x15\x97\x72\x33\x80\xb6\x34\x9c\xb0\x08\x38\xbc\x36\x98\x19\x26\x04\x1e\x5e\xb7\x1d\x25\xea\x79\xf8\x53\x69\x8c\xd7\xa7\xe4\xe5\xd1\x11\xf9\xea\x2b\x62\x3d\x7c\x45\xbe\x81\xbd\x44\xcb\xb4\x55\x8a\x00\x28\x28\x22\x9f\x96\xea\x83\x4b\x4f\x49\xa7\x64\xdc\x69\x9b\xab\xb4\x11\xb0\xa8\x37\xcf\xb7\x52\xac\xb6\xee\xcc\x10\x13\x14\xfc\xd7\xe8\xfa\x2a\x5a\x52\xa1\xe6\xea\x4f\x50\x91\xf2\x25\x8c\xcf\xec\x8e\xfd\x2a\xdb\x06\x67\x32\xa1\x98\x8f\xe1\x03\x5b\x3f\xc3\x20\x08\x1e\xb3\xf9\x33\x36\x28\xdb\xd5\x4e\xc3\x5c\xc3\x41\xae\xb7\xa7\xee\xf5\xa6\x10\xa9\x2c\xae\x79\x50\x39\xdf\x72\x81\xfe\xfd\xb0\x03\x14\x1c\x1a\xac\xf5\x00\xc5\x3a\x2f\xd6\x01\x65\x48\x6f\x8f\xa8\x3f\x5d\x9e\x75\xf5\x9a\x25\x67\x59\xdc\x87\xbc\x3b\xd9\x64\x05\x32\x55\x7d\x17\xa6\x9a\xc0\x4f\x09\x68\xe9\x26\xc5\x7e\x64\x34\x66\x22\x0c\xce\x79\x26\x61\xce\x3b\xbc\x03\x34\x3c\xe9\xa1\xcb\x65\x9a\xe8\xf3\xc5\xde\xc7\x1c\x66\x74\x4b\x98\x92\x59\x19\x71\x98\xcf\xd9\x2c\x99\xae\x42\x6b\x86\x31\xc2\x69\x6e\x59\x1c\x96\x48\xb0\xbc\xb6\x8a\x07\xce\x5c\xaa\x6a\xec\x5a\x2f\xf4\x09\xf2\x0f\x03\x3c\x40\x56\x88\xea\xf5\x88\x8f\xee\x32\x31\x03\xa6\x4a\x86\xed\x95\xa8\x74\x6c\x65\x2e\x33\x90\x1e\x93\xe0\x2c\x33\xcb\x7c\xa2\xa6\xe2\xd8\x9c\x61\xad\xad\x5a\x64\x5c\x5d\x32\x53\xde\x0e\xb4\x7d\x1c\x27\x28\x42\xe5\xb0\x0b\xfc\x4a\x04\x63\x3b\xbf\x6a\xfb\xe0\x4e\xa2\x6b\x4c\x37\xdb\x4b\x58\xcf\x17\xea\x30\x46\x11\x73\x0d\x54\xbd\x40\x0a\x41\x58\xfc\xbf\xdd\x4c\xe0\x67\x66\x2a\xb6\x83\x54\x85\xdf\x7e\x6c\x11\xb1\x98\x97\x15\x64\x6d\x4b\x84\xb0\x91\xe4\x43\x3e\xa1\x29\x43\x42\x23\x65\x31\xc8\x2a\x98\xbe\x09\x95\x04\xc7\x58\x07\x08\x8f\x7b\x4a\x20\xa5\x4a\xa5\x8b\xf3\xee\x29\x36\x37\x37\x54\x58\xaf\x63\x5a\xde\x55\xde\xdc\x0e\xbe\xbf\xf8\x19\xf4\xea\x2c\x81\xc6\x61\xa7\x9a\xbe\xcf\xce\xef\x2e\xde\x0e\x3e\x9c\x0f\xcf\x46\xa3\x0f\x57\x67\x97\x03\x00\x32\xd0\xcf\x49\x07\x5f\x8c\x1d\xea\xf7\x9b\x36\xce\xed\xc5\xd9\x87\xdb\xeb\x21\xc2\x76\x04\x4f\x6b\x6b\x3f\x5e\xf4\xfb\x83\x2b\x5c\xa5\x22\xa1\x87\xf3\x24\x8e\x59\x66\x01\x5d\x0e\xae\xde\x7c\xb8\xbe\x51\x20\x47\xde\xe3\xf3\xe1\xf5\x68\xd0\x87\x85\x17\xde\xc2\xcd\xd9\xed\xe0\xea\xce\x95\x54\xab\xa3\xa4\x84\x0d\xd3\x21\x4c\x6b\x69\x2c\xea\xac\x8c\x92\xa3\xc1\x70\x70\x7e\x77\x7d\x8b\x88\x51\x85\x59\xd3\x4f\xe1\x0c\x2f\xae\x7e\x6a\xc3\x80\x69\xe2\x17\x1f\xbe\x05\xb4\x41\xa4\xfe\xc5\xe8\xf2\x02\x74\x18\xbc\x05\x7d\x00\x3c\x34\x67\x7d\xa0\xc1\x35\xf8\x13\xfc\xca\x84\x5c\x41\x79\x75\x6a\x64\x23\x50\xd8\x81\xe2\xc6\x8b\xc9\x1c\x5a\xb9\x90\x1d\x18\xca\xbf\xdd\x20\x75\xac\x05\x72\x0c\xbe\xe4\x10\x1b\x18\x31\x20\x8a\xe5\xae\xdb\xeb\x7f\x7f\xf8\x69\xf0\x1f\x10\xe7\xea\xec\xbb\xa1\xb2\x3c\xbe\x23\xb7\x60\xe2\x78\x81\x0f\xe7\x49\x7e\x02\x2d\x8a\x60\xe0\x11\xa4\xa3\x5e\x9b\x6a\x30\x5c\x8c\x3e\xe0\x3c\x81\xc9\x63\xf9\xf1\xc4\x5a\xcf\xe7\xfc\x73\x5b\x67\x51\x15\xc6\x22\xb2\x7f\x7a\x5a\x45\x89\xdf\x4a\x34\xa0\x9b\x00\xd1\x04\x06\xce\x7c\x98\xe4\x32\xa2\x71\x1c\xd6\xc2\xda\x7f\x49\xa8\x48\xa0\x02\xd8\x31\xce\x24\x64\xcc\xb8\x80\x74\xb7\xc2\xb7\xab\x3f\x09\x68\x44\x74\x34\x45\x11\xfd\x97\x48\x6b\x5b\x71\x88\x7f\xf6\x68\xc5\xb5\xfd\x1e\xa9\xba\x60\x0b\x7e\xcf\x9e\x46\x7b\x8c\x82\x46\x3c\x8c\xfe\x68\xca\x27\x45\xed\x7d\xcb\x96\x30\xd8\x62\x1e\xc9\x67\xb3\xb4\xd5\x40\x08\xf2\xce\x21\xec\x5a\x88\x7c\x4b\x3a\x18\x59\x2a\xc6\xd1\xd2\x9d\xf7\xa5\x58\xae\x13\xa8\x9a\xf3\xaa\xb7\xd8\x4e\xd3\x82\x4e\xcf\x97\x98\x55\x74\x46\xb5\x08\x27\xd6\x62\xf3\xdb\x6c\x87\xbc\xe7\x13\xe0\xe4\x3e\x38\xd9\x73\x0d\x68\x32\xaa\xe6\x4b\x18\x5d\xc4\x6a\x04\x3b\x9f\x89\x84\x51\xa9\x5e\x89\x0e\x6c\x42\xe8\xc1\x47\x10\x6a\xa4\x31\x4d\x44\x2e\x2f\x81\xd0\xd0\x96\x4a\xc5\xc6\x0e\xb2\x28\x42\x50\x14\x46\x4c\xaa\xd2\x0f\x2d\xcd\x04\x53\xee\x29\xec\x46\x9a\x69\x0c\x14\x1a\xfb\xb2\x58\x76\xba\x50\xad\x20\xdc\x3a\x35\xed\x1a\xe2\x13\x1b\x4f\x57\xb7\xa6\x87\xe0\x35\x97\x94\x8e\x59\x0a\x63\xf5\x78\x05\x7c\x2c\x81\x66\x0e\x68\x12\x43\xf9\xdc\x85\x5c\xd9\xcd\x5c\x91\xdf\xbd\x87\x94\x10\x03\x3a\x99\x47\xd0\xc5\xd3\x70\xaf\x21\xd7\x1c\x7b\x9e\x01\x50\x27\x4d\x3a\x07\x55\x63\xa8\x62\x33\xad\x7d\x5e\x91\xb6\x5b\x62\x89\x1f\x55\x65\x92\xea\xb1\xdb\x4f\xb5\x2f\x92\x8f\x3e\x81\x78\x48\x3a\x91\x6c\xd1\x28\x5a\x19\x3f\x77\xba\x06\xc0\x90\x33\x81\xe1\xfc\x17\x3f\x76\xa0\xa4\x0f\x30\x03\xb1\xc8\x31\xd8\xa3\x84\x1d\x05\x06\x4e\x78\xc2\x7c\xc6\x0b\x7a\x9d\xa9\x47\x9b\x2c\xb7\xa4\xfc\x89\xad\xc6\x9c\x8a\x98\x64\xf4\x3e\xd1\x84\xd5\x52\x0c\xc5\x70\x81\x49\x57\x97\xf3\x17\xb6\xd2\x3d\xb7\x45\x52\x9c\xce\xcc\x49\x34\x26\xa0\x7b\x2c\x8a\x72\x26\xd0\xb6\x47\xc9\x18\x0f\x30\xdc\xc5\x0c\xa6\xe1\xc6\x85\x12\xab\x4e\x0f\x51\xf0\xa9\xf5\xbe\x11\xb4\x4a\xa6\xea\x3b\x1b\x55\x4c\x92\x3c\xeb\x48\xa2\x27\xa2\x2e\x49\x66\x19\x17\xcc\xe9\x55\x68\xa0\x5d\x7a\xf4\x96\x57\xef\x35\x96\xea\x7e\xa9\xeb\x26\x6c\x31\x68\x46\xf0\x48\xa4\x6b\xc4\x80\x0d\xd0\x18\x01\xdb\xc5\x69\x2b\x56\xde\xd8\x57\x3b\xb2\xdc\x22\xa3\xe5\x12\x2c\xe5\x2d\x5c\x3a\xc7\xaa\x0d\x76\x0e\x5c\x83\xf6\x93\x7c\x91\xe4\x79\xa9\x88\x56\x13\x42\x7b\x30\x3a\x77\x84\x67\x11\x44\xc7\x39\x7e\xf1\x88\x3d\xed\xe5\x3f\x7c\xf9\x7a\xcf\xc8\x20\x9f\x10\xeb\x1c\x1f\x2f\x14\x06\x9b\x59\xe8\x77\x67\xb5\x00\x0d\x30\xac\x25\x9a\x91\xeb\x07\x4e\x24\x57\xc6\xc6\x40\x20\xaa\x0d\x81\x58\x6a\x96\xa3\xb0\x75\xfa\x5c\xa5\x48\x79\x9a\xd7\x30\x1f\xc2\xb6\xdf\x15\xfc\x9b\xda\xe1\x11\x08\xde\xdf\x10\xdd\x59\x7e\x90\x10\x4a\xf2\x46\x3e\x13\xdb\x24\x04\x33\x0e\x2f\x0e\xf4\x97\xa2\xac\xf4\x8c\x92\xbe\x93\xc3\x4a\x5b\x52\xe0\x64\x6d\xb9\x11\x46\x63\xdb\xab\x91\x8e\xb7\x2b\x50\x22\xb2\x91\xf4\x47\x89\x35\xc1\x4c\xc0\xda\x90\x10\xb7\x94\x48\x34\x24\x7e\x06\x48\xc2\x8c\x4b\xf4\x38\xc4\x06\x96\x82\x83\x2e\x99\xb9\xe6\xe6\x19\x73\x07\x7a\xd8\x19\x20\x9a\x45\x12\x4c\x6b\xfd\x8c\x90\xee\x9d\x3e\xec\x68\xf8\xb0\xa9\xae\xae\x83\x5b\xdd\xb7\x9d\xb5\x94\x04\x4c\x90\xdb\x92\xa0\xb1\x6c\x6a\x5e\xd8\xfb\x5b\xa1\x83\xed\x66\x13\xea\x93\xde\x8c\x97\xf6\x4f\x57\x44\xe5\x0d\x8b\x95\x17\xbb\xfa\x97\xb2\x94\x9a\x46\x6a\xa6\x52\xdb\x6e\xc7\x97\x75\x53\xb4\xe6\x68\x4d\xd8\xe6\xd9\xd5\x3a\xc2\x2e\x8d\xd2\x66\xf1\x61\xeb\x00\xec\x9f\x29\x1b\x33\x54\x89\x57\xd6\xe6\x4d\xf2\x15\xcb\x2f\x49\xbd\xaf\xff\xd9\x90\x7a\x6f\x96\x7f\x3c\xf1\x9a\x3d\xb4\xad\x29\xed\x9e\x66\x3e\x62\x53\xcc\x98\xa4\xf0\x41\x41\x71\xef\xd1\x0e\xc9\x51\x17\xd4\xa7\xe1\xfd\xde\x96\x28\x76\x53\x45\x95\x3d\x54\x54\xdb\xa7\xfe\x97\x25\x0d\xbe\x6a\xa9\xfb\xe9\xa9\x92\x06\x67\xb7\x63\x64\xa1\xcf\x32\xc8\xae\xf9\xe4\xab\x55\x06\xf6\x46\x37\x5a\x65\x03\xf2\xb0\x0b\xa6\xb3\xe0\x4d\x9a\x9b\xf7\x4c\x95\x43\xb6\x79\x7f\xf7\x64\xb5\x27\xbd\xb6\x16\xce\x0b\x99\xe3\x6e\x5e\xcd\x8f\x0f\xcc\x7e\xce\x39\xcf\xb6\xf9\x4f\x52\x31\x53\x9f\x42\xb3\x48\xdf\x9e\xb8\xc7\x03\x7a\x19\xe3\x5c\xf9\x4b\x95\x0e\xc8\x88\xfd\xca\x7b\x13\x0e\xf3\x7f\x92\xe5\x06\xb6\x36\xe9\x34\x8d\x06\x1b\xff\xab\x09\x7b\x9c\x16\xa2\x3e\x38\x28\x93\xac\xf7\xfe\x1b\x00\x00\xff\xff\xb9\x2a\xae\x51\xe0\x31\x00\x00") func webJsIndexJsBytes() ([]byte, error) { return bindataRead( @@ -126,7 +126,7 @@ func webJsIndexJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} + info := bindataFileInfo{name: "web/js/index.js", size: 12768, mode: os.FileMode(436), modTime: time.Unix(1461613222, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/cycle.go b/cycle.go index cfb975a..8a1613b 100644 --- a/cycle.go +++ b/cycle.go @@ -32,7 +32,7 @@ func (p *Project) load() { defer p.processing.Unlock() p.setStage(stageLoad) - p.setVersion("") + p.setVersion("Version not yet set") if p.filename == "" { p.errHandled(errors.New("Invalid project file name")) diff --git a/web/js/index.js b/web/js/index.js index ff07593..1633486 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -135,7 +135,11 @@ Ractive.DEBUG = false; function getVersion(id, version) { get("/log/" + id + "/" + version, function(result) { - r.set("version", version); + if (!result.data || !result.data.length || !result.data[0].version) { + r.set("version", version); + } else { + r.set("version", result.data[0].version); + } r.set("stages", result.data); }, function(result) { @@ -171,8 +175,8 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; - } else if(!project.lastLog || !project.lastLog.version) { - project.status = "waiting"; + } else if (!project.lastLog || !project.lastLog.version) { + project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; } else { From 04060ee63de0287bde49974794d928fe4f4d7363 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 19:41:03 +0000 Subject: [PATCH 22/42] Added pre-version version No fetch and load errors can be properly seen without having to run ironsmith manually. --- bindata.go | 4 ++-- cycle.go | 2 +- web/js/index.js | 10 +++++++--- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bindata.go b/bindata.go index b02a3d1..020b0c9 100644 --- a/bindata.go +++ b/bindata.go @@ -111,7 +111,7 @@ func webIndexHtml() (*asset, error) { return a, nil } -var _webJsIndexJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x3a\xeb\x72\xdb\x36\xd6\xff\xfd\x14\x08\xbf\x99\x8a\x4e\x64\xca\x49\x3b\xdf\xee\xd8\x71\x3a\xae\xa5\xb6\xde\xca\x97\xb1\x9c\x6c\x77\x32\x99\x0c\x24\x42\x12\x13\x8a\x54\x40\xd0\xa9\xa6\xd5\xbb\xef\x39\xb8\x88\x00\x48\xca\x72\xe2\x76\xcb\x1f\x36\x45\x9c\xfb\x1d\x20\x7b\x3d\x72\x96\x2f\x57\x3c\x99\xcd\x05\x79\x71\xf8\xfc\xff\xc9\x6d\xb2\x20\xa3\x39\xcd\xb2\x3c\x8b\xc8\x69\x9a\x12\xb9\x56\x10\xce\x0a\xc6\xef\x58\x1c\xed\x01\xce\xeb\x82\x91\x7c\x4a\xc4\x3c\x29\x48\x91\x97\x7c\xc2\xc8\x24\x8f\x19\x81\x9f\xb3\xfc\x8e\xf1\x8c\xc5\x64\xbc\x82\x75\x46\x2e\xce\x6f\x49\x9a\x4c\x58\x56\x30\xc4\x14\x73\x2a\xc8\x84\x66\x64\xcc\xc8\x34\x2f\xb3\x98\x24\x99\x84\x1b\x9e\x9f\x0d\x2e\x47\x03\x32\x4d\x52\x06\x3c\x9e\x92\x0f\xc5\x3c\xc9\x04\x21\x85\xe0\xc9\x44\x1c\x11\xc1\x4b\x46\x9e\xf6\xf6\xf6\x6e\xe8\x44\x24\x77\x2c\xea\x0f\x7e\x78\xfd\x13\x39\x21\x53\x9a\x16\xec\x78\x6f\x2f\x9c\x96\x19\xac\xe4\x59\xb8\x4f\x7e\xdf\x23\x70\x05\x25\xc8\xa9\xf0\x03\x00\xc0\x47\x77\x94\x13\x0e\x48\x19\xfb\x4c\x34\xa1\x50\x01\xe3\xc5\xd2\x23\x12\x8c\xf3\x78\x15\x74\x37\xcf\x04\x5b\x2c\x53\x2a\x18\xac\xfc\x9f\xb8\xa0\x49\x66\xad\xc5\x54\xd0\x23\x52\xe3\x6b\x2e\xce\x44\xc9\x33\xef\x21\x5e\x4b\x9e\x7f\x60\xa8\x54\x56\xa6\x69\xb7\xb6\x0c\x16\x2c\x80\x5e\xdb\x72\x21\xe8\x8c\x15\x6d\xab\x93\x92\x73\x96\x89\x11\x02\xb5\xc1\xa4\xf9\xac\x15\x5f\xcb\x06\xeb\x6f\xdf\xd5\x57\x19\xe7\x39\x6f\x43\x9d\xe6\x7c\x41\x45\x5f\x1a\xab\xba\xaf\xc3\x71\x96\x32\x5a\xa0\x0a\xbf\xaf\xdd\xd5\xf5\xf1\xe6\xa7\xb5\x12\xb3\x49\xce\xa9\xc8\x39\x62\x38\xf0\x0b\x96\x95\x96\x03\x32\x08\x42\xdf\x09\x78\xa1\xb7\xaf\x4b\xce\xfa\x3c\x5f\xc6\xf9\x67\x0d\x78\xdc\x20\x58\x8b\xc3\xf0\x12\x8c\x72\x44\xde\xe2\xf0\x3a\xad\x3a\x0f\x4f\xb7\x06\xcd\x3d\x08\x7d\xbb\xde\xd7\x21\x5c\x30\x71\x4d\xc5\xbc\x08\xf1\x81\x7c\xc2\x23\x90\xa5\x92\x24\x80\x88\x9f\xcd\x18\xff\xa1\x4c\xd2\x38\xb0\xc4\x65\x77\x10\x18\xbe\xcc\xf2\x61\x94\x03\x4a\x92\xd1\x34\x5a\x72\xf9\xa0\xcf\xa6\xb4\x4c\x45\xe8\x19\x09\xd3\xa7\x60\x13\xd0\x0d\x72\xe8\x73\x92\x81\x3d\x00\x23\x5f\x2c\x45\x18\x5c\x4b\xa7\x12\x40\x66\x5c\xa6\xb4\x16\xc3\x20\x40\x44\xa8\x8a\x61\xa2\x3f\xf0\x88\xdb\x62\x87\x3c\x9a\x31\x20\xaa\x61\xa3\x24\x0e\xf6\xbb\x9a\xd2\x7e\x2d\x48\xd6\x1b\x53\x18\x5d\x5d\x62\x9a\xca\x79\x7f\x43\xc2\x32\x02\xfd\x40\x7f\x03\xe9\xaf\x46\xb7\x41\x97\x04\x3d\x8d\xd8\x0b\xc8\x33\x62\xe1\xd5\x1d\xad\x28\x1d\xe9\xff\x6d\xde\xb3\x85\x0a\xa1\x88\x82\x51\x9b\xa2\x46\xdb\x32\xcd\x27\x54\x8a\x7f\x02\x92\x04\xad\x21\xb1\x23\x51\x1e\x15\x68\x43\x99\xb3\xa0\x1b\xfc\x37\xc0\xd1\x82\x15\x05\x14\x08\xcf\x03\x6b\xfd\x7b\xed\x5b\xb3\x8a\x39\x8b\x0d\x06\xc3\x12\x9f\x56\xb1\x60\xe4\x8f\xf0\x79\x46\x17\x2c\x2a\x96\x69\x02\x32\xf4\x02\x13\xbe\x78\x25\x53\x12\x4a\xcc\x28\x65\xd9\x4c\xcc\xc9\xcb\x13\xf2\xdc\xd7\x00\xfc\x7f\xad\x6b\x91\x1f\x86\x7e\x6e\xad\x1d\xca\x4f\x24\xe9\xb7\xcf\xdf\x7d\x15\xc5\xba\xb0\x40\x91\x9c\x80\x63\x74\x54\x04\x3e\xf9\x0a\xf0\x45\x8d\xb5\xbb\xfe\x6d\xe3\xba\x0b\xf3\x5d\x2b\x8c\x56\x45\x56\xf8\x0d\xc3\x2e\x31\xa4\xcd\x1d\x10\x68\xa9\x3e\x8d\x4f\x81\xe2\x1b\xd5\x77\x1a\x68\x36\x50\xaa\x53\xa9\xcc\x5b\x99\xc1\x8b\xaf\x47\x70\x87\x17\xd4\x01\xc6\x25\xb9\xcc\x85\x1a\x27\x9e\x04\x6d\x21\xec\x70\xb3\x2c\x2b\xcb\x4c\x0f\x3a\x62\x2f\x78\x70\x82\x61\x49\x0b\x31\x0d\x12\x48\x81\xc3\x63\xf8\xf7\x92\x28\xe8\x08\x47\x03\x1d\xdd\xf0\xfc\xd9\xb3\x36\x67\x16\xd2\x91\xa2\x2c\x42\x0b\xf1\x6d\xd2\xe6\xbb\x39\x2d\x6e\x54\xf7\xf4\xe0\xa1\x42\x82\x31\xfc\x92\xea\xd9\xae\x32\x6f\x25\x63\x91\x73\x51\x8d\x4e\xb4\x4b\xc6\xdb\x62\x93\x46\x98\xd5\xe4\x15\x19\xcb\x9b\xfb\x1b\x20\x79\xfe\x90\x20\xb4\x58\xbc\xdc\x9d\xc5\xc1\x83\x78\x68\xa4\xc3\x06\x4b\x35\x8d\x04\x2a\xdc\xcc\x54\x04\x11\x67\x19\xcf\xae\x69\xe6\xd2\x95\x10\xb0\x60\x94\x66\x79\x29\x42\x2b\xf2\xba\xe4\xf9\x21\x5c\x7e\x5a\xfc\xa5\x95\xdd\x66\x61\xe7\x6c\x12\xb7\xa4\x05\x34\x42\x08\xae\x2f\x14\xd1\x14\x4b\xdf\x6e\x3e\x38\x7a\xde\x0e\x4b\x3d\x03\x17\x6d\xee\xbf\x2f\xf5\x0c\xfe\x2e\x39\x88\x57\x73\x62\xc9\xac\x6a\x22\x8b\x19\xa7\xef\x77\xae\xb2\xeb\xbf\x91\xd3\x4d\xa9\x47\xfd\x8c\x1e\x5b\xbc\x0f\x7f\x02\x79\xab\x61\xbf\x54\x76\x8d\x1e\x54\x4c\x5b\x33\x4e\xed\x72\xb6\xc6\xcd\xff\xd6\x84\xaa\xff\x5a\x06\xec\xaa\x9d\xd9\x43\xec\xb8\xf9\x2d\x31\xbf\x54\x1d\xdc\xce\xdd\x9b\x60\x1a\xd6\xde\x1e\x06\x46\xe2\xbf\x8d\x59\xad\x2c\x6c\x89\xcc\xde\xd3\x9e\xde\x3e\xf6\x5e\xea\xda\x72\x90\xc4\xaf\x7a\x2f\x35\xec\xab\xa7\x3d\xcf\xfa\x06\xfc\x71\x23\xd9\xec\x61\xa3\x0d\xd9\x4d\x14\xfc\x09\x01\xbb\x85\x1b\x0c\x3d\x6c\x9a\x64\x2c\x6e\x30\xf1\x5e\xa3\x91\xab\x91\x43\x1b\xd0\xb1\x6f\xaf\x90\x6b\xac\x20\xee\x04\xac\x37\x62\x32\x60\xc8\x13\x18\x83\x3f\xd3\x44\x24\xd9\xac\x36\x06\x5b\x90\x40\x07\xaa\xb3\x83\x6a\xcd\x74\x84\xa5\xb0\x5f\xb4\x89\xa7\xb4\x10\xc3\x7c\x66\x2a\x6b\x04\x7b\xb1\x05\x0c\x6b\x27\x15\x0d\x6d\x88\x37\x0e\xc0\xbd\x12\x04\xa3\x72\x32\x81\x40\x9c\x96\x69\xba\x22\x3a\xc2\xe2\xa0\x26\x4b\xc3\x3c\xef\x49\xa6\xd4\xc7\x5d\x40\x9a\xd3\xb8\x49\xfd\x66\x01\x86\x00\x4d\x7e\xa4\x49\x8a\x28\x9e\xa3\xda\xed\x50\x71\x9b\x32\x31\x99\xef\xce\xee\x47\x04\xff\x1a\x7e\x63\xdc\x37\xef\xce\x4f\x6e\xb3\xbf\x86\x9f\x60\x45\x63\x30\x35\xb3\xbb\x05\xe8\xe2\x6b\xd8\xa9\x30\xda\x9d\xa1\x0e\x99\xed\x2c\x77\x72\x4c\x33\x01\x6f\x27\x0b\x19\xbb\xde\x97\xe7\x3b\x9b\xa4\x95\xa7\x14\x62\xb5\x64\x90\xf1\x3c\xed\xca\xa3\x47\x28\xdf\x2a\xae\xbb\xea\x5c\xae\xf9\xdc\x13\x9f\xc8\x63\x4f\xf6\x49\x1f\x7c\xfe\x7a\x31\xfc\x59\x88\xe5\x0d\xfb\x54\x82\x21\xcd\xde\x0b\xd6\xa3\x7c\xc9\xb2\x8a\x8b\x19\x6f\xd1\x96\x9a\x13\xf9\xe3\x0f\x97\xd7\x06\x33\xc3\x84\xc0\xe3\xd8\xb6\xc3\x31\x35\xe1\x7d\x32\xc6\x78\x75\x42\x5e\x1c\x1e\x92\x6f\xbe\x21\xd6\xc3\x97\xe4\x3b\x98\x8e\x5b\xf6\xce\x46\x04\x40\x41\x11\xf3\xa9\x51\x1f\x5c\x7a\x42\x3a\x86\x71\xa7\x6d\xcc\x53\x46\xc0\x4a\xdb\x3c\xb1\x09\xbe\xda\xba\xd7\x40\x4c\x50\xf0\x5f\xa3\xab\xcb\x68\x49\xb9\x9c\x14\x3f\x41\x45\x2a\x96\x30\x10\xb2\x5b\xf6\x9b\x68\x1b\x05\xc9\x84\x62\x3e\x86\xf7\x6c\x66\x34\x83\x20\x78\xc8\x76\x46\xdb\xc0\xf4\x90\x5d\x36\xea\x4d\x47\x93\xde\x2e\xb1\xd7\x9b\x42\xa4\xb2\xb8\xe6\x41\xe9\x7c\xcb\x05\xea\xf7\xfd\x0e\x90\x70\x68\xb0\xd6\x23\x01\xeb\x04\x54\x05\x94\x26\xbd\x3d\xa2\xfe\x74\x79\xd6\xd5\x8b\x83\x82\x65\x71\x1f\xf2\xee\x78\x93\x15\xc8\x54\x36\x43\x18\x35\x02\x3f\x25\xa0\xcf\xea\x14\xfb\x99\xd1\x98\xf1\x30\x38\xcb\x33\x01\xc3\xd7\xc1\x2d\xa0\xe1\xd9\x05\x5d\x2e\xd3\x44\x9d\x98\xf5\x3e\x14\x30\x17\x5b\xc2\x18\x66\x26\xe2\x30\x9f\xb3\x59\x32\x5d\x85\xd6\x60\xa1\x85\x53\xdc\xb2\x38\x34\x48\xb0\xbc\xb6\x8a\x07\x0e\x42\xb2\x6a\xec\x5a\x2f\xd4\x99\xe8\x4f\x03\x3c\x12\x95\x88\xf2\xc0\xdf\x47\x77\x99\xe8\xa9\x4f\x26\xc3\xf6\x4a\x64\x1c\x5b\x99\x4b\x4f\x89\x47\x24\x38\xcd\xf4\x72\x3e\x91\xa3\x6a\xac\x4f\x65\xd6\x56\x2d\xd2\xae\x36\xcc\xa4\xb7\x03\x65\x1f\xc7\x09\x92\x90\x99\x40\x81\x9f\x41\xd0\xb6\xf3\xab\xb6\x0f\xee\x24\xba\xc2\x74\xb3\xdd\xc0\x7a\xbe\x90\xc7\x0b\x92\x98\x6b\xa0\xea\x95\x48\x08\xc2\xe2\xff\xed\x66\x02\x3f\x33\x5d\xb1\x1d\xa4\x2a\xfc\x9e\xc4\x16\x11\x8b\xb9\xa9\x20\x6b\x5b\x22\x84\x8d\x44\x3e\xcc\x27\x34\x65\x48\x68\x24\x2d\x06\x59\x05\x23\x31\xa1\x82\xe0\x6c\xe9\x00\xe1\x01\x86\x01\x92\xaa\x54\xba\x38\x6f\x53\x62\x7d\x73\x4d\xb9\xf5\x82\xa1\xe5\xed\xdb\xf5\xcd\xe0\xc7\xf3\x5f\x41\xaf\xce\x12\x68\x1c\x74\xaa\x91\xf8\xf4\xec\xf6\xfc\xcd\xe0\xfd\xd9\xf0\x74\x34\x7a\x7f\x79\x7a\x31\x00\x20\x0d\xfd\x8c\x74\xf0\x55\xcf\x81\x7a\x63\x67\xe3\xdc\x9c\x9f\xbe\xbf\xb9\x1a\x22\x6c\x87\xe7\x69\x6d\xed\xe7\xf3\x7e\x7f\x70\x89\xab\x94\x27\xf4\x60\x9e\xc4\x31\xcb\x2c\xa0\x8b\xc1\xe5\xeb\xf7\x57\xd7\x12\xe4\xd0\x7b\x7c\x36\xbc\x1a\x0d\xfa\xb0\xf0\xdc\x5b\xb8\x3e\xbd\x19\x5c\xde\xba\x92\x2a\x75\xa4\x94\xb0\x8b\x39\x80\x69\x2d\x8d\x79\x9d\x95\x56\x72\x34\x18\x0e\xce\x6e\xaf\x6e\x10\x31\xaa\x30\x6b\xfa\x49\x9c\xe1\xf9\xe5\x2f\x6d\x18\x30\x4d\x7c\xf4\xe1\x5b\x40\x1b\x44\xea\x9f\x8f\x2e\xce\x41\x87\xc1\x1b\xd0\x07\xc0\x43\x7d\x7a\x05\x1a\x5c\x81\x3f\xc1\xaf\x8c\x8b\x15\x94\x57\xa7\x46\x36\x02\x85\x1d\x28\x6e\x79\x39\x99\x43\x2b\xe7\xa2\x03\x43\xf9\xf7\x1b\xa4\x8e\xb5\x40\x8e\xc0\x97\x39\xc4\x06\x46\x0c\x88\x62\xb9\xeb\xe6\xea\xdf\xef\x7f\x19\xfc\x07\xc4\xb9\x3c\xfd\x61\x28\x2d\x8f\x6f\x7d\x2d\x98\x38\x5e\xe0\xc3\x79\x52\x1c\x43\x8b\x22\x18\x78\x04\xe9\xc8\x17\x81\x0a\x0c\x17\xa3\xf7\x38\x4f\x60\xf2\x58\x7e\x3c\xb6\xd6\x8b\x79\xfe\xb9\xad\xb3\xc8\x0a\x63\x11\x79\x72\x72\x52\x45\x89\xdf\x4a\x14\xa0\x9b\x00\xd1\x04\x06\xce\x62\x98\x14\x22\xa2\x71\x1c\xd6\xc2\xda\x7f\xed\x25\x49\xa0\x02\xd8\x31\x4e\x05\x64\xcc\xb8\x84\x74\xb7\xc2\xb7\xab\x5e\x72\x37\x22\x3a\x9a\xa2\x88\xfe\x6b\x91\xb5\xad\x38\xc4\x3f\x7b\xb0\xe2\xca\x7e\x0f\x54\x9d\xb3\x45\x7e\xc7\x1e\x47\x7b\x8c\x82\x46\x3c\x8c\xfe\x68\x9a\x4f\xca\xda\x1b\x84\x2d\x61\xb0\xc5\x3c\x22\x9f\xcd\xd2\x56\x03\x21\xc8\x5b\x87\xb0\x6b\x21\xf2\x3d\xe9\x60\x64\xc9\x18\x47\x4b\x77\xde\x19\xb1\x5c\x27\x50\x39\xe7\x55\xef\x65\x9d\xa6\x05\x9d\x3e\x5f\x62\x56\xd1\x19\x55\x22\x1c\x5b\x8b\xcd\xef\x67\x1d\xf2\x9e\x4f\x80\x93\xfb\xe0\x78\xcf\x35\xa0\xce\xa8\x9a\x2f\x61\x74\xe1\xab\x11\xec\x7c\x26\x02\x46\xa5\x7a\x25\xda\xb7\x09\xa1\x07\x1f\x40\xa8\x91\xc6\x34\xe1\x85\xb8\x00\x42\x43\x5b\x2a\x19\x1b\x3b\xc8\x22\x09\x41\x51\x18\x31\x21\x4b\x3f\xb4\x34\x1d\x4c\x85\xa7\xb0\x1b\x69\xba\x31\x50\x68\xec\xcb\x72\xd9\xe9\x42\xb5\x82\x70\xeb\xd4\xb4\x6b\x88\x4f\x6c\x3c\x5d\xd5\x9a\xee\x83\x57\x5c\x52\x3a\x66\x29\x8c\xd5\xe3\x15\xf0\xb1\x04\x9a\x39\xa0\x49\x0c\xe5\x73\x17\x72\xa6\x9b\xb9\x22\xbf\x7d\x07\x29\xc1\x07\x74\x32\x8f\xa0\x8b\xa7\xe1\x5e\x43\xae\x39\xf6\x3c\x05\xa0\x4e\x9a\x74\xf6\xab\xc6\x50\xc5\x66\x5a\xfb\x60\x20\x6d\xb7\xc4\x12\x3f\x13\xca\x04\x55\x63\xb7\x9f\x6a\x5f\x25\x1f\x7d\x04\xf1\x90\x74\x22\xd8\xa2\x51\x34\x13\x3f\xb7\xaa\x06\xc0\x90\x33\x81\xe1\xfc\xa3\x1f\x3b\x50\xd2\x07\x98\x81\x58\xe4\x18\xec\x51\xc2\x8e\x04\x03\x27\x3c\x62\x3e\xe3\x05\xbd\x4e\xd7\xa3\x4d\x96\x5b\x52\xfe\xc2\x56\xe3\x9c\xf2\x98\x64\xf4\x2e\x51\x84\xe5\x52\x0c\xc5\x70\x81\x49\x57\x97\xf3\x23\x5b\xa9\x9e\xdb\x22\x29\x4e\x67\xfa\x78\x18\x13\xd0\x3d\xab\x44\x39\x13\x68\xdb\xa3\x64\x8c\x07\x18\xee\x62\x06\xd3\x70\xe3\x82\xc1\xaa\xd3\x43\x14\x7c\x6a\xbd\x41\x03\xad\x92\xa9\xfc\x72\x44\x16\x93\xa4\xc8\x3a\x82\xa8\x89\xa8\x4b\x92\x59\x96\x73\xe6\xf4\x2a\x34\xd0\x2e\x3d\x7a\xcb\xcb\xe4\x1a\x4b\x79\xbf\x54\x75\x13\xb6\x18\x34\x23\x78\x24\xd2\xd5\x62\xc0\x06\x68\x8c\x80\xed\xe2\xb4\x15\x2b\x6f\xec\xab\x1d\x59\x6e\x91\xd1\x72\x09\x96\xf2\x16\x2e\x9d\x23\xd9\x06\x3b\xfb\xae\x41\xfb\x49\xb1\x48\x8a\xc2\x28\xa2\xd4\x84\xd0\x1e\x8c\xce\x1c\xe1\x59\x04\xd1\x71\x86\xdf\xf0\x61\x4f\x7b\xf1\x0f\x5f\xbe\xde\x53\x32\x28\x26\xc4\x3a\x5c\xc7\x0b\x85\xc1\x66\x16\xfa\xdd\x59\x2e\x40\x03\x0c\x6b\x89\xa6\xe5\xfa\x29\x27\x22\x97\xc6\xc6\x40\x20\xb2\x0d\x81\x58\x72\x96\xa3\xb0\x75\xfa\x5c\xa5\x88\x39\xcd\x6b\x98\x0f\x61\xdb\xef\x0a\xfe\x5d\xed\xf0\x08\x04\xef\x6f\x88\xee\x2c\x3f\x48\x08\x25\x79\x23\x9f\x8e\x6d\x12\x82\x19\x87\xe7\xfb\xea\xdb\x47\x66\x3c\x23\xa5\xef\x14\xb0\xd2\x96\x14\x38\x59\x5b\x6e\x84\xd1\xd8\xf6\x6a\xa4\xe2\xed\x12\x94\x88\x6c\x24\xf5\x99\x5d\x4d\x30\x1d\xb0\x36\x24\xc4\x2d\x25\x02\x0d\x89\x1f\xb6\x91\x30\xcb\x05\x7a\x1c\x62\x03\x4b\xc1\x7e\x97\xcc\x5c\x73\xe7\x19\x73\x07\x7a\xd8\x19\x20\x9a\x45\x12\x4c\x6b\xfd\x8c\x90\xee\xad\x3a\xec\x68\xf8\x54\xa7\xae\xae\x83\x5b\xdd\xb7\x9d\xb5\x18\x02\x3a\xc8\x6d\x49\xd0\x58\x36\x35\x2f\xec\xfd\xad\xd0\xfe\x76\xb3\x71\xf9\x91\x6a\x96\x1b\xfb\xa7\x2b\x22\xf3\x86\xc5\xd2\x8b\x5d\xf5\x4b\x5a\x4a\x4e\x23\x35\x53\xc9\x6d\xb7\xe3\xcb\xba\x29\x5a\x73\xb4\x26\x6c\xf3\xec\x6a\x1d\x61\x1b\xa3\xb4\x59\x7c\xd8\x3a\x00\xfb\x67\xca\xda\x0c\x55\xe2\x99\xda\xbc\x49\xbe\x72\xf9\x35\xa9\xf7\xed\x3f\x1b\x52\xef\xf5\xf2\xcb\x13\xaf\xd9\x43\xdb\x9a\xd2\xee\x69\xe6\x23\x36\xc5\x8c\x4e\x0a\x1f\x14\x14\xf7\x1e\xed\x90\x1c\x75\x41\x7d\x1a\xde\xef\x6d\x89\x62\x37\x55\x54\xd9\x43\x45\xb5\x7d\xea\x7f\x59\xd2\xe0\xab\x96\xba\x9f\x1e\x2b\x69\x70\x76\x3b\x42\x16\xea\x2c\x83\xec\x9a\x4f\xbe\x5a\x26\xb0\x37\xba\xd1\x2a\x1b\x90\x87\x5d\x30\x9d\x05\x6f\xd2\xdc\xbc\x67\xaa\x1c\xb2\xcd\xfb\xbb\x27\xab\x3d\xe9\xb5\xb5\xf0\xbc\x14\x05\xee\xe6\xe5\xfc\x78\xcf\xec\xe7\x9c\xf3\x6c\x9b\xff\x04\xe5\x33\xf9\x71\x2f\x8b\xd4\xed\xb1\x7b\x3c\xa0\x96\x31\xce\xa5\xbf\x64\xe9\x80\x8c\x78\x52\x79\x6f\x92\xc3\xfc\x9f\x64\x85\x86\xad\x4d\x3a\x4d\xa3\xc1\xc6\xff\x72\xc2\x1e\xa7\x25\xaf\x0f\x0e\xd2\x24\xeb\xbd\xff\x06\x00\x00\xff\xff\x6f\xa9\xe4\xbf\xb2\x30\x00\x00") +var _webJsIndexJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x3a\xeb\x72\xdb\x36\xd6\xff\xfd\x14\x30\xbf\x99\x8a\x4e\x64\xca\x49\x3b\xdf\xee\xd8\x71\x3a\xae\xa5\xb6\xde\xca\x97\xb1\x9c\x6c\x77\x32\x99\x0c\x24\x42\x12\x53\x8a\x50\x40\xd0\xa9\xa6\xd5\xbb\xef\x39\x00\x28\x02\x20\x29\xcb\x8d\xdb\x2d\x7f\xd8\x14\x71\xee\x77\x80\xec\xf5\xc8\x39\x5f\xae\x44\x32\x9b\x4b\xf2\xf2\xe8\xc5\xff\x93\xbb\x64\x41\x46\x73\x9a\x65\x3c\x8b\xc8\x59\x9a\x12\xb5\x96\x13\xc1\x72\x26\xee\x59\x1c\xed\x01\xce\x9b\x9c\x11\x3e\x25\x72\x9e\xe4\x24\xe7\x85\x98\x30\x32\xe1\x31\x23\xf0\x73\xc6\xef\x99\xc8\x58\x4c\xc6\x2b\x58\x67\xe4\xf2\xe2\x8e\xa4\xc9\x84\x65\x39\x43\x4c\x39\xa7\x92\x4c\x68\x46\xc6\x8c\x4c\x79\x91\xc5\x24\xc9\x14\xdc\xf0\xe2\x7c\x70\x35\x1a\x90\x69\x92\x32\xe0\xf1\x8c\x7c\xcc\xe7\x49\x26\x09\xc9\xa5\x48\x26\xf2\x98\x48\x51\x30\xf2\xac\xb7\xb7\x77\x4b\x27\x32\xb9\x67\x51\x7f\xf0\xdd\x9b\x1f\xc8\x29\x99\xd2\x34\x67\x27\x7b\x7b\xe1\xb4\xc8\x60\x85\x67\xe1\x01\xf9\x6d\x8f\xc0\x15\x14\x20\xa7\xc6\x0f\x00\x00\x1f\xdd\x53\x41\x04\x20\x65\xec\x33\x31\x84\x42\x0d\x8c\x17\x4b\x8f\x49\x30\xe6\xf1\x2a\xe8\x6e\x9e\x49\xb6\x58\xa6\x54\x32\x58\xf9\x3f\x79\x49\x93\xcc\x5a\x8b\xa9\xa4\xc7\xa4\xc6\xb7\xbc\x04\x93\x85\xc8\xbc\x87\x78\x2d\x05\xff\xc8\x50\xa9\xac\x48\xd3\x6e\x6d\x19\x2c\x98\x03\xbd\xb6\xe5\x5c\xd2\x19\xcb\xdb\x56\x27\x85\x10\x2c\x93\x23\x04\x6a\x83\x49\xf9\xac\x15\xdf\xc8\x06\xeb\xef\xde\xd7\x57\x99\x10\x5c\xb4\xa1\x4e\xb9\x58\x50\xd9\x57\xc6\xaa\xee\xeb\x70\x82\xa5\x8c\xe6\xa8\xc2\x6f\x6b\x77\x75\x7d\xb2\xf9\x69\xad\xc4\x6c\xc2\x05\x95\x5c\x20\x86\x03\xbf\x60\x59\x61\x39\x20\x83\x20\xf4\x9d\x80\x17\x7a\xfb\xa6\x10\xac\x2f\xf8\x32\xe6\x9f\x0d\xe0\x49\x83\x60\x2d\x0e\xc3\x4b\x32\x2a\x10\x79\x8b\xc3\xeb\xb4\xea\x3c\x3c\xdd\x1a\x34\xf7\x20\xcc\xed\xfa\xc0\x84\x70\xce\xe4\x0d\x95\xf3\x3c\xc4\x07\xea\x89\x88\x40\x96\x4a\x92\x00\x22\x7e\x36\x63\xe2\xbb\x22\x49\xe3\xc0\x12\x97\xdd\x43\x60\xf8\x32\xab\x87\x11\x07\x94\x24\xa3\x69\xb4\x14\xea\x41\x9f\x4d\x69\x91\xca\xd0\x33\x12\xa6\x4f\xce\x26\xa0\x1b\xe4\xd0\xe7\x24\x03\x7b\x00\x06\x5f\x2c\x65\x18\xdc\x28\xa7\x12\x40\x66\x42\xa5\xb4\x11\xa3\x44\x80\x88\xd0\x15\xa3\x8c\xfe\xc0\x23\x6e\x8b\x1d\x8a\x68\xc6\x80\xa8\x81\x8d\x92\x38\x38\xe8\x1a\x4a\x07\xb5\x20\x59\x6f\x4c\x51\xea\xea\x12\x33\x54\x2e\xfa\x1b\x12\x96\x11\xe8\x47\xfa\x2b\x48\x7f\x3d\xba\x0b\xba\x24\xe8\x19\xc4\x5e\x40\x9e\x13\x0b\xaf\xee\x68\x4d\xe9\xd8\xfc\x6f\xf3\x9e\x2d\x54\x08\x45\x14\x8c\xda\x14\x35\xc6\x96\x29\x9f\x50\x25\xfe\x29\x48\x12\xb4\x86\xc4\x8e\x44\x45\x94\xa3\x0d\x55\xce\x82\x6e\xf0\xbf\x04\x8e\x16\x2c\xcf\xa1\x40\x78\x1e\x58\x9b\xdf\x6b\xdf\x9a\x55\xcc\x59\x6c\x30\x18\x96\xf8\xb4\x8a\x85\x52\xfe\x08\x9f\x67\x74\xc1\xa2\x7c\x99\x26\x20\x43\x2f\x28\xc3\x17\xaf\x64\x4a\x42\x85\x19\xa5\x2c\x9b\xc9\x39\x79\x75\x4a\x5e\xf8\x1a\x80\xff\x6f\x4c\x2d\xf2\xc3\xd0\xcf\xad\xb5\x43\x79\x5f\x91\x7e\xf7\xe2\xfd\x17\x51\xac\x0b\x0b\x14\xc9\x29\x38\xc6\x44\x45\xe0\x93\xaf\x00\x5f\xd6\x58\xbb\xeb\x5f\x37\xae\xbb\x30\xdf\xb4\xc2\x18\x55\x54\x85\xdf\x30\xec\x92\x92\x74\x79\x07\x04\x5a\xaa\x4f\xe3\x53\xa0\xf8\x56\xf7\x9d\x06\x9a\x0d\x94\xea\x54\x2a\xf3\x56\x66\xf0\xe2\xeb\x09\xdc\xe1\x05\x75\x80\x71\x49\xae\xb8\xd4\xe3\xc4\x7e\xd0\x16\xc2\x0e\x37\xcb\xb2\xaa\xcc\xf4\xa0\x23\xf6\x82\x47\x27\x18\x96\xb4\x10\xd3\x20\x81\x14\x38\x3a\x81\x7f\xaf\x88\x86\x8e\x70\x34\x30\xd1\x0d\xcf\x9f\x3f\x6f\x73\x66\xae\x1c\x29\x8b\x3c\xb4\x10\xdf\x25\x6d\xbe\x9b\xd3\xfc\x56\x77\x4f\x0f\x1e\x2a\x24\x18\xc3\x2f\xa9\x9e\xed\x2a\xf3\x56\x32\xe6\x5c\xc8\x6a\x74\xa2\x5d\x32\xde\x16\x9b\x34\xc2\xac\x26\xaf\xc9\x58\xdd\x3c\xdc\x00\xc9\x8b\xc7\x04\xa1\xc5\xe2\xd5\xee\x2c\x0e\x1f\xc5\xc3\x20\x1d\x35\x58\xaa\x69\x24\xd0\xe1\x56\x4e\x45\x10\x71\x96\xf1\xec\x9a\x56\x5e\xa6\x12\x02\x16\x8c\xd2\x8c\x17\x32\xb4\x22\xaf\x4b\x5e\x1c\xc1\xe5\xa7\xc5\x5f\x5a\xd9\x6d\x16\x76\xce\x26\x71\x4b\x5a\x40\x23\x84\xe0\xfa\x83\x22\x96\xc5\xd2\xb7\x9b\x0f\x8e\x9e\xb7\xc3\xd2\xcc\xc0\x79\x9b\xfb\x1f\x4a\xbd\x12\x7f\x97\x1c\xc4\xab\x39\xb1\x54\x56\x35\x91\xc5\x8c\x33\xf7\x3b\x57\xd9\xf5\xdf\xc8\xe9\x65\xa9\x47\xfd\x4a\x3d\xb6\x78\x1f\xfe\x04\xea\xd6\xc0\x3e\x5a\x76\xd5\x97\x2d\x43\x92\xdf\x7f\x27\xfb\xf5\x52\xe9\x3f\x7e\x77\x54\x99\xb9\xc5\x79\xc6\x2a\x06\x2a\xa8\xd4\x69\xc8\x6f\xd8\xe0\xc1\x84\xba\x23\x9d\x16\x31\x76\xe9\x84\x86\x96\xde\xa8\x6d\x0d\xfd\xff\x6d\x14\xe8\x11\xc2\x8a\x81\xae\xde\x5c\x3e\x26\x14\x36\xbf\x15\xe6\x1f\x55\x07\x77\xa4\x0f\xd6\x08\x03\x6b\xef\x70\x83\x52\xe2\xbf\x8d\x59\xad\x42\xd2\x92\x5c\xbd\x67\x3d\xb3\x03\xee\xbd\x32\xe5\xf1\x30\x89\x5f\xf7\x5e\x19\xd8\xd7\xcf\x7a\x9e\xf5\x4b\xf0\x27\x4a\x46\xa3\x6b\xb9\x0d\x8f\x36\x64\x37\x51\xf0\x27\x04\xec\x16\x6e\x30\xb7\xb1\x69\x92\xb1\xb8\xc1\xc4\x7b\x8d\x46\xae\xa6\x26\x63\x40\xc7\xbe\xbd\x5c\xad\xb1\x9c\xb8\x43\xbc\xd9\x4b\xaa\x80\x21\xfb\x30\xc9\x7f\xa6\x89\x4c\xb2\x59\x6d\x92\xb7\x20\x81\x0e\x34\x18\x07\xd5\x1a\x4b\x75\x41\xd1\x9b\x0e\x03\x92\xd2\x5c\x0e\xf9\x4c\x55\x32\xef\x59\x5b\x29\xab\xb1\xdb\x08\xd6\xc8\xaa\x85\x6a\x04\x3b\xd7\x05\x8c\xb6\xa7\x95\xb8\xc6\xe6\x6f\x1d\x80\x87\xb9\x8f\x8a\xc9\x04\x62\x7e\x5a\xa4\xe9\x8a\x98\x60\x8e\xeb\xb2\x34\xec\x7e\x3c\xc9\xb4\xa5\x71\xcf\x94\x72\x1a\x37\x59\xba\x59\x80\x21\x40\x93\xef\x69\x92\xba\x36\x78\xc0\x0e\x15\xb7\x29\x93\x93\xf9\xee\xec\xbe\x47\xf0\x2f\xe1\x37\xc6\x53\x86\xdd\xf9\xa9\x43\x89\x2f\xe1\x27\x59\xde\x18\xb7\xcd\xec\xee\x00\x3a\xff\x12\x76\x3a\x8c\x76\x67\x68\x42\x66\x3b\xcb\x9d\x1c\xd3\x4c\xc0\xdb\xf7\x43\x71\x58\x1f\xa8\xd3\xb0\x4d\x7d\x50\x67\x3a\x72\xb5\x64\x50\x5c\x44\xda\x55\x07\xb5\xd0\x29\x74\x5c\x77\xf5\x29\x66\xf3\x29\x31\x3e\x51\x87\xc4\xec\x93\x39\x26\xfe\xf9\x72\xf8\xa3\x94\xcb\x5b\xf6\xa9\x00\x43\x96\x3b\x55\x58\x8f\xf8\x92\x65\x15\x97\x72\x33\x80\xb6\x34\x9c\xb0\x08\x38\xbc\x36\x98\x19\x26\x04\x1e\x5e\xb7\x1d\x25\xea\x79\xf8\x53\x69\x8c\xd7\xa7\xe4\xe5\xd1\x11\xf9\xea\x2b\x62\x3d\x7c\x45\xbe\x81\xbd\x44\xcb\xb4\x55\x8a\x00\x28\x28\x22\x9f\x96\xea\x83\x4b\x4f\x49\xa7\x64\xdc\x69\x9b\xab\xb4\x11\xb0\xa8\x37\xcf\xb7\x52\xac\xb6\xee\xcc\x10\x13\x14\xfc\xd7\xe8\xfa\x2a\x5a\x52\xa1\xe6\xea\x4f\x50\x91\xf2\x25\x8c\xcf\xec\x8e\xfd\x2a\xdb\x06\x67\x32\xa1\x98\x8f\xe1\x03\x5b\x3f\xc3\x20\x08\x1e\xb3\xf9\x33\x36\x28\xdb\xd5\x4e\xc3\x5c\xc3\x41\xae\xb7\xa7\xee\xf5\xa6\x10\xa9\x2c\xae\x79\x50\x39\xdf\x72\x81\xfe\xfd\xb0\x03\x14\x1c\x1a\xac\xf5\x00\xc5\x3a\x2f\xd6\x01\x65\x48\x6f\x8f\xa8\x3f\x5d\x9e\x75\xf5\x9a\x25\x67\x59\xdc\x87\xbc\x3b\xd9\x64\x05\x32\x55\x7d\x17\xa6\x9a\xc0\x4f\x09\x68\xe9\x26\xc5\x7e\x64\x34\x66\x22\x0c\xce\x79\x26\x61\xce\x3b\xbc\x03\x34\x3c\xe9\xa1\xcb\x65\x9a\xe8\xf3\xc5\xde\xc7\x1c\x66\x74\x4b\x98\x92\x59\x19\x71\x98\xcf\xd9\x2c\x99\xae\x42\x6b\x86\x31\xc2\x69\x6e\x59\x1c\x96\x48\xb0\xbc\xb6\x8a\x07\xce\x5c\xaa\x6a\xec\x5a\x2f\xf4\x09\xf2\x0f\x03\x3c\x40\x56\x88\xea\xf5\x88\x8f\xee\x32\x31\x03\xa6\x4a\x86\xed\x95\xa8\x74\x6c\x65\x2e\x33\x90\x1e\x93\xe0\x2c\x33\xcb\x7c\xa2\xa6\xe2\xd8\x9c\x61\xad\xad\x5a\x64\x5c\x5d\x32\x53\xde\x0e\xb4\x7d\x1c\x27\x28\x42\xe5\xb0\x0b\xfc\x4a\x04\x63\x3b\xbf\x6a\xfb\xe0\x4e\xa2\x6b\x4c\x37\xdb\x4b\x58\xcf\x17\xea\x30\x46\x11\x73\x0d\x54\xbd\x40\x0a\x41\x58\xfc\xbf\xdd\x4c\xe0\x67\x66\x2a\xb6\x83\x54\x85\xdf\x7e\x6c\x11\xb1\x98\x97\x15\x64\x6d\x4b\x84\xb0\x91\xe4\x43\x3e\xa1\x29\x43\x42\x23\x65\x31\xc8\x2a\x98\xbe\x09\x95\x04\xc7\x58\x07\x08\x8f\x7b\x4a\x20\xa5\x4a\xa5\x8b\xf3\xee\x29\x36\x37\x37\x54\x58\xaf\x63\x5a\xde\x55\xde\xdc\x0e\xbe\xbf\xf8\x19\xf4\xea\x2c\x81\xc6\x61\xa7\x9a\xbe\xcf\xce\xef\x2e\xde\x0e\x3e\x9c\x0f\xcf\x46\xa3\x0f\x57\x67\x97\x03\x00\x32\xd0\xcf\x49\x07\x5f\x8c\x1d\xea\xf7\x9b\x36\xce\xed\xc5\xd9\x87\xdb\xeb\x21\xc2\x76\x04\x4f\x6b\x6b\x3f\x5e\xf4\xfb\x83\x2b\x5c\xa5\x22\xa1\x87\xf3\x24\x8e\x59\x66\x01\x5d\x0e\xae\xde\x7c\xb8\xbe\x51\x20\x47\xde\xe3\xf3\xe1\xf5\x68\xd0\x87\x85\x17\xde\xc2\xcd\xd9\xed\xe0\xea\xce\x95\x54\xab\xa3\xa4\x84\x0d\xd3\x21\x4c\x6b\x69\x2c\xea\xac\x8c\x92\xa3\xc1\x70\x70\x7e\x77\x7d\x8b\x88\x51\x85\x59\xd3\x4f\xe1\x0c\x2f\xae\x7e\x6a\xc3\x80\x69\xe2\x17\x1f\xbe\x05\xb4\x41\xa4\xfe\xc5\xe8\xf2\x02\x74\x18\xbc\x05\x7d\x00\x3c\x34\x67\x7d\xa0\xc1\x35\xf8\x13\xfc\xca\x84\x5c\x41\x79\x75\x6a\x64\x23\x50\xd8\x81\xe2\xc6\x8b\xc9\x1c\x5a\xb9\x90\x1d\x18\xca\xbf\xdd\x20\x75\xac\x05\x72\x0c\xbe\xe4\x10\x1b\x18\x31\x20\x8a\xe5\xae\xdb\xeb\x7f\x7f\xf8\x69\xf0\x1f\x10\xe7\xea\xec\xbb\xa1\xb2\x3c\xbe\x23\xb7\x60\xe2\x78\x81\x0f\xe7\x49\x7e\x02\x2d\x8a\x60\xe0\x11\xa4\xa3\x5e\x9b\x6a\x30\x5c\x8c\x3e\xe0\x3c\x81\xc9\x63\xf9\xf1\xc4\x5a\xcf\xe7\xfc\x73\x5b\x67\x51\x15\xc6\x22\xb2\x7f\x7a\x5a\x45\x89\xdf\x4a\x34\xa0\x9b\x00\xd1\x04\x06\xce\x7c\x98\xe4\x32\xa2\x71\x1c\xd6\xc2\xda\x7f\x49\xa8\x48\xa0\x02\xd8\x31\xce\x24\x64\xcc\xb8\x80\x74\xb7\xc2\xb7\xab\x3f\x09\x68\x44\x74\x34\x45\x11\xfd\x97\x48\x6b\x5b\x71\x88\x7f\xf6\x68\xc5\xb5\xfd\x1e\xa9\xba\x60\x0b\x7e\xcf\x9e\x46\x7b\x8c\x82\x46\x3c\x8c\xfe\x68\xca\x27\x45\xed\x7d\xcb\x96\x30\xd8\x62\x1e\xc9\x67\xb3\xb4\xd5\x40\x08\xf2\xce\x21\xec\x5a\x88\x7c\x4b\x3a\x18\x59\x2a\xc6\xd1\xd2\x9d\xf7\xa5\x58\xae\x13\xa8\x9a\xf3\xaa\xb7\xd8\x4e\xd3\x82\x4e\xcf\x97\x98\x55\x74\x46\xb5\x08\x27\xd6\x62\xf3\xdb\x6c\x87\xbc\xe7\x13\xe0\xe4\x3e\x38\xd9\x73\x0d\x68\x32\xaa\xe6\x4b\x18\x5d\xc4\x6a\x04\x3b\x9f\x89\x84\x51\xa9\x5e\x89\x0e\x6c\x42\xe8\xc1\x47\x10\x6a\xa4\x31\x4d\x44\x2e\x2f\x81\xd0\xd0\x96\x4a\xc5\xc6\x0e\xb2\x28\x42\x50\x14\x46\x4c\xaa\xd2\x0f\x2d\xcd\x04\x53\xee\x29\xec\x46\x9a\x69\x0c\x14\x1a\xfb\xb2\x58\x76\xba\x50\xad\x20\xdc\x3a\x35\xed\x1a\xe2\x13\x1b\x4f\x57\xb7\xa6\x87\xe0\x35\x97\x94\x8e\x59\x0a\x63\xf5\x78\x05\x7c\x2c\x81\x66\x0e\x68\x12\x43\xf9\xdc\x85\x5c\xd9\xcd\x5c\x91\xdf\xbd\x87\x94\x10\x03\x3a\x99\x47\xd0\xc5\xd3\x70\xaf\x21\xd7\x1c\x7b\x9e\x01\x50\x27\x4d\x3a\x07\x55\x63\xa8\x62\x33\xad\x7d\x5e\x91\xb6\x5b\x62\x89\x1f\x55\x65\x92\xea\xb1\xdb\x4f\xb5\x2f\x92\x8f\x3e\x81\x78\x48\x3a\x91\x6c\xd1\x28\x5a\x19\x3f\x77\xba\x06\xc0\x90\x33\x81\xe1\xfc\x17\x3f\x76\xa0\xa4\x0f\x30\x03\xb1\xc8\x31\xd8\xa3\x84\x1d\x05\x06\x4e\x78\xc2\x7c\xc6\x0b\x7a\x9d\xa9\x47\x9b\x2c\xb7\xa4\xfc\x89\xad\xc6\x9c\x8a\x98\x64\xf4\x3e\xd1\x84\xd5\x52\x0c\xc5\x70\x81\x49\x57\x97\xf3\x17\xb6\xd2\x3d\xb7\x45\x52\x9c\xce\xcc\x49\x34\x26\xa0\x7b\x2c\x8a\x72\x26\xd0\xb6\x47\xc9\x18\x0f\x30\xdc\xc5\x0c\xa6\xe1\xc6\x85\x12\xab\x4e\x0f\x51\xf0\xa9\xf5\xbe\x11\xb4\x4a\xa6\xea\x3b\x1b\x55\x4c\x92\x3c\xeb\x48\xa2\x27\xa2\x2e\x49\x66\x19\x17\xcc\xe9\x55\x68\xa0\x5d\x7a\xf4\x96\x57\xef\x35\x96\xea\x7e\xa9\xeb\x26\x6c\x31\x68\x46\xf0\x48\xa4\x6b\xc4\x80\x0d\xd0\x18\x01\xdb\xc5\x69\x2b\x56\xde\xd8\x57\x3b\xb2\xdc\x22\xa3\xe5\x12\x2c\xe5\x2d\x5c\x3a\xc7\xaa\x0d\x76\x0e\x5c\x83\xf6\x93\x7c\x91\xe4\x79\xa9\x88\x56\x13\x42\x7b\x30\x3a\x77\x84\x67\x11\x44\xc7\x39\x7e\xf1\x88\x3d\xed\xe5\x3f\x7c\xf9\x7a\xcf\xc8\x20\x9f\x10\xeb\x1c\x1f\x2f\x14\x06\x9b\x59\xe8\x77\x67\xb5\x00\x0d\x30\xac\x25\x9a\x91\xeb\x07\x4e\x24\x57\xc6\xc6\x40\x20\xaa\x0d\x81\x58\x6a\x96\xa3\xb0\x75\xfa\x5c\xa5\x48\x79\x9a\xd7\x30\x1f\xc2\xb6\xdf\x15\xfc\x9b\xda\xe1\x11\x08\xde\xdf\x10\xdd\x59\x7e\x90\x10\x4a\xf2\x46\x3e\x13\xdb\x24\x04\x33\x0e\x2f\x0e\xf4\x97\xa2\xac\xf4\x8c\x92\xbe\x93\xc3\x4a\x5b\x52\xe0\x64\x6d\xb9\x11\x46\x63\xdb\xab\x91\x8e\xb7\x2b\x50\x22\xb2\x91\xf4\x47\x89\x35\xc1\x4c\xc0\xda\x90\x10\xb7\x94\x48\x34\x24\x7e\x06\x48\xc2\x8c\x4b\xf4\x38\xc4\x06\x96\x82\x83\x2e\x99\xb9\xe6\xe6\x19\x73\x07\x7a\xd8\x19\x20\x9a\x45\x12\x4c\x6b\xfd\x8c\x90\xee\x9d\x3e\xec\x68\xf8\xb0\xa9\xae\xae\x83\x5b\xdd\xb7\x9d\xb5\x94\x04\x4c\x90\xdb\x92\xa0\xb1\x6c\x6a\x5e\xd8\xfb\x5b\xa1\x83\xed\x66\x13\xea\x93\xde\x8c\x97\xf6\x4f\x57\x44\xe5\x0d\x8b\x95\x17\xbb\xfa\x97\xb2\x94\x9a\x46\x6a\xa6\x52\xdb\x6e\xc7\x97\x75\x53\xb4\xe6\x68\x4d\xd8\xe6\xd9\xd5\x3a\xc2\x2e\x8d\xd2\x66\xf1\x61\xeb\x00\xec\x9f\x29\x1b\x33\x54\x89\x57\xd6\xe6\x4d\xf2\x15\xcb\x2f\x49\xbd\xaf\xff\xd9\x90\x7a\x6f\x96\x7f\x3c\xf1\x9a\x3d\xb4\xad\x29\xed\x9e\x66\x3e\x62\x53\xcc\x98\xa4\xf0\x41\x41\x71\xef\xd1\x0e\xc9\x51\x17\xd4\xa7\xe1\xfd\xde\x96\x28\x76\x53\x45\x95\x3d\x54\x54\xdb\xa7\xfe\x97\x25\x0d\xbe\x6a\xa9\xfb\xe9\xa9\x92\x06\x67\xb7\x63\x64\xa1\xcf\x32\xc8\xae\xf9\xe4\xab\x55\x06\xf6\x46\x37\x5a\x65\x03\xf2\xb0\x0b\xa6\xb3\xe0\x4d\x9a\x9b\xf7\x4c\x95\x43\xb6\x79\x7f\xf7\x64\xb5\x27\xbd\xb6\x16\xce\x0b\x99\xe3\x6e\x5e\xcd\x8f\x0f\xcc\x7e\xce\x39\xcf\xb6\xf9\x4f\x52\x31\x53\x9f\x42\xb3\x48\xdf\x9e\xb8\xc7\x03\x7a\x19\xe3\x5c\xf9\x4b\x95\x0e\xc8\x88\xfd\xca\x7b\x13\x0e\xf3\x7f\x92\xe5\x06\xb6\x36\xe9\x34\x8d\x06\x1b\xff\xab\x09\x7b\x9c\x16\xa2\x3e\x38\x28\x93\xac\xf7\xfe\x1b\x00\x00\xff\xff\xb9\x2a\xae\x51\xe0\x31\x00\x00") func webJsIndexJsBytes() ([]byte, error) { return bindataRead( @@ -126,7 +126,7 @@ func webJsIndexJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/js/index.js", size: 12466, mode: os.FileMode(436), modTime: time.Unix(1461095360, 0)} + info := bindataFileInfo{name: "web/js/index.js", size: 12768, mode: os.FileMode(436), modTime: time.Unix(1461613222, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/cycle.go b/cycle.go index cfb975a..8a1613b 100644 --- a/cycle.go +++ b/cycle.go @@ -32,7 +32,7 @@ func (p *Project) load() { defer p.processing.Unlock() p.setStage(stageLoad) - p.setVersion("") + p.setVersion("Version not yet set") if p.filename == "" { p.errHandled(errors.New("Invalid project file name")) diff --git a/web/js/index.js b/web/js/index.js index ff07593..1633486 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -135,7 +135,11 @@ Ractive.DEBUG = false; function getVersion(id, version) { get("/log/" + id + "/" + version, function(result) { - r.set("version", version); + if (!result.data || !result.data.length || !result.data[0].version) { + r.set("version", version); + } else { + r.set("version", result.data[0].version); + } r.set("stages", result.data); }, function(result) { @@ -171,8 +175,8 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; - } else if(!project.lastLog || !project.lastLog.version) { - project.status = "waiting"; + } else if (!project.lastLog || !project.lastLog.version) { + project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; } else { From 24b541801a32b79093acb9dd9932fb79f073b9f6 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:02:01 +0000 Subject: [PATCH 23/42] Added time took to release log statement Changed release file name handling to only include the base of the file path. --- README.md | 2 +- cycle.go | 7 +++++-- project.go | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4bf67c..4e70109 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ You'll setup a project which will need the following information: 2. Script to build the repository 3. Script to test the repository 4. Script to build the release file -5. Path to the release file +5. Path to the release file / can also be a script that returns a file name 6. Script to set release name / version An optional set of environment strings can be set to define the environment in which the scripts run. diff --git a/cycle.go b/cycle.go index 8a1613b..9ddf1ee 100644 --- a/cycle.go +++ b/cycle.go @@ -33,6 +33,7 @@ func (p *Project) load() { p.setStage(stageLoad) p.setVersion("Version not yet set") + p.start = time.Time{} if p.filename == "" { p.errHandled(errors.New("Invalid project file name")) @@ -82,6 +83,7 @@ func (p *Project) load() { // fetched code, if there is then the temp dir is renamed to the version name func (p *Project) fetch() { p.setStage(stageFetch) + p.start = time.Now() if p.Fetch == "" { return @@ -216,14 +218,15 @@ func (p *Project) release() { return } - if p.errHandled(p.ds.AddRelease(p.version, p.ReleaseFile, buff)) { + if p.errHandled(p.ds.AddRelease(p.version, filepath.Base(p.ReleaseFile), buff)) { return } p.setStage(stageReleased) if p.errHandled(p.ds.AddLog(p.version, p.stage, - fmt.Sprintf("Project %s Version %s built, tested, and released successfully.\n", p.id(), p.version))) { + fmt.Sprintf("Project %s Version %s built, tested, and released successfully and took %s.\n", p.id(), p.version, + time.Now().Sub(p.start)))) { return } diff --git a/project.go b/project.go index df3e824..19112f2 100644 --- a/project.go +++ b/project.go @@ -68,6 +68,7 @@ type Project struct { status string version string hash string + start time.Time // the last start time of the latest cycle sync.RWMutex processing sync.Mutex From 8d79ded66101c0ab15dfe05e15e2a870d0764234 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:02:01 +0000 Subject: [PATCH 24/42] Added time took to release log statement Changed release file name handling to only include the base of the file path. --- README.md | 2 +- cycle.go | 7 +++++-- project.go | 1 + 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4bf67c..4e70109 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ You'll setup a project which will need the following information: 2. Script to build the repository 3. Script to test the repository 4. Script to build the release file -5. Path to the release file +5. Path to the release file / can also be a script that returns a file name 6. Script to set release name / version An optional set of environment strings can be set to define the environment in which the scripts run. diff --git a/cycle.go b/cycle.go index 8a1613b..9ddf1ee 100644 --- a/cycle.go +++ b/cycle.go @@ -33,6 +33,7 @@ func (p *Project) load() { p.setStage(stageLoad) p.setVersion("Version not yet set") + p.start = time.Time{} if p.filename == "" { p.errHandled(errors.New("Invalid project file name")) @@ -82,6 +83,7 @@ func (p *Project) load() { // fetched code, if there is then the temp dir is renamed to the version name func (p *Project) fetch() { p.setStage(stageFetch) + p.start = time.Now() if p.Fetch == "" { return @@ -216,14 +218,15 @@ func (p *Project) release() { return } - if p.errHandled(p.ds.AddRelease(p.version, p.ReleaseFile, buff)) { + if p.errHandled(p.ds.AddRelease(p.version, filepath.Base(p.ReleaseFile), buff)) { return } p.setStage(stageReleased) if p.errHandled(p.ds.AddLog(p.version, p.stage, - fmt.Sprintf("Project %s Version %s built, tested, and released successfully.\n", p.id(), p.version))) { + fmt.Sprintf("Project %s Version %s built, tested, and released successfully and took %s.\n", p.id(), p.version, + time.Now().Sub(p.start)))) { return } diff --git a/project.go b/project.go index df3e824..19112f2 100644 --- a/project.go +++ b/project.go @@ -68,6 +68,7 @@ type Project struct { status string version string hash string + start time.Time // the last start time of the latest cycle sync.RWMutex processing sync.Mutex From 21ebb286a62250939c9daf534a11164751de1390 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:09:16 +0000 Subject: [PATCH 25/42] Changed log view formatting in tables a bit --- bindata.go | 4 ++-- web/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindata.go b/bindata.go index 020b0c9..3265bb1 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5f\x6f\xdb\x36\x10\x7f\x76\x3e\x05\xab\x60\x45\xdb\x55\x56\xb2\xae\x4b\xe1\xc9\xde\x3a\x14\x03\x06\xb4\xc5\xb0\x0e\x7d\x19\xf6\x40\x4b\xb4\xc5\x86\x12\x05\x92\xca\x9f\x1a\xf9\xee\x3b\xfe\x93\x28\x59\x72\x9c\x16\x28\xb0\xa7\x88\xc7\xe3\xdd\x8f\x77\xf7\x3b\x92\x4e\xfa\x28\xe7\x99\xba\xad\x09\x2a\x54\xc9\x56\x27\xa9\xfe\x83\x18\xae\xb6\xcb\x88\x54\x91\x16\x10\x9c\xaf\x4e\x66\x69\x49\x14\x46\x59\x81\x85\x24\x6a\x19\x35\x6a\x13\xbf\x8a\x5a\x79\x85\x4b\xb2\x8c\xae\x28\xb9\xae\xb9\x50\x11\xca\x78\xa5\x48\x05\x7a\xd7\x34\x57\xc5\x32\x27\x57\x34\x23\xb1\x19\x3c\x47\xb4\xa2\x8a\x62\x16\xcb\x0c\x33\xb2\x3c\x9f\x9f\x0d\xed\xe4\x44\x66\x82\xd6\x8a\xf2\x2a\x30\xf5\x87\xe0\x95\x2c\xa9\x2a\x50\x8c\x5e\x23\x49\xcb\x9a\x91\xe7\xc8\x6a\xa2\x5c\xd0\x2b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xad\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\xac\xbe\xd2\x54\x9a\x58\x33\xda\x20\xa3\xd5\x25\x12\x84\x2d\x23\xa9\x6e\x19\x91\x05\x21\xb0\xff\x42\x90\xcd\x32\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\x35\x87\x81\xc5\x60\x14\x61\xcb\xb3\xb9\xf6\x81\x69\x45\x04\xda\xc1\x70\x56\xe3\x3c\xa7\xd5\x36\x16\x74\x5b\xa8\x05\x3a\x7f\x59\xdf\xfc\x1c\xca\x19\xd9\x84\xe2\x12\x8b\x2d\xad\xbc\x36\x6e\x14\x0f\xc5\x56\xd9\x4b\xef\xc0\xf1\xec\xd7\x92\xe4\x14\xa3\x27\x80\xc6\xe6\x62\x81\x2e\x7e\x7a\x55\xdf\x3c\xb5\xee\x87\x70\x86\x78\x7e\x3c\x73\x8e\x07\x80\x5a\xf9\x9d\x77\x34\xcf\x20\x63\x44\xc4\x6b\xc6\xb3\x4b\x6b\x2c\xa7\xb2\x66\xf8\x76\x81\x8c\x6c\x1a\xe8\xc4\xae\xac\x59\x45\x6e\x54\x6c\x6d\x5b\xab\x46\x80\x19\xdd\x56\x0b\x64\xe5\xad\x72\xf2\x4c\xe1\x35\x24\xe4\x59\x62\x97\xea\x41\x2c\x88\xac\x21\xf5\x90\x60\xbb\xfe\x21\x10\x66\xfc\x8a\x88\x0d\xe3\xd7\xf1\xcd\x1e\xae\xa1\x71\x23\xb0\x2e\x5c\xa0\xcf\xcf\xce\xbe\x73\xc6\x6f\xe2\x81\xcc\xe1\x45\x44\x08\x2e\x10\x00\x06\x93\xf6\xbb\x1f\x3a\x5a\x41\xb5\x91\xb8\x8b\xe0\x1a\x67\x97\x5b\xc1\x9b\x2a\x8f\x33\xce\xb8\x58\x40\x25\xe6\x66\xc6\x0d\xaf\x0b\xaa\x88\x55\xe5\x22\x87\x8c\x08\x9c\xd3\x46\x42\xce\xfa\xa5\xb5\x40\xf3\x97\xa4\x44\xe7\xa4\x0c\x02\xa0\x01\x5a\x35\x0f\x70\x2d\xa0\x19\x64\xa2\x29\xd7\x12\xd9\xb8\x9e\x86\xa2\x30\xa4\x6b\xae\x14\x2f\x07\x26\xe6\x9d\x76\x2c\x49\x8d\x81\x53\x7e\x93\x0e\xf0\x69\x96\x65\x06\xc2\x06\x6a\x31\xbe\x26\x36\x05\x6b\xce\xf2\x4e\x2a\xe9\x67\xb2\x40\x3f\x58\xac\x60\x57\x1b\xae\x1b\xc6\x4c\x1a\xad\x35\x48\x13\x86\x75\x5a\x60\x95\xbc\x8a\xc9\x69\x4f\xc7\x48\x9c\x92\xc9\x25\x2d\x89\x54\xb8\xac\x9d\x56\xe7\x71\x7e\xf1\xd2\xc5\xc7\x83\xbd\xb8\xb8\xd8\xaf\xe4\xfe\x8e\x19\xdf\x8e\x94\xda\x04\x87\xbd\xb8\x5b\xba\x42\xb5\x18\xab\xd5\x4e\x73\x96\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x9a\xe7\xb7\xf0\xc7\xf5\x33\x9a\x2f\x23\xf5\x0e\x78\x1d\x21\xdd\xe8\x61\x00\xa4\x49\x04\xce\x14\x54\xaa\xee\xf0\x39\xbd\x42\x19\xc3\x52\x2e\xa3\xae\x03\x98\xb6\xb5\x35\x9d\x39\x98\x37\xd2\x26\x3e\xd7\xf2\x59\x5a\xbc\xf0\xf2\x80\x98\x91\xe9\xae\xe8\x83\x6e\xaf\x80\xe8\x85\xd6\xdc\xed\x4e\xe9\xc6\x96\xf7\x9d\xce\x45\xcf\x66\x6f\xad\x69\x2f\xa9\xac\x71\xe5\xa7\xcd\xaa\x68\xb5\xdb\xb9\xe5\xb0\x5d\x98\x35\x8a\x69\x02\x66\xac\xfd\x84\x6e\x8c\x65\x63\x58\xef\x38\xa8\xcb\xa8\x87\xbe\x24\x55\x83\xda\xaf\xb8\xe0\x82\x7e\xd6\xbb\x66\x68\x0f\x48\xda\xb0\xbd\xa5\x31\xa3\x52\x79\x9c\x8c\xee\xcf\x03\xe1\x4a\x37\x3f\x4b\xb1\x3f\x09\xf6\x31\xc4\xfa\xe4\x88\x56\x7f\x0a\xfe\x89\x64\x0a\xbd\x05\xb3\x69\x82\x9d\xe1\x84\x51\xfb\x65\x23\x57\x5b\x25\x1b\xbb\x23\xfc\xf6\x23\x38\x46\xba\x68\x95\x04\x81\x0c\x3d\x3a\x97\x8f\xa0\xd9\x49\x7d\xe0\x3d\x7e\x8c\x1e\x65\x8d\x10\x10\x97\x0f\x0a\x6f\x89\x07\x31\x8d\x22\x8c\x2e\x96\x71\x56\x50\x96\xc3\xf2\x08\xe5\x24\xe3\xc6\xfb\x32\xd2\xb3\x2d\xda\x2e\x4e\xa7\x91\x49\x9e\xdb\xef\x3b\xad\x34\x15\xb8\xdd\xce\x69\xcd\xf5\xa5\x41\xd7\x05\xee\xec\x8d\x25\xae\xc5\xd1\xaa\x1d\x11\xc8\x01\xb8\x71\x2c\x88\x57\x71\xc6\x68\x76\x09\xc5\x0c\x4c\xde\x12\xf1\x5b\x03\xbe\xa2\xd5\xdf\x76\x84\xcc\x30\x04\x18\xc6\x5b\x0f\x1a\xd6\x66\x2e\x4c\x04\x61\xf2\x88\x78\x8f\xc4\x31\x71\xb1\x49\xba\x28\xd1\xfc\xee\xee\x4b\x82\xd9\x03\xe4\x69\x36\xfc\x0e\x8a\x54\x17\x8c\xab\x9d\x6f\x53\xaf\x47\x58\xbf\x27\x2c\x30\x6c\x11\x1f\x08\x51\xab\xd3\x45\x27\x24\xea\xfd\xf1\xd0\x9f\x63\x54\xfa\x3f\xc5\x07\xbe\xfb\x5b\x38\x10\xb0\xbe\xe2\x3d\x51\xf3\x24\x08\x9a\xba\xe9\x43\xbd\xde\xb7\xdb\xad\xdc\x58\x1a\x81\xa5\x48\xd0\xae\x86\x6a\x81\x56\x3b\x15\xaa\xb6\x00\x9c\x5b\xf7\xe7\xe4\x04\xbc\x43\x68\xf5\x3b\x05\x05\x1e\x7b\xe7\xd6\xe0\xd2\xa7\x8f\x52\x7b\xef\x0b\x03\x62\x25\xdd\x67\x2c\xa1\x45\xd4\x24\x37\x27\xab\x72\x8f\x2b\xf8\x12\xf6\xc4\x51\x85\x3f\x11\xe0\x91\x51\xb4\x32\x08\xa1\x6a\x64\x4f\xf4\x16\x4b\x85\x3e\xda\xad\xec\x4f\xbc\xe5\xdb\x7d\xe1\x5f\x84\x11\x2c\xc9\xe4\x04\xfa\x9d\xb2\x76\x16\xfe\x6a\x4c\x7a\xe8\x5e\x80\xca\xde\x2b\x4c\x66\x7c\x4c\x16\xf4\xee\x6e\x66\x6d\x09\x64\x5e\x45\xcb\x68\xb7\xdb\x70\x51\x62\xf5\x06\x2b\xf2\x64\x0e\xb1\x50\x80\x66\x7e\x5d\x90\xea\x29\x94\x8b\x3b\xe1\x54\xbe\x1a\x2b\x3b\x5b\x6f\xba\x78\x82\x4e\x04\x18\xf2\x6e\x19\x4c\x49\x13\x0e\x3d\x19\x4e\x0c\xcf\xdc\xa1\x55\xf8\xeb\xc1\x74\x74\x5f\x8d\x49\x83\x83\x38\x70\xd0\xed\xaf\x5d\x01\x57\x34\x6b\x43\x97\x6a\x5f\xda\xd7\x9a\xcb\x66\xad\x33\x5f\x6d\x9f\x9c\x3d\x87\x7b\xff\x53\xad\x60\x4a\xef\xc1\x7b\x10\x36\x59\x1f\x7b\x5b\x18\x0a\xc7\x77\xd0\x3b\xe1\xdd\x12\xf9\x0f\x58\xfe\xb7\x3b\x65\x5a\xd7\x6e\xde\xbb\xfe\x65\x03\xc5\xa1\x7d\xb5\xeb\x60\xd9\x5c\x0b\xdf\xb7\x89\x9a\x8d\x1e\x5c\xef\xb9\xf7\x85\xb4\x3a\xc2\x57\x98\x32\xcd\x85\xfd\x53\xa5\x45\xeb\xaa\x4f\x4f\x86\x84\x07\xb1\xbb\xdc\x26\x86\x4d\x2d\x61\xb5\x9e\xa5\x2b\xa8\x8d\x90\xf7\x1b\x71\x77\x8c\x8f\xa6\xfd\xdd\xcf\xd0\x2f\xe6\xa0\x2f\xdb\x23\xb8\xb8\xcf\xc1\xe9\x7a\x1b\x1c\x00\x03\xca\xdc\x43\x15\x47\x52\xdb\xf6\x27\x28\xd4\xa7\x8e\xa7\xcc\x43\xa9\x32\xa8\xe5\x0e\x35\xfa\x1e\x79\x94\x87\xab\x7b\x72\xa3\xfb\x15\x3f\x6e\x7d\x8a\x04\x87\xcb\xda\x67\xed\x60\x59\x4f\xd7\x75\x77\x88\xa5\x85\xd0\xf5\x7f\x64\x18\xbe\x20\x02\x1d\x27\xda\x07\xb4\xe1\xc4\xba\x81\x27\x7e\x15\x7e\xc7\xb5\xa0\xf0\x4c\xbd\x8d\x56\x6f\xf8\x75\x05\xef\xeb\xbc\x3b\x73\xb0\x21\xa9\x09\xc9\xc9\xde\x93\x72\xf2\x51\x66\xa8\x76\xf0\x19\x36\xfd\x0c\x71\x17\x88\xfe\x2d\xa4\xd3\x91\x80\x2c\x53\x24\x77\xa8\xdc\x93\xef\x21\x4c\x98\x7e\xd5\xbd\x66\xcc\x11\xc3\xdf\x75\x00\x8c\x21\x84\x61\xe9\x11\xb0\x43\xd4\xc3\x7b\x23\x5a\x2e\x91\xa7\xd7\xd7\xef\x27\xbc\xda\x79\xab\x07\x2e\x75\x1d\xaf\x07\xfb\x4b\xec\xfe\x6c\x3d\xeb\xbb\x9c\xbf\x52\xe9\xfa\x0c\x33\x0e\x1c\xd7\xe0\xf6\xf7\x69\x03\x53\xbc\xd8\xbf\x3a\xca\x12\xb3\xb6\x08\xda\x5f\x68\x34\x9c\xa0\xbd\x81\x5d\xe9\x5b\x1c\x5c\x86\xf5\x92\x95\xff\x05\x22\xad\x05\x59\xa5\x12\x16\xc1\x1a\xa3\x68\x3a\x0e\xa8\x69\x51\x9a\xe8\xe9\x93\xf0\xe0\x1a\xe6\xcb\xe1\x6a\x77\x7f\x14\xa2\x29\x34\x7d\x38\xa3\x50\xfa\x01\xf5\xcc\x19\x3d\xed\x60\xa5\xf9\xa5\xa7\xfb\xc9\x47\x8a\x0c\x32\xfe\x49\xfa\x5f\x79\xe6\xfa\xf7\xe7\x4f\x32\x5a\x1d\x50\xa5\x55\x4e\x6e\x86\x4a\x89\x6f\x4b\xf6\xbf\x03\xff\x05\x00\x00\xff\xff\x1c\xd1\xc5\xa3\x2e\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xd4\xb8\x12\x7e\xee\xf9\x15\x26\xa3\x83\x80\x43\x92\x19\x38\x9c\x41\x7d\xd2\x39\xcb\x0a\xad\xb4\x12\xa0\xd5\xb2\xe2\x65\xb5\x0f\xee\xc4\xdd\x31\xe3\x5c\x64\x3b\x73\xa1\xd5\xff\x7d\xcb\xb7\xc4\x49\x27\x3d\x0d\x48\x48\xfb\x34\x71\xb9\x5c\xf5\xb9\xaa\xbe\xb2\xdd\x93\x3c\xca\xeb\x4c\xde\x37\x04\x15\xb2\x64\xe9\x59\xa2\xfe\x20\x86\xab\xed\x2a\x20\x55\xa0\x04\x04\xe7\xe9\xd9\x22\x29\x89\xc4\x28\x2b\x30\x17\x44\xae\x82\x56\x6e\xc2\xd7\x41\x27\xaf\x70\x49\x56\xc1\x0d\x25\xb7\x4d\xcd\x65\x80\xb2\xba\x92\xa4\x02\xbd\x5b\x9a\xcb\x62\x95\x93\x1b\x9a\x91\x50\x0f\x9e\x23\x5a\x51\x49\x31\x0b\x45\x86\x19\x59\x5d\x46\x17\x63\x3b\x39\x11\x19\xa7\x8d\xa4\x75\xe5\x99\xfa\x95\xd7\x95\x28\xa9\x2c\x50\x88\xde\x20\x41\xcb\x86\x91\xe7\xc8\x68\xa2\x9c\xd3\x1b\x52\x69\x65\x5a\xb5\x75\x2b\xc0\x8b\x24\x5b\x8e\x95\x11\x24\xeb\x9a\x81\x13\xf0\x22\xa9\x64\x24\xfd\x4e\x53\x49\x6c\xcc\x28\x83\x8c\x56\xd7\x88\x13\xb6\x0a\x84\xbc\x67\x44\x14\x84\xc0\xfe\x0b\x4e\x36\xab\x20\xce\x84\x88\x9b\x96\x93\xb0\xa4\x55\x04\x03\x83\x41\x2b\xc2\x96\x17\x91\xf2\x81\x69\x45\x38\xda\xc1\x70\xd1\xe0\x3c\xa7\xd5\x36\xe4\x74\x5b\xc8\x25\xba\x7c\xd5\xdc\xfd\xcf\x97\x33\xb2\xf1\xc5\x25\xe6\x5b\x5a\x39\x6d\xdc\xca\xda\x17\x1b\x65\x27\xdd\x83\xe3\xc5\x4f\x25\xc9\x29\x46\x4f\x00\x8d\xc9\xc5\x12\x5d\xfd\xf7\x75\x73\xf7\xd4\xb8\x1f\xc3\x19\xe3\xf9\xcf\x85\x75\x3c\x02\xd4\xc9\xf7\xce\x51\x94\x41\xc6\x08\x0f\xd7\xac\xce\xae\x8d\xb1\x9c\x8a\x86\xe1\xfb\x25\xd2\xb2\x79\xa0\x33\xbb\x32\x66\x25\xb9\x93\xa1\xb1\x6d\xac\x6a\x01\x66\x74\x5b\x2d\x91\x91\x77\xca\xf1\x33\x89\xd7\x90\x90\x67\xb1\x59\xaa\x06\x21\x27\xa2\x81\xd4\x43\x82\xcd\xfa\xaf\x81\xb0\xa8\x6f\x08\xdf\xb0\xfa\x36\xbc\x3b\xc0\x35\x36\xae\x05\xc6\x85\x0d\xf4\xe5\xc5\xc5\xbf\xac\xf1\xbb\x70\x24\xb3\x78\x11\xe1\xbc\xe6\x08\x00\x83\x49\xf3\x3d\x0c\x1d\xad\xa0\xda\x48\xd8\x47\x70\x8d\xb3\xeb\x2d\xaf\xdb\x2a\x0f\xb3\x9a\xd5\x7c\x09\x95\x98\xeb\x19\x3b\xbc\x2d\xa8\x24\x46\xb5\xe6\x39\x64\x84\xe3\x9c\xb6\x02\x72\x36\x2c\xad\x25\x8a\x5e\x91\x12\x5d\x92\xd2\x0b\x80\x02\x68\xd4\x1c\xc0\x35\x87\x66\x90\xf1\xb6\x5c\x0b\x64\xe2\x7a\xee\x8b\xfc\x90\xae\x6b\x29\xeb\x72\x64\x22\xea\xb5\x43\x41\x1a\x0c\x9c\x72\x9b\xb4\x80\xcf\xb3\x2c\xd3\x10\x36\x50\x8b\xe1\x2d\x31\x29\x58\xd7\x2c\xef\xa5\x82\x7e\x21\x4b\xf4\xc2\x60\x05\xbb\xca\x70\xd3\x32\xa6\xd3\x68\xac\x41\x9a\x30\xac\x53\x02\xa3\xe4\x54\x74\x4e\x07\x3a\x5a\x62\x95\x74\x2e\x69\x49\x84\xc4\x65\x63\xb5\x7a\x8f\xd1\xd5\x2b\x1b\x1f\x07\xf6\xea\xea\xea\xb0\x92\x87\x3b\x66\xf5\x76\xa2\xd4\x66\x38\xec\xc4\xfd\xd2\x14\x35\x7c\xaa\x56\x7b\xcd\x45\x12\xdb\x86\x92\xc4\xa6\x57\x27\xeb\x3a\xbf\x87\x3f\xb6\x9f\xd1\x7c\x15\xc8\xf7\xc0\xeb\x00\xa9\x46\x0f\x03\x20\x4d\xcc\x71\x26\xa1\x52\x55\x87\xcf\xe9\x0d\xca\x18\x16\x62\x15\xf4\x1d\x40\xb7\xad\xad\xee\xcc\xde\xbc\x96\xb6\xe1\xa5\x92\x2f\x92\xe2\xa5\x93\x7b\xc4\x0c\x74\x77\x45\x1f\x55\x7b\x05\x44\x2f\x95\xe6\x6e\x77\x4e\x37\xa6\xbc\xf7\x2a\x17\x03\x9b\x83\xb5\xba\xbd\x24\xa2\xc1\x95\x9b\xd6\xab\x82\x74\xb7\xb3\xcb\x61\xbb\x30\xab\x15\x93\x18\xcc\x18\xfb\x31\xdd\x68\xcb\xda\xb0\xda\xb1\x57\x97\xc1\x00\x7d\x49\xaa\x16\x75\x5f\x61\x51\x73\xfa\x45\xed\x9a\xa1\x03\x20\x49\xcb\x0e\x96\x86\x8c\x0a\xe9\x70\x32\x7a\x38\x0f\x84\x2b\xed\xfc\x22\xc1\xee\x24\x38\xc4\x10\xaa\x93\x23\x48\x7f\xe3\xf5\x67\x92\x49\xf4\x0e\xcc\x26\x31\xb6\x86\x63\x46\xcd\x97\x89\x5c\x63\x94\x4c\xec\x4e\xf0\x3b\x8c\xe0\x14\xe9\x82\x34\xf6\x02\xe9\x7b\xb4\x2e\x1f\x41\xb3\x13\xea\xc0\x7b\xfc\x18\x3d\xca\x5a\xce\x21\x2e\x1f\x25\xde\x12\x07\x62\x1e\x85\x1f\x5d\x2c\xc2\xac\xa0\x2c\x87\xe5\x01\xca\x49\x56\x6b\xef\xab\x40\xcd\x76\x68\xfb\x38\x9d\x07\x3a\x79\x76\xbf\xef\x95\xd2\x5c\xe0\x76\x3b\xab\x15\xa9\x4b\x83\xaa\x0b\xdc\xdb\x9b\x4a\x5c\x87\xa3\x53\x3b\x21\x90\x23\x70\xd3\x58\x50\x5d\x85\x19\xa3\xd9\x35\x14\x33\x30\x79\x4b\xf8\xcf\x2d\xf8\x0a\xd2\x3f\xcc\x08\xe9\xa1\x0f\xd0\x8f\xb7\x1a\xb4\xac\xcb\x9c\x9f\x08\xc2\xc4\x09\xf1\x9e\x88\x63\x6c\x63\x13\xf7\x51\xa2\xf9\x7e\xff\x2d\xc1\x1c\x00\x72\x34\x1b\x7f\x7b\x45\xaa\x0a\xc6\xd6\xce\x8f\xa9\xd7\x13\xac\x3f\x10\x16\x18\x76\x88\x8f\x84\xa8\xd3\xe9\xa3\xe3\x13\xf5\xe1\x78\xa8\xcf\x29\x2a\xfd\x93\xe2\x03\xdf\xc3\x2d\x1c\x09\xd8\x50\xf1\x81\xa8\x39\x12\x78\x4d\x5d\xf7\xa1\x41\xef\xdb\xed\x52\x3b\x16\x5a\x60\x28\xe2\xb5\xab\xb1\x9a\xa7\xd5\x4d\xf9\xaa\x1d\x00\xeb\xd6\xfe\x39\x3b\x03\xef\x10\x5a\xf5\x4e\x41\x9e\xc7\xc1\xb9\x35\xba\xf4\xa9\xa3\xd4\xdc\xfb\xfc\x80\x18\x49\xff\x19\x0a\x68\x11\x0d\xc9\xf5\xc9\x2a\xed\xe3\x0a\xbe\xb8\x39\x71\x64\xe1\x4e\x04\x78\x64\x14\x9d\x0c\x42\x28\x5b\x31\x10\xbd\xc3\x42\xa2\x4f\x66\x2b\x87\x13\xef\xea\xed\xa1\xf0\x77\xc2\x08\x16\x64\x76\x02\xfd\x42\x59\x37\x0b\x7f\x15\x26\x35\xb4\x2f\x40\x69\xee\x15\x3a\x33\x2e\x26\x4b\xba\xdf\x2f\x8c\x2d\x8e\xf4\xab\x68\x15\xec\x76\x9b\x9a\x97\x58\xbe\xc5\x92\x3c\x89\x20\x16\x12\xd0\x44\xb7\x05\xa9\x9e\x42\xb9\xd8\x13\x4e\xe6\xe9\x54\xd9\x99\x7a\x53\xc5\xe3\x75\x22\xc0\x90\xf7\xcb\x60\x4a\xe8\x70\xa8\x49\x7f\x62\x7c\xe6\x8e\xad\xc2\x5f\x07\xa6\xa7\x7b\x3a\x25\xf5\x0e\x62\xcf\x41\xbf\xbf\x6e\x05\x5c\xd1\x8c\x0d\x55\xaa\xbe\x54\x51\xbd\x1f\x93\x6a\x0b\x6f\xcd\x14\xbd\xb8\xb8\xd8\xef\x87\xcb\x23\xd1\xae\x55\x49\x54\xdb\x27\x17\xcf\x61\x1e\x42\x14\x45\x91\xab\xd8\xb1\x2b\x5b\xae\x5f\xbd\x6f\x6e\x12\xfc\x69\xb0\xed\xb1\x70\x7a\xd7\x83\x5b\x81\x5d\x22\xfe\x04\xcb\x7f\xf5\x27\x53\xe7\xda\xce\x3b\xd7\xff\xdf\x40\x41\x29\x5f\xdd\x3a\x58\x16\x29\xe1\x87\x2e\xb9\x8b\xc9\xc3\xee\x43\xed\x7c\x21\xa5\x8e\xf0\x0d\xa6\x4c\xf1\xe7\xf0\x24\xea\xd0\xda\x8a\x55\x93\x7e\x93\x00\xb1\xbd\x10\xc7\x9a\x81\x1d\xc9\x95\x9e\xa1\x38\xa8\x4d\x10\xfe\x07\xf1\x7d\x8a\xc3\xba\x65\x3e\xcc\xea\x6f\xe6\xad\x2b\xf5\x13\xf8\x7b\xc8\xdb\xf9\x7a\x1b\x1d\x1a\x23\x9a\x3d\x40\x2f\x4b\x6c\x73\x54\xcc\xd0\x6e\x48\x37\x47\xb3\x49\x8a\x9d\x42\xad\x07\x28\x35\xaa\xf9\x7e\x77\xe8\xdf\xc8\xed\xe6\x38\x0b\x66\x03\x72\xc8\x8c\x69\xeb\x73\x64\x39\x5e\xfe\x2e\xbb\x47\xcb\x7f\xbe\xfe\xfb\x03\x32\x29\xb8\xe2\xc9\x89\x61\xf8\x86\x08\xf4\xdc\xe9\x1e\xe7\x9a\x3b\xeb\x56\x4a\xb8\x30\x79\xdf\x61\xc3\x29\x3c\x81\xef\x83\xf4\x6d\x7d\x5b\xc1\xdb\x3d\xef\xcf\x33\xac\xc9\xac\x43\x72\x76\xf0\x5c\x9d\x7d\xf0\x69\x4a\x1e\x7d\xe2\xcd\x3f\x71\xec\xe5\x64\x78\xc3\xe9\x75\x04\x20\xcb\x24\xc9\x2d\x2a\xfb\x9c\xfc\x1a\xc6\xcc\xbf\x18\xdf\x30\x66\x09\xe4\xee\x51\x00\x46\x13\x47\xb3\xf9\x04\xd8\x3e\xea\xf1\x9d\x14\xad\x56\xc8\xd1\xf0\xfb\xf7\xe3\x5f\x1b\x9d\xd5\x23\x17\xc6\x9e\xff\xa3\xfd\xc5\x66\x7f\xa6\x9e\xd5\x3d\xd1\x5d\xd7\x54\x7d\xfa\x19\x07\x4a\x2b\x70\x87\xfb\x34\x81\x29\x5e\x1e\x5e\x4b\x45\x89\x59\x57\x04\xdd\xaf\x3f\x0a\x8e\xd7\x06\xc1\xae\x70\xad\x10\x2e\xda\x6a\x49\xea\x7e\xdd\x48\x1a\x4e\xd2\x44\xc0\x22\x58\xa3\x15\x75\x63\x01\x35\x25\x4a\x62\x35\x7d\xe6\x1f\x70\xe3\x7c\x59\x5c\xdd\xee\x4f\x42\x34\x87\x66\x08\x67\x12\xca\x30\xa0\x8e\x39\x93\xa7\x22\xac\xd4\xbf\x22\xf5\x3f\x27\x09\x9e\x41\xc6\x3f\x0b\xf7\x0b\x52\xa4\x7e\xdb\xfe\x2c\x82\xf4\x88\x2a\xad\x72\x72\x37\x56\x8a\x5d\x5b\x32\xff\x79\xf8\x3b\x00\x00\xff\xff\x3c\x84\x10\xcc\x8a\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461355098, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461618427, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/web/index.html b/web/index.html index 22d7ad0..286ccf7 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} + {{#if .lastLog.log && .lastLog.length > 200}}{{.lastLog.log.substring(0,200)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log}}{{.log.substring(0,100)}}{{/if}} + {{#if .log && .log.length > 200}}{{.log.substring(0,200)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From 07d499456b1493a9364465cbbaadabeee507edf3 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:09:16 +0000 Subject: [PATCH 26/42] Changed log view formatting in tables a bit --- bindata.go | 4 ++-- web/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindata.go b/bindata.go index 020b0c9..3265bb1 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5f\x6f\xdb\x36\x10\x7f\x76\x3e\x05\xab\x60\x45\xdb\x55\x56\xb2\xae\x4b\xe1\xc9\xde\x3a\x14\x03\x06\xb4\xc5\xb0\x0e\x7d\x19\xf6\x40\x4b\xb4\xc5\x86\x12\x05\x92\xca\x9f\x1a\xf9\xee\x3b\xfe\x93\x28\x59\x72\x9c\x16\x28\xb0\xa7\x88\xc7\xe3\xdd\x8f\x77\xf7\x3b\x92\x4e\xfa\x28\xe7\x99\xba\xad\x09\x2a\x54\xc9\x56\x27\xa9\xfe\x83\x18\xae\xb6\xcb\x88\x54\x91\x16\x10\x9c\xaf\x4e\x66\x69\x49\x14\x46\x59\x81\x85\x24\x6a\x19\x35\x6a\x13\xbf\x8a\x5a\x79\x85\x4b\xb2\x8c\xae\x28\xb9\xae\xb9\x50\x11\xca\x78\xa5\x48\x05\x7a\xd7\x34\x57\xc5\x32\x27\x57\x34\x23\xb1\x19\x3c\x47\xb4\xa2\x8a\x62\x16\xcb\x0c\x33\xb2\x3c\x9f\x9f\x0d\xed\xe4\x44\x66\x82\xd6\x8a\xf2\x2a\x30\xf5\x87\xe0\x95\x2c\xa9\x2a\x50\x8c\x5e\x23\x49\xcb\x9a\x91\xe7\xc8\x6a\xa2\x5c\xd0\x2b\x52\x19\x65\x5a\x35\xbc\x91\xe0\x45\x91\xad\xc0\xda\x08\x52\x9c\x33\x70\x02\x5e\x14\x55\x8c\xac\xbe\xd2\x54\x9a\x58\x33\xda\x20\xa3\xd5\x25\x12\x84\x2d\x23\xa9\x6e\x19\x91\x05\x21\xb0\xff\x42\x90\xcd\x32\x4a\x32\x29\x93\xba\x11\x24\x2e\x69\x35\x87\x81\xc5\x60\x14\x61\xcb\xb3\xb9\xf6\x81\x69\x45\x04\xda\xc1\x70\x56\xe3\x3c\xa7\xd5\x36\x16\x74\x5b\xa8\x05\x3a\x7f\x59\xdf\xfc\x1c\xca\x19\xd9\x84\xe2\x12\x8b\x2d\xad\xbc\x36\x6e\x14\x0f\xc5\x56\xd9\x4b\xef\xc0\xf1\xec\xd7\x92\xe4\x14\xa3\x27\x80\xc6\xe6\x62\x81\x2e\x7e\x7a\x55\xdf\x3c\xb5\xee\x87\x70\x86\x78\x7e\x3c\x73\x8e\x07\x80\x5a\xf9\x9d\x77\x34\xcf\x20\x63\x44\xc4\x6b\xc6\xb3\x4b\x6b\x2c\xa7\xb2\x66\xf8\x76\x81\x8c\x6c\x1a\xe8\xc4\xae\xac\x59\x45\x6e\x54\x6c\x6d\x5b\xab\x46\x80\x19\xdd\x56\x0b\x64\xe5\xad\x72\xf2\x4c\xe1\x35\x24\xe4\x59\x62\x97\xea\x41\x2c\x88\xac\x21\xf5\x90\x60\xbb\xfe\x21\x10\x66\xfc\x8a\x88\x0d\xe3\xd7\xf1\xcd\x1e\xae\xa1\x71\x23\xb0\x2e\x5c\xa0\xcf\xcf\xce\xbe\x73\xc6\x6f\xe2\x81\xcc\xe1\x45\x44\x08\x2e\x10\x00\x06\x93\xf6\xbb\x1f\x3a\x5a\x41\xb5\x91\xb8\x8b\xe0\x1a\x67\x97\x5b\xc1\x9b\x2a\x8f\x33\xce\xb8\x58\x40\x25\xe6\x66\xc6\x0d\xaf\x0b\xaa\x88\x55\xe5\x22\x87\x8c\x08\x9c\xd3\x46\x42\xce\xfa\xa5\xb5\x40\xf3\x97\xa4\x44\xe7\xa4\x0c\x02\xa0\x01\x5a\x35\x0f\x70\x2d\xa0\x19\x64\xa2\x29\xd7\x12\xd9\xb8\x9e\x86\xa2\x30\xa4\x6b\xae\x14\x2f\x07\x26\xe6\x9d\x76\x2c\x49\x8d\x81\x53\x7e\x93\x0e\xf0\x69\x96\x65\x06\xc2\x06\x6a\x31\xbe\x26\x36\x05\x6b\xce\xf2\x4e\x2a\xe9\x67\xb2\x40\x3f\x58\xac\x60\x57\x1b\xae\x1b\xc6\x4c\x1a\xad\x35\x48\x13\x86\x75\x5a\x60\x95\xbc\x8a\xc9\x69\x4f\xc7\x48\x9c\x92\xc9\x25\x2d\x89\x54\xb8\xac\x9d\x56\xe7\x71\x7e\xf1\xd2\xc5\xc7\x83\xbd\xb8\xb8\xd8\xaf\xe4\xfe\x8e\x19\xdf\x8e\x94\xda\x04\x87\xbd\xb8\x5b\xba\x42\xb5\x18\xab\xd5\x4e\x73\x96\x26\xae\xa1\xa4\x89\xed\xd5\xe9\x9a\xe7\xb7\xf0\xc7\xf5\x33\x9a\x2f\x23\xf5\x0e\x78\x1d\x21\xdd\xe8\x61\x00\xa4\x49\x04\xce\x14\x54\xaa\xee\xf0\x39\xbd\x42\x19\xc3\x52\x2e\xa3\xae\x03\x98\xb6\xb5\x35\x9d\x39\x98\x37\xd2\x26\x3e\xd7\xf2\x59\x5a\xbc\xf0\xf2\x80\x98\x91\xe9\xae\xe8\x83\x6e\xaf\x80\xe8\x85\xd6\xdc\xed\x4e\xe9\xc6\x96\xf7\x9d\xce\x45\xcf\x66\x6f\xad\x69\x2f\xa9\xac\x71\xe5\xa7\xcd\xaa\x68\xb5\xdb\xb9\xe5\xb0\x5d\x98\x35\x8a\x69\x02\x66\xac\xfd\x84\x6e\x8c\x65\x63\x58\xef\x38\xa8\xcb\xa8\x87\xbe\x24\x55\x83\xda\xaf\xb8\xe0\x82\x7e\xd6\xbb\x66\x68\x0f\x48\xda\xb0\xbd\xa5\x31\xa3\x52\x79\x9c\x8c\xee\xcf\x03\xe1\x4a\x37\x3f\x4b\xb1\x3f\x09\xf6\x31\xc4\xfa\xe4\x88\x56\x7f\x0a\xfe\x89\x64\x0a\xbd\x05\xb3\x69\x82\x9d\xe1\x84\x51\xfb\x65\x23\x57\x5b\x25\x1b\xbb\x23\xfc\xf6\x23\x38\x46\xba\x68\x95\x04\x81\x0c\x3d\x3a\x97\x8f\xa0\xd9\x49\x7d\xe0\x3d\x7e\x8c\x1e\x65\x8d\x10\x10\x97\x0f\x0a\x6f\x89\x07\x31\x8d\x22\x8c\x2e\x96\x71\x56\x50\x96\xc3\xf2\x08\xe5\x24\xe3\xc6\xfb\x32\xd2\xb3\x2d\xda\x2e\x4e\xa7\x91\x49\x9e\xdb\xef\x3b\xad\x34\x15\xb8\xdd\xce\x69\xcd\xf5\xa5\x41\xd7\x05\xee\xec\x8d\x25\xae\xc5\xd1\xaa\x1d\x11\xc8\x01\xb8\x71\x2c\x88\x57\x71\xc6\x68\x76\x09\xc5\x0c\x4c\xde\x12\xf1\x5b\x03\xbe\xa2\xd5\xdf\x76\x84\xcc\x30\x04\x18\xc6\x5b\x0f\x1a\xd6\x66\x2e\x4c\x04\x61\xf2\x88\x78\x8f\xc4\x31\x71\xb1\x49\xba\x28\xd1\xfc\xee\xee\x4b\x82\xd9\x03\xe4\x69\x36\xfc\x0e\x8a\x54\x17\x8c\xab\x9d\x6f\x53\xaf\x47\x58\xbf\x27\x2c\x30\x6c\x11\x1f\x08\x51\xab\xd3\x45\x27\x24\xea\xfd\xf1\xd0\x9f\x63\x54\xfa\x3f\xc5\x07\xbe\xfb\x5b\x38\x10\xb0\xbe\xe2\x3d\x51\xf3\x24\x08\x9a\xba\xe9\x43\xbd\xde\xb7\xdb\xad\xdc\x58\x1a\x81\xa5\x48\xd0\xae\x86\x6a\x81\x56\x3b\x15\xaa\xb6\x00\x9c\x5b\xf7\xe7\xe4\x04\xbc\x43\x68\xf5\x3b\x05\x05\x1e\x7b\xe7\xd6\xe0\xd2\xa7\x8f\x52\x7b\xef\x0b\x03\x62\x25\xdd\x67\x2c\xa1\x45\xd4\x24\x37\x27\xab\x72\x8f\x2b\xf8\x12\xf6\xc4\x51\x85\x3f\x11\xe0\x91\x51\xb4\x32\x08\xa1\x6a\x64\x4f\xf4\x16\x4b\x85\x3e\xda\xad\xec\x4f\xbc\xe5\xdb\x7d\xe1\x5f\x84\x11\x2c\xc9\xe4\x04\xfa\x9d\xb2\x76\x16\xfe\x6a\x4c\x7a\xe8\x5e\x80\xca\xde\x2b\x4c\x66\x7c\x4c\x16\xf4\xee\x6e\x66\x6d\x09\x64\x5e\x45\xcb\x68\xb7\xdb\x70\x51\x62\xf5\x06\x2b\xf2\x64\x0e\xb1\x50\x80\x66\x7e\x5d\x90\xea\x29\x94\x8b\x3b\xe1\x54\xbe\x1a\x2b\x3b\x5b\x6f\xba\x78\x82\x4e\x04\x18\xf2\x6e\x19\x4c\x49\x13\x0e\x3d\x19\x4e\x0c\xcf\xdc\xa1\x55\xf8\xeb\xc1\x74\x74\x5f\x8d\x49\x83\x83\x38\x70\xd0\xed\xaf\x5d\x01\x57\x34\x6b\x43\x97\x6a\x5f\xda\xd7\x9a\xcb\x66\xad\x33\x5f\x6d\x9f\x9c\x3d\x87\x7b\xff\x53\xad\x60\x4a\xef\xc1\x7b\x10\x36\x59\x1f\x7b\x5b\x18\x0a\xc7\x77\xd0\x3b\xe1\xdd\x12\xf9\x0f\x58\xfe\xb7\x3b\x65\x5a\xd7\x6e\xde\xbb\xfe\x65\x03\xc5\xa1\x7d\xb5\xeb\x60\xd9\x5c\x0b\xdf\xb7\x89\x9a\x8d\x1e\x5c\xef\xb9\xf7\x85\xb4\x3a\xc2\x57\x98\x32\xcd\x85\xfd\x53\xa5\x45\xeb\xaa\x4f\x4f\x86\x84\x07\xb1\xbb\xdc\x26\x86\x4d\x2d\x61\xb5\x9e\xa5\x2b\xa8\x8d\x90\xf7\x1b\x71\x77\x8c\x8f\xa6\xfd\xdd\xcf\xd0\x2f\xe6\xa0\x2f\xdb\x23\xb8\xb8\xcf\xc1\xe9\x7a\x1b\x1c\x00\x03\xca\xdc\x43\x15\x47\x52\xdb\xf6\x27\x28\xd4\xa7\x8e\xa7\xcc\x43\xa9\x32\xa8\xe5\x0e\x35\xfa\x1e\x79\x94\x87\xab\x7b\x72\xa3\xfb\x15\x3f\x6e\x7d\x8a\x04\x87\xcb\xda\x67\xed\x60\x59\x4f\xd7\x75\x77\x88\xa5\x85\xd0\xf5\x7f\x64\x18\xbe\x20\x02\x1d\x27\xda\x07\xb4\xe1\xc4\xba\x81\x27\x7e\x15\x7e\xc7\xb5\xa0\xf0\x4c\xbd\x8d\x56\x6f\xf8\x75\x05\xef\xeb\xbc\x3b\x73\xb0\x21\xa9\x09\xc9\xc9\xde\x93\x72\xf2\x51\x66\xa8\x76\xf0\x19\x36\xfd\x0c\x71\x17\x88\xfe\x2d\xa4\xd3\x91\x80\x2c\x53\x24\x77\xa8\xdc\x93\xef\x21\x4c\x98\x7e\xd5\xbd\x66\xcc\x11\xc3\xdf\x75\x00\x8c\x21\x84\x61\xe9\x11\xb0\x43\xd4\xc3\x7b\x23\x5a\x2e\x91\xa7\xd7\xd7\xef\x27\xbc\xda\x79\xab\x07\x2e\x75\x1d\xaf\x07\xfb\x4b\xec\xfe\x6c\x3d\xeb\xbb\x9c\xbf\x52\xe9\xfa\x0c\x33\x0e\x1c\xd7\xe0\xf6\xf7\x69\x03\x53\xbc\xd8\xbf\x3a\xca\x12\xb3\xb6\x08\xda\x5f\x68\x34\x9c\xa0\xbd\x81\x5d\xe9\x5b\x1c\x5c\x86\xf5\x92\x95\xff\x05\x22\xad\x05\x59\xa5\x12\x16\xc1\x1a\xa3\x68\x3a\x0e\xa8\x69\x51\x9a\xe8\xe9\x93\xf0\xe0\x1a\xe6\xcb\xe1\x6a\x77\x7f\x14\xa2\x29\x34\x7d\x38\xa3\x50\xfa\x01\xf5\xcc\x19\x3d\xed\x60\xa5\xf9\xa5\xa7\xfb\xc9\x47\x8a\x0c\x32\xfe\x49\xfa\x5f\x79\xe6\xfa\xf7\xe7\x4f\x32\x5a\x1d\x50\xa5\x55\x4e\x6e\x86\x4a\x89\x6f\x4b\xf6\xbf\x03\xff\x05\x00\x00\xff\xff\x1c\xd1\xc5\xa3\x2e\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xd4\xb8\x12\x7e\xee\xf9\x15\x26\xa3\x83\x80\x43\x92\x19\x38\x9c\x41\x7d\xd2\x39\xcb\x0a\xad\xb4\x12\xa0\xd5\xb2\xe2\x65\xb5\x0f\xee\xc4\xdd\x31\xe3\x5c\x64\x3b\x73\xa1\xd5\xff\x7d\xcb\xb7\xc4\x49\x27\x3d\x0d\x48\x48\xfb\x34\x71\xb9\x5c\xf5\xb9\xaa\xbe\xb2\xdd\x93\x3c\xca\xeb\x4c\xde\x37\x04\x15\xb2\x64\xe9\x59\xa2\xfe\x20\x86\xab\xed\x2a\x20\x55\xa0\x04\x04\xe7\xe9\xd9\x22\x29\x89\xc4\x28\x2b\x30\x17\x44\xae\x82\x56\x6e\xc2\xd7\x41\x27\xaf\x70\x49\x56\xc1\x0d\x25\xb7\x4d\xcd\x65\x80\xb2\xba\x92\xa4\x02\xbd\x5b\x9a\xcb\x62\x95\x93\x1b\x9a\x91\x50\x0f\x9e\x23\x5a\x51\x49\x31\x0b\x45\x86\x19\x59\x5d\x46\x17\x63\x3b\x39\x11\x19\xa7\x8d\xa4\x75\xe5\x99\xfa\x95\xd7\x95\x28\xa9\x2c\x50\x88\xde\x20\x41\xcb\x86\x91\xe7\xc8\x68\xa2\x9c\xd3\x1b\x52\x69\x65\x5a\xb5\x75\x2b\xc0\x8b\x24\x5b\x8e\x95\x11\x24\xeb\x9a\x81\x13\xf0\x22\xa9\x64\x24\xfd\x4e\x53\x49\x6c\xcc\x28\x83\x8c\x56\xd7\x88\x13\xb6\x0a\x84\xbc\x67\x44\x14\x84\xc0\xfe\x0b\x4e\x36\xab\x20\xce\x84\x88\x9b\x96\x93\xb0\xa4\x55\x04\x03\x83\x41\x2b\xc2\x96\x17\x91\xf2\x81\x69\x45\x38\xda\xc1\x70\xd1\xe0\x3c\xa7\xd5\x36\xe4\x74\x5b\xc8\x25\xba\x7c\xd5\xdc\xfd\xcf\x97\x33\xb2\xf1\xc5\x25\xe6\x5b\x5a\x39\x6d\xdc\xca\xda\x17\x1b\x65\x27\xdd\x83\xe3\xc5\x4f\x25\xc9\x29\x46\x4f\x00\x8d\xc9\xc5\x12\x5d\xfd\xf7\x75\x73\xf7\xd4\xb8\x1f\xc3\x19\xe3\xf9\xcf\x85\x75\x3c\x02\xd4\xc9\xf7\xce\x51\x94\x41\xc6\x08\x0f\xd7\xac\xce\xae\x8d\xb1\x9c\x8a\x86\xe1\xfb\x25\xd2\xb2\x79\xa0\x33\xbb\x32\x66\x25\xb9\x93\xa1\xb1\x6d\xac\x6a\x01\x66\x74\x5b\x2d\x91\x91\x77\xca\xf1\x33\x89\xd7\x90\x90\x67\xb1\x59\xaa\x06\x21\x27\xa2\x81\xd4\x43\x82\xcd\xfa\xaf\x81\xb0\xa8\x6f\x08\xdf\xb0\xfa\x36\xbc\x3b\xc0\x35\x36\xae\x05\xc6\x85\x0d\xf4\xe5\xc5\xc5\xbf\xac\xf1\xbb\x70\x24\xb3\x78\x11\xe1\xbc\xe6\x08\x00\x83\x49\xf3\x3d\x0c\x1d\xad\xa0\xda\x48\xd8\x47\x70\x8d\xb3\xeb\x2d\xaf\xdb\x2a\x0f\xb3\x9a\xd5\x7c\x09\x95\x98\xeb\x19\x3b\xbc\x2d\xa8\x24\x46\xb5\xe6\x39\x64\x84\xe3\x9c\xb6\x02\x72\x36\x2c\xad\x25\x8a\x5e\x91\x12\x5d\x92\xd2\x0b\x80\x02\x68\xd4\x1c\xc0\x35\x87\x66\x90\xf1\xb6\x5c\x0b\x64\xe2\x7a\xee\x8b\xfc\x90\xae\x6b\x29\xeb\x72\x64\x22\xea\xb5\x43\x41\x1a\x0c\x9c\x72\x9b\xb4\x80\xcf\xb3\x2c\xd3\x10\x36\x50\x8b\xe1\x2d\x31\x29\x58\xd7\x2c\xef\xa5\x82\x7e\x21\x4b\xf4\xc2\x60\x05\xbb\xca\x70\xd3\x32\xa6\xd3\x68\xac\x41\x9a\x30\xac\x53\x02\xa3\xe4\x54\x74\x4e\x07\x3a\x5a\x62\x95\x74\x2e\x69\x49\x84\xc4\x65\x63\xb5\x7a\x8f\xd1\xd5\x2b\x1b\x1f\x07\xf6\xea\xea\xea\xb0\x92\x87\x3b\x66\xf5\x76\xa2\xd4\x66\x38\xec\xc4\xfd\xd2\x14\x35\x7c\xaa\x56\x7b\xcd\x45\x12\xdb\x86\x92\xc4\xa6\x57\x27\xeb\x3a\xbf\x87\x3f\xb6\x9f\xd1\x7c\x15\xc8\xf7\xc0\xeb\x00\xa9\x46\x0f\x03\x20\x4d\xcc\x71\x26\xa1\x52\x55\x87\xcf\xe9\x0d\xca\x18\x16\x62\x15\xf4\x1d\x40\xb7\xad\xad\xee\xcc\xde\xbc\x96\xb6\xe1\xa5\x92\x2f\x92\xe2\xa5\x93\x7b\xc4\x0c\x74\x77\x45\x1f\x55\x7b\x05\x44\x2f\x95\xe6\x6e\x77\x4e\x37\xa6\xbc\xf7\x2a\x17\x03\x9b\x83\xb5\xba\xbd\x24\xa2\xc1\x95\x9b\xd6\xab\x82\x74\xb7\xb3\xcb\x61\xbb\x30\xab\x15\x93\x18\xcc\x18\xfb\x31\xdd\x68\xcb\xda\xb0\xda\xb1\x57\x97\xc1\x00\x7d\x49\xaa\x16\x75\x5f\x61\x51\x73\xfa\x45\xed\x9a\xa1\x03\x20\x49\xcb\x0e\x96\x86\x8c\x0a\xe9\x70\x32\x7a\x38\x0f\x84\x2b\xed\xfc\x22\xc1\xee\x24\x38\xc4\x10\xaa\x93\x23\x48\x7f\xe3\xf5\x67\x92\x49\xf4\x0e\xcc\x26\x31\xb6\x86\x63\x46\xcd\x97\x89\x5c\x63\x94\x4c\xec\x4e\xf0\x3b\x8c\xe0\x14\xe9\x82\x34\xf6\x02\xe9\x7b\xb4\x2e\x1f\x41\xb3\x13\xea\xc0\x7b\xfc\x18\x3d\xca\x5a\xce\x21\x2e\x1f\x25\xde\x12\x07\x62\x1e\x85\x1f\x5d\x2c\xc2\xac\xa0\x2c\x87\xe5\x01\xca\x49\x56\x6b\xef\xab\x40\xcd\x76\x68\xfb\x38\x9d\x07\x3a\x79\x76\xbf\xef\x95\xd2\x5c\xe0\x76\x3b\xab\x15\xa9\x4b\x83\xaa\x0b\xdc\xdb\x9b\x4a\x5c\x87\xa3\x53\x3b\x21\x90\x23\x70\xd3\x58\x50\x5d\x85\x19\xa3\xd9\x35\x14\x33\x30\x79\x4b\xf8\xcf\x2d\xf8\x0a\xd2\x3f\xcc\x08\xe9\xa1\x0f\xd0\x8f\xb7\x1a\xb4\xac\xcb\x9c\x9f\x08\xc2\xc4\x09\xf1\x9e\x88\x63\x6c\x63\x13\xf7\x51\xa2\xf9\x7e\xff\x2d\xc1\x1c\x00\x72\x34\x1b\x7f\x7b\x45\xaa\x0a\xc6\xd6\xce\x8f\xa9\xd7\x13\xac\x3f\x10\x16\x18\x76\x88\x8f\x84\xa8\xd3\xe9\xa3\xe3\x13\xf5\xe1\x78\xa8\xcf\x29\x2a\xfd\x93\xe2\x03\xdf\xc3\x2d\x1c\x09\xd8\x50\xf1\x81\xa8\x39\x12\x78\x4d\x5d\xf7\xa1\x41\xef\xdb\xed\x52\x3b\x16\x5a\x60\x28\xe2\xb5\xab\xb1\x9a\xa7\xd5\x4d\xf9\xaa\x1d\x00\xeb\xd6\xfe\x39\x3b\x03\xef\x10\x5a\xf5\x4e\x41\x9e\xc7\xc1\xb9\x35\xba\xf4\xa9\xa3\xd4\xdc\xfb\xfc\x80\x18\x49\xff\x19\x0a\x68\x11\x0d\xc9\xf5\xc9\x2a\xed\xe3\x0a\xbe\xb8\x39\x71\x64\xe1\x4e\x04\x78\x64\x14\x9d\x0c\x42\x28\x5b\x31\x10\xbd\xc3\x42\xa2\x4f\x66\x2b\x87\x13\xef\xea\xed\xa1\xf0\x77\xc2\x08\x16\x64\x76\x02\xfd\x42\x59\x37\x0b\x7f\x15\x26\x35\xb4\x2f\x40\x69\xee\x15\x3a\x33\x2e\x26\x4b\xba\xdf\x2f\x8c\x2d\x8e\xf4\xab\x68\x15\xec\x76\x9b\x9a\x97\x58\xbe\xc5\x92\x3c\x89\x20\x16\x12\xd0\x44\xb7\x05\xa9\x9e\x42\xb9\xd8\x13\x4e\xe6\xe9\x54\xd9\x99\x7a\x53\xc5\xe3\x75\x22\xc0\x90\xf7\xcb\x60\x4a\xe8\x70\xa8\x49\x7f\x62\x7c\xe6\x8e\xad\xc2\x5f\x07\xa6\xa7\x7b\x3a\x25\xf5\x0e\x62\xcf\x41\xbf\xbf\x6e\x05\x5c\xd1\x8c\x0d\x55\xaa\xbe\x54\x51\xbd\x1f\x93\x6a\x0b\x6f\xcd\x14\xbd\xb8\xb8\xd8\xef\x87\xcb\x23\xd1\xae\x55\x49\x54\xdb\x27\x17\xcf\x61\x1e\x42\x14\x45\x91\xab\xd8\xb1\x2b\x5b\xae\x5f\xbd\x6f\x6e\x12\xfc\x69\xb0\xed\xb1\x70\x7a\xd7\x83\x5b\x81\x5d\x22\xfe\x04\xcb\x7f\xf5\x27\x53\xe7\xda\xce\x3b\xd7\xff\xdf\x40\x41\x29\x5f\xdd\x3a\x58\x16\x29\xe1\x87\x2e\xb9\x8b\xc9\xc3\xee\x43\xed\x7c\x21\xa5\x8e\xf0\x0d\xa6\x4c\xf1\xe7\xf0\x24\xea\xd0\xda\x8a\x55\x93\x7e\x93\x00\xb1\xbd\x10\xc7\x9a\x81\x1d\xc9\x95\x9e\xa1\x38\xa8\x4d\x10\xfe\x07\xf1\x7d\x8a\xc3\xba\x65\x3e\xcc\xea\x6f\xe6\xad\x2b\xf5\x13\xf8\x7b\xc8\xdb\xf9\x7a\x1b\x1d\x1a\x23\x9a\x3d\x40\x2f\x4b\x6c\x73\x54\xcc\xd0\x6e\x48\x37\x47\xb3\x49\x8a\x9d\x42\xad\x07\x28\x35\xaa\xf9\x7e\x77\xe8\xdf\xc8\xed\xe6\x38\x0b\x66\x03\x72\xc8\x8c\x69\xeb\x73\x64\x39\x5e\xfe\x2e\xbb\x47\xcb\x7f\xbe\xfe\xfb\x03\x32\x29\xb8\xe2\xc9\x89\x61\xf8\x86\x08\xf4\xdc\xe9\x1e\xe7\x9a\x3b\xeb\x56\x4a\xb8\x30\x79\xdf\x61\xc3\x29\x3c\x81\xef\x83\xf4\x6d\x7d\x5b\xc1\xdb\x3d\xef\xcf\x33\xac\xc9\xac\x43\x72\x76\xf0\x5c\x9d\x7d\xf0\x69\x4a\x1e\x7d\xe2\xcd\x3f\x71\xec\xe5\x64\x78\xc3\xe9\x75\x04\x20\xcb\x24\xc9\x2d\x2a\xfb\x9c\xfc\x1a\xc6\xcc\xbf\x18\xdf\x30\x66\x09\xe4\xee\x51\x00\x46\x13\x47\xb3\xf9\x04\xd8\x3e\xea\xf1\x9d\x14\xad\x56\xc8\xd1\xf0\xfb\xf7\xe3\x5f\x1b\x9d\xd5\x23\x17\xc6\x9e\xff\xa3\xfd\xc5\x66\x7f\xa6\x9e\xd5\x3d\xd1\x5d\xd7\x54\x7d\xfa\x19\x07\x4a\x2b\x70\x87\xfb\x34\x81\x29\x5e\x1e\x5e\x4b\x45\x89\x59\x57\x04\xdd\xaf\x3f\x0a\x8e\xd7\x06\xc1\xae\x70\xad\x10\x2e\xda\x6a\x49\xea\x7e\xdd\x48\x1a\x4e\xd2\x44\xc0\x22\x58\xa3\x15\x75\x63\x01\x35\x25\x4a\x62\x35\x7d\xe6\x1f\x70\xe3\x7c\x59\x5c\xdd\xee\x4f\x42\x34\x87\x66\x08\x67\x12\xca\x30\xa0\x8e\x39\x93\xa7\x22\xac\xd4\xbf\x22\xf5\x3f\x27\x09\x9e\x41\xc6\x3f\x0b\xf7\x0b\x52\xa4\x7e\xdb\xfe\x2c\x82\xf4\x88\x2a\xad\x72\x72\x37\x56\x8a\x5d\x5b\x32\xff\x79\xf8\x3b\x00\x00\xff\xff\x3c\x84\x10\xcc\x8a\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6190, mode: os.FileMode(436), modTime: time.Unix(1461355098, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461618427, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/web/index.html b/web/index.html index 22d7ad0..286ccf7 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log}}{{.lastLog.log.substring(0,100)}}{{/if}} + {{#if .lastLog.log && .lastLog.length > 200}}{{.lastLog.log.substring(0,200)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log}}{{.log.substring(0,100)}}{{/if}} + {{#if .log && .log.length > 200}}{{.log.substring(0,200)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From a3a7c4f66ba4724ef850325999e781f282918f9e Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:39:11 +0000 Subject: [PATCH 27/42] Fixed last release file issue trimmed logs in tables some more --- bindata.go | 4 ++-- datastore/releases.go | 2 +- web/index.html | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bindata.go b/bindata.go index 3265bb1..26ced34 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xd4\xb8\x12\x7e\xee\xf9\x15\x26\xa3\x83\x80\x43\x92\x19\x38\x9c\x41\x7d\xd2\x39\xcb\x0a\xad\xb4\x12\xa0\xd5\xb2\xe2\x65\xb5\x0f\xee\xc4\xdd\x31\xe3\x5c\x64\x3b\x73\xa1\xd5\xff\x7d\xcb\xb7\xc4\x49\x27\x3d\x0d\x48\x48\xfb\x34\x71\xb9\x5c\xf5\xb9\xaa\xbe\xb2\xdd\x93\x3c\xca\xeb\x4c\xde\x37\x04\x15\xb2\x64\xe9\x59\xa2\xfe\x20\x86\xab\xed\x2a\x20\x55\xa0\x04\x04\xe7\xe9\xd9\x22\x29\x89\xc4\x28\x2b\x30\x17\x44\xae\x82\x56\x6e\xc2\xd7\x41\x27\xaf\x70\x49\x56\xc1\x0d\x25\xb7\x4d\xcd\x65\x80\xb2\xba\x92\xa4\x02\xbd\x5b\x9a\xcb\x62\x95\x93\x1b\x9a\x91\x50\x0f\x9e\x23\x5a\x51\x49\x31\x0b\x45\x86\x19\x59\x5d\x46\x17\x63\x3b\x39\x11\x19\xa7\x8d\xa4\x75\xe5\x99\xfa\x95\xd7\x95\x28\xa9\x2c\x50\x88\xde\x20\x41\xcb\x86\x91\xe7\xc8\x68\xa2\x9c\xd3\x1b\x52\x69\x65\x5a\xb5\x75\x2b\xc0\x8b\x24\x5b\x8e\x95\x11\x24\xeb\x9a\x81\x13\xf0\x22\xa9\x64\x24\xfd\x4e\x53\x49\x6c\xcc\x28\x83\x8c\x56\xd7\x88\x13\xb6\x0a\x84\xbc\x67\x44\x14\x84\xc0\xfe\x0b\x4e\x36\xab\x20\xce\x84\x88\x9b\x96\x93\xb0\xa4\x55\x04\x03\x83\x41\x2b\xc2\x96\x17\x91\xf2\x81\x69\x45\x38\xda\xc1\x70\xd1\xe0\x3c\xa7\xd5\x36\xe4\x74\x5b\xc8\x25\xba\x7c\xd5\xdc\xfd\xcf\x97\x33\xb2\xf1\xc5\x25\xe6\x5b\x5a\x39\x6d\xdc\xca\xda\x17\x1b\x65\x27\xdd\x83\xe3\xc5\x4f\x25\xc9\x29\x46\x4f\x00\x8d\xc9\xc5\x12\x5d\xfd\xf7\x75\x73\xf7\xd4\xb8\x1f\xc3\x19\xe3\xf9\xcf\x85\x75\x3c\x02\xd4\xc9\xf7\xce\x51\x94\x41\xc6\x08\x0f\xd7\xac\xce\xae\x8d\xb1\x9c\x8a\x86\xe1\xfb\x25\xd2\xb2\x79\xa0\x33\xbb\x32\x66\x25\xb9\x93\xa1\xb1\x6d\xac\x6a\x01\x66\x74\x5b\x2d\x91\x91\x77\xca\xf1\x33\x89\xd7\x90\x90\x67\xb1\x59\xaa\x06\x21\x27\xa2\x81\xd4\x43\x82\xcd\xfa\xaf\x81\xb0\xa8\x6f\x08\xdf\xb0\xfa\x36\xbc\x3b\xc0\x35\x36\xae\x05\xc6\x85\x0d\xf4\xe5\xc5\xc5\xbf\xac\xf1\xbb\x70\x24\xb3\x78\x11\xe1\xbc\xe6\x08\x00\x83\x49\xf3\x3d\x0c\x1d\xad\xa0\xda\x48\xd8\x47\x70\x8d\xb3\xeb\x2d\xaf\xdb\x2a\x0f\xb3\x9a\xd5\x7c\x09\x95\x98\xeb\x19\x3b\xbc\x2d\xa8\x24\x46\xb5\xe6\x39\x64\x84\xe3\x9c\xb6\x02\x72\x36\x2c\xad\x25\x8a\x5e\x91\x12\x5d\x92\xd2\x0b\x80\x02\x68\xd4\x1c\xc0\x35\x87\x66\x90\xf1\xb6\x5c\x0b\x64\xe2\x7a\xee\x8b\xfc\x90\xae\x6b\x29\xeb\x72\x64\x22\xea\xb5\x43\x41\x1a\x0c\x9c\x72\x9b\xb4\x80\xcf\xb3\x2c\xd3\x10\x36\x50\x8b\xe1\x2d\x31\x29\x58\xd7\x2c\xef\xa5\x82\x7e\x21\x4b\xf4\xc2\x60\x05\xbb\xca\x70\xd3\x32\xa6\xd3\x68\xac\x41\x9a\x30\xac\x53\x02\xa3\xe4\x54\x74\x4e\x07\x3a\x5a\x62\x95\x74\x2e\x69\x49\x84\xc4\x65\x63\xb5\x7a\x8f\xd1\xd5\x2b\x1b\x1f\x07\xf6\xea\xea\xea\xb0\x92\x87\x3b\x66\xf5\x76\xa2\xd4\x66\x38\xec\xc4\xfd\xd2\x14\x35\x7c\xaa\x56\x7b\xcd\x45\x12\xdb\x86\x92\xc4\xa6\x57\x27\xeb\x3a\xbf\x87\x3f\xb6\x9f\xd1\x7c\x15\xc8\xf7\xc0\xeb\x00\xa9\x46\x0f\x03\x20\x4d\xcc\x71\x26\xa1\x52\x55\x87\xcf\xe9\x0d\xca\x18\x16\x62\x15\xf4\x1d\x40\xb7\xad\xad\xee\xcc\xde\xbc\x96\xb6\xe1\xa5\x92\x2f\x92\xe2\xa5\x93\x7b\xc4\x0c\x74\x77\x45\x1f\x55\x7b\x05\x44\x2f\x95\xe6\x6e\x77\x4e\x37\xa6\xbc\xf7\x2a\x17\x03\x9b\x83\xb5\xba\xbd\x24\xa2\xc1\x95\x9b\xd6\xab\x82\x74\xb7\xb3\xcb\x61\xbb\x30\xab\x15\x93\x18\xcc\x18\xfb\x31\xdd\x68\xcb\xda\xb0\xda\xb1\x57\x97\xc1\x00\x7d\x49\xaa\x16\x75\x5f\x61\x51\x73\xfa\x45\xed\x9a\xa1\x03\x20\x49\xcb\x0e\x96\x86\x8c\x0a\xe9\x70\x32\x7a\x38\x0f\x84\x2b\xed\xfc\x22\xc1\xee\x24\x38\xc4\x10\xaa\x93\x23\x48\x7f\xe3\xf5\x67\x92\x49\xf4\x0e\xcc\x26\x31\xb6\x86\x63\x46\xcd\x97\x89\x5c\x63\x94\x4c\xec\x4e\xf0\x3b\x8c\xe0\x14\xe9\x82\x34\xf6\x02\xe9\x7b\xb4\x2e\x1f\x41\xb3\x13\xea\xc0\x7b\xfc\x18\x3d\xca\x5a\xce\x21\x2e\x1f\x25\xde\x12\x07\x62\x1e\x85\x1f\x5d\x2c\xc2\xac\xa0\x2c\x87\xe5\x01\xca\x49\x56\x6b\xef\xab\x40\xcd\x76\x68\xfb\x38\x9d\x07\x3a\x79\x76\xbf\xef\x95\xd2\x5c\xe0\x76\x3b\xab\x15\xa9\x4b\x83\xaa\x0b\xdc\xdb\x9b\x4a\x5c\x87\xa3\x53\x3b\x21\x90\x23\x70\xd3\x58\x50\x5d\x85\x19\xa3\xd9\x35\x14\x33\x30\x79\x4b\xf8\xcf\x2d\xf8\x0a\xd2\x3f\xcc\x08\xe9\xa1\x0f\xd0\x8f\xb7\x1a\xb4\xac\xcb\x9c\x9f\x08\xc2\xc4\x09\xf1\x9e\x88\x63\x6c\x63\x13\xf7\x51\xa2\xf9\x7e\xff\x2d\xc1\x1c\x00\x72\x34\x1b\x7f\x7b\x45\xaa\x0a\xc6\xd6\xce\x8f\xa9\xd7\x13\xac\x3f\x10\x16\x18\x76\x88\x8f\x84\xa8\xd3\xe9\xa3\xe3\x13\xf5\xe1\x78\xa8\xcf\x29\x2a\xfd\x93\xe2\x03\xdf\xc3\x2d\x1c\x09\xd8\x50\xf1\x81\xa8\x39\x12\x78\x4d\x5d\xf7\xa1\x41\xef\xdb\xed\x52\x3b\x16\x5a\x60\x28\xe2\xb5\xab\xb1\x9a\xa7\xd5\x4d\xf9\xaa\x1d\x00\xeb\xd6\xfe\x39\x3b\x03\xef\x10\x5a\xf5\x4e\x41\x9e\xc7\xc1\xb9\x35\xba\xf4\xa9\xa3\xd4\xdc\xfb\xfc\x80\x18\x49\xff\x19\x0a\x68\x11\x0d\xc9\xf5\xc9\x2a\xed\xe3\x0a\xbe\xb8\x39\x71\x64\xe1\x4e\x04\x78\x64\x14\x9d\x0c\x42\x28\x5b\x31\x10\xbd\xc3\x42\xa2\x4f\x66\x2b\x87\x13\xef\xea\xed\xa1\xf0\x77\xc2\x08\x16\x64\x76\x02\xfd\x42\x59\x37\x0b\x7f\x15\x26\x35\xb4\x2f\x40\x69\xee\x15\x3a\x33\x2e\x26\x4b\xba\xdf\x2f\x8c\x2d\x8e\xf4\xab\x68\x15\xec\x76\x9b\x9a\x97\x58\xbe\xc5\x92\x3c\x89\x20\x16\x12\xd0\x44\xb7\x05\xa9\x9e\x42\xb9\xd8\x13\x4e\xe6\xe9\x54\xd9\x99\x7a\x53\xc5\xe3\x75\x22\xc0\x90\xf7\xcb\x60\x4a\xe8\x70\xa8\x49\x7f\x62\x7c\xe6\x8e\xad\xc2\x5f\x07\xa6\xa7\x7b\x3a\x25\xf5\x0e\x62\xcf\x41\xbf\xbf\x6e\x05\x5c\xd1\x8c\x0d\x55\xaa\xbe\x54\x51\xbd\x1f\x93\x6a\x0b\x6f\xcd\x14\xbd\xb8\xb8\xd8\xef\x87\xcb\x23\xd1\xae\x55\x49\x54\xdb\x27\x17\xcf\x61\x1e\x42\x14\x45\x91\xab\xd8\xb1\x2b\x5b\xae\x5f\xbd\x6f\x6e\x12\xfc\x69\xb0\xed\xb1\x70\x7a\xd7\x83\x5b\x81\x5d\x22\xfe\x04\xcb\x7f\xf5\x27\x53\xe7\xda\xce\x3b\xd7\xff\xdf\x40\x41\x29\x5f\xdd\x3a\x58\x16\x29\xe1\x87\x2e\xb9\x8b\xc9\xc3\xee\x43\xed\x7c\x21\xa5\x8e\xf0\x0d\xa6\x4c\xf1\xe7\xf0\x24\xea\xd0\xda\x8a\x55\x93\x7e\x93\x00\xb1\xbd\x10\xc7\x9a\x81\x1d\xc9\x95\x9e\xa1\x38\xa8\x4d\x10\xfe\x07\xf1\x7d\x8a\xc3\xba\x65\x3e\xcc\xea\x6f\xe6\xad\x2b\xf5\x13\xf8\x7b\xc8\xdb\xf9\x7a\x1b\x1d\x1a\x23\x9a\x3d\x40\x2f\x4b\x6c\x73\x54\xcc\xd0\x6e\x48\x37\x47\xb3\x49\x8a\x9d\x42\xad\x07\x28\x35\xaa\xf9\x7e\x77\xe8\xdf\xc8\xed\xe6\x38\x0b\x66\x03\x72\xc8\x8c\x69\xeb\x73\x64\x39\x5e\xfe\x2e\xbb\x47\xcb\x7f\xbe\xfe\xfb\x03\x32\x29\xb8\xe2\xc9\x89\x61\xf8\x86\x08\xf4\xdc\xe9\x1e\xe7\x9a\x3b\xeb\x56\x4a\xb8\x30\x79\xdf\x61\xc3\x29\x3c\x81\xef\x83\xf4\x6d\x7d\x5b\xc1\xdb\x3d\xef\xcf\x33\xac\xc9\xac\x43\x72\x76\xf0\x5c\x9d\x7d\xf0\x69\x4a\x1e\x7d\xe2\xcd\x3f\x71\xec\xe5\x64\x78\xc3\xe9\x75\x04\x20\xcb\x24\xc9\x2d\x2a\xfb\x9c\xfc\x1a\xc6\xcc\xbf\x18\xdf\x30\x66\x09\xe4\xee\x51\x00\x46\x13\x47\xb3\xf9\x04\xd8\x3e\xea\xf1\x9d\x14\xad\x56\xc8\xd1\xf0\xfb\xf7\xe3\x5f\x1b\x9d\xd5\x23\x17\xc6\x9e\xff\xa3\xfd\xc5\x66\x7f\xa6\x9e\xd5\x3d\xd1\x5d\xd7\x54\x7d\xfa\x19\x07\x4a\x2b\x70\x87\xfb\x34\x81\x29\x5e\x1e\x5e\x4b\x45\x89\x59\x57\x04\xdd\xaf\x3f\x0a\x8e\xd7\x06\xc1\xae\x70\xad\x10\x2e\xda\x6a\x49\xea\x7e\xdd\x48\x1a\x4e\xd2\x44\xc0\x22\x58\xa3\x15\x75\x63\x01\x35\x25\x4a\x62\x35\x7d\xe6\x1f\x70\xe3\x7c\x59\x5c\xdd\xee\x4f\x42\x34\x87\x66\x08\x67\x12\xca\x30\xa0\x8e\x39\x93\xa7\x22\xac\xd4\xbf\x22\xf5\x3f\x27\x09\x9e\x41\xc6\x3f\x0b\xf7\x0b\x52\xa4\x7e\xdb\xfe\x2c\x82\xf4\x88\x2a\xad\x72\x72\x37\x56\x8a\x5d\x5b\x32\xff\x79\xf8\x3b\x00\x00\xff\xff\x3c\x84\x10\xcc\x8a\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfb\x31\xa9\xb6\xf0\xd6\x4c\xd5\x85\x7f\xbf\x1f\x2e\x8f\x44\xbb\x56\x25\x51\x6d\x9f\x5c\x3c\x87\x79\x08\x51\x14\x45\xae\x62\xc7\xae\x6c\xb9\x7e\xf1\xbe\xb9\x49\xf0\xc7\xc1\xb6\xc7\xc2\xe9\x5d\x0f\x6e\x05\x76\x89\xf8\x0b\x2c\xff\xdd\x9f\x4c\x9d\x6b\x3b\xef\x5c\xff\xb4\x81\x82\x52\xbe\xba\x75\xb0\x2c\x52\xc2\xf7\x5d\x72\x17\x93\x87\xdd\xfb\xda\xf9\x42\x4a\x1d\xe1\x1b\x4c\x99\xe2\xcf\xe1\x49\xd4\xa1\xb5\x15\xab\x26\xfd\x26\x01\x62\x7b\x21\x8e\x35\x03\x3b\x92\x2b\x3d\x43\x71\x50\x9b\x20\xfc\x77\xe2\xfb\x14\x87\x75\xcb\x7c\x98\xd5\x5f\xcd\x5b\x57\xea\x27\xf0\xf7\x90\xb7\xf3\xf5\x36\x3a\x34\x46\x34\x7b\x80\x5e\x96\xd8\xe6\xa8\x98\xa1\xdd\x90\x6e\x8e\x66\x93\x14\x3b\x85\x5a\x0f\x50\x6a\x54\xf3\xfd\xee\xd0\x7f\x91\xdb\xcd\x71\x16\xcc\x06\xe4\x90\x19\xd3\xd6\xe7\xc8\x72\xbc\xfc\x5d\x76\x8f\x96\xff\x7c\xfd\xf7\x07\x64\x52\x70\xc5\x93\x13\xc3\xf0\x15\x11\xe8\xb9\xd3\x3d\xce\x35\x77\xd6\xad\x94\x70\x61\xf2\xbe\xc3\x86\x53\x78\x02\xdf\x07\xe9\x9b\xfa\xb6\x82\xb7\x7b\xde\x9f\x67\x58\x93\x59\x87\xe4\xec\xe0\xb9\x3a\xfb\xe0\xd3\x94\x3c\xfa\xc4\x9b\x7f\xe2\xd8\xcb\xc9\xf0\x86\xd3\xeb\x08\x40\x96\x49\x92\x5b\x54\xf6\x39\xf9\x25\x8c\x99\x7f\x31\xbe\x66\xcc\x12\xc8\xdd\xa3\x00\x8c\x26\x8e\x66\xf3\x09\xb0\x7d\xd4\xe3\x3b\x29\x5a\xad\x90\xa3\xe1\xb7\xef\xc7\xbf\x36\x3a\xab\x47\x2e\x8c\x3d\xff\x47\xfb\x8b\xcd\xfe\x4c\x3d\xab\x7b\xa2\xbb\xae\xa9\xfa\xf4\x33\x0e\x94\x56\xe0\x0e\xf7\x69\x02\x53\xbc\x38\xbc\x96\x8a\x12\xb3\xae\x08\xba\x5f\x7f\x14\x1c\xaf\x0d\x82\x5d\xe1\x5a\x21\x5c\xb4\xd5\x92\xd4\xfd\xba\x91\x34\x9c\xa4\x89\x80\x45\xb0\x46\x2b\xea\xc6\x02\x6a\x4a\x94\xc4\x6a\xfa\xcc\x3f\xe0\xc6\xf9\xb2\xb8\xba\xdd\x9f\x84\x68\x0e\xcd\x10\xce\x24\x94\x61\x40\x1d\x73\x26\x4f\x45\x58\xa9\x7f\x45\xea\x7f\x4e\x12\x3c\x83\x8c\x7f\x12\xee\x17\xa4\x48\xfd\xb6\xfd\x49\x04\xe9\x11\x55\x5a\xe5\xe4\x6e\xac\x14\xbb\xb6\x64\xfe\xf3\xf0\x4f\x00\x00\x00\xff\xff\x2e\x0e\x74\x97\x8a\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461618427, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461620307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/datastore/releases.go b/datastore/releases.go index 483170b..c6b7e2e 100644 --- a/datastore/releases.go +++ b/datastore/releases.go @@ -121,7 +121,7 @@ func (ds *Store) LastRelease() (*Release, error) { err := ds.bolt.View(func(tx *bolt.Tx) error { c := tx.Bucket([]byte(bucketReleases)).Cursor() - _, v := c.Last() + _, v := c.First() // this is confusing if v == nil { return ErrNotFound } diff --git a/web/index.html b/web/index.html index 286ccf7..c1fb7eb 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log && .lastLog.length > 200}}{{.lastLog.log.substring(0,200)}}...{{else}}{{.lastLog.log}}{{/if}} + {{#if .lastLog.log && .lastLog.length > 100}}{{.lastLog.log.substring(0,100)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log && .log.length > 200}}{{.log.substring(0,200)}}...{{else}}{{.log}}{{/if}} + {{#if .log && .log.length > 100}}{{.log.substring(0,100)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From 1a161d9554eedf13113b7fc147bb29339e03ba12 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 21:39:11 +0000 Subject: [PATCH 28/42] Fixed last release file issue trimmed logs in tables some more --- bindata.go | 4 ++-- datastore/releases.go | 2 +- web/index.html | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bindata.go b/bindata.go index 3265bb1..26ced34 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xd4\xb8\x12\x7e\xee\xf9\x15\x26\xa3\x83\x80\x43\x92\x19\x38\x9c\x41\x7d\xd2\x39\xcb\x0a\xad\xb4\x12\xa0\xd5\xb2\xe2\x65\xb5\x0f\xee\xc4\xdd\x31\xe3\x5c\x64\x3b\x73\xa1\xd5\xff\x7d\xcb\xb7\xc4\x49\x27\x3d\x0d\x48\x48\xfb\x34\x71\xb9\x5c\xf5\xb9\xaa\xbe\xb2\xdd\x93\x3c\xca\xeb\x4c\xde\x37\x04\x15\xb2\x64\xe9\x59\xa2\xfe\x20\x86\xab\xed\x2a\x20\x55\xa0\x04\x04\xe7\xe9\xd9\x22\x29\x89\xc4\x28\x2b\x30\x17\x44\xae\x82\x56\x6e\xc2\xd7\x41\x27\xaf\x70\x49\x56\xc1\x0d\x25\xb7\x4d\xcd\x65\x80\xb2\xba\x92\xa4\x02\xbd\x5b\x9a\xcb\x62\x95\x93\x1b\x9a\x91\x50\x0f\x9e\x23\x5a\x51\x49\x31\x0b\x45\x86\x19\x59\x5d\x46\x17\x63\x3b\x39\x11\x19\xa7\x8d\xa4\x75\xe5\x99\xfa\x95\xd7\x95\x28\xa9\x2c\x50\x88\xde\x20\x41\xcb\x86\x91\xe7\xc8\x68\xa2\x9c\xd3\x1b\x52\x69\x65\x5a\xb5\x75\x2b\xc0\x8b\x24\x5b\x8e\x95\x11\x24\xeb\x9a\x81\x13\xf0\x22\xa9\x64\x24\xfd\x4e\x53\x49\x6c\xcc\x28\x83\x8c\x56\xd7\x88\x13\xb6\x0a\x84\xbc\x67\x44\x14\x84\xc0\xfe\x0b\x4e\x36\xab\x20\xce\x84\x88\x9b\x96\x93\xb0\xa4\x55\x04\x03\x83\x41\x2b\xc2\x96\x17\x91\xf2\x81\x69\x45\x38\xda\xc1\x70\xd1\xe0\x3c\xa7\xd5\x36\xe4\x74\x5b\xc8\x25\xba\x7c\xd5\xdc\xfd\xcf\x97\x33\xb2\xf1\xc5\x25\xe6\x5b\x5a\x39\x6d\xdc\xca\xda\x17\x1b\x65\x27\xdd\x83\xe3\xc5\x4f\x25\xc9\x29\x46\x4f\x00\x8d\xc9\xc5\x12\x5d\xfd\xf7\x75\x73\xf7\xd4\xb8\x1f\xc3\x19\xe3\xf9\xcf\x85\x75\x3c\x02\xd4\xc9\xf7\xce\x51\x94\x41\xc6\x08\x0f\xd7\xac\xce\xae\x8d\xb1\x9c\x8a\x86\xe1\xfb\x25\xd2\xb2\x79\xa0\x33\xbb\x32\x66\x25\xb9\x93\xa1\xb1\x6d\xac\x6a\x01\x66\x74\x5b\x2d\x91\x91\x77\xca\xf1\x33\x89\xd7\x90\x90\x67\xb1\x59\xaa\x06\x21\x27\xa2\x81\xd4\x43\x82\xcd\xfa\xaf\x81\xb0\xa8\x6f\x08\xdf\xb0\xfa\x36\xbc\x3b\xc0\x35\x36\xae\x05\xc6\x85\x0d\xf4\xe5\xc5\xc5\xbf\xac\xf1\xbb\x70\x24\xb3\x78\x11\xe1\xbc\xe6\x08\x00\x83\x49\xf3\x3d\x0c\x1d\xad\xa0\xda\x48\xd8\x47\x70\x8d\xb3\xeb\x2d\xaf\xdb\x2a\x0f\xb3\x9a\xd5\x7c\x09\x95\x98\xeb\x19\x3b\xbc\x2d\xa8\x24\x46\xb5\xe6\x39\x64\x84\xe3\x9c\xb6\x02\x72\x36\x2c\xad\x25\x8a\x5e\x91\x12\x5d\x92\xd2\x0b\x80\x02\x68\xd4\x1c\xc0\x35\x87\x66\x90\xf1\xb6\x5c\x0b\x64\xe2\x7a\xee\x8b\xfc\x90\xae\x6b\x29\xeb\x72\x64\x22\xea\xb5\x43\x41\x1a\x0c\x9c\x72\x9b\xb4\x80\xcf\xb3\x2c\xd3\x10\x36\x50\x8b\xe1\x2d\x31\x29\x58\xd7\x2c\xef\xa5\x82\x7e\x21\x4b\xf4\xc2\x60\x05\xbb\xca\x70\xd3\x32\xa6\xd3\x68\xac\x41\x9a\x30\xac\x53\x02\xa3\xe4\x54\x74\x4e\x07\x3a\x5a\x62\x95\x74\x2e\x69\x49\x84\xc4\x65\x63\xb5\x7a\x8f\xd1\xd5\x2b\x1b\x1f\x07\xf6\xea\xea\xea\xb0\x92\x87\x3b\x66\xf5\x76\xa2\xd4\x66\x38\xec\xc4\xfd\xd2\x14\x35\x7c\xaa\x56\x7b\xcd\x45\x12\xdb\x86\x92\xc4\xa6\x57\x27\xeb\x3a\xbf\x87\x3f\xb6\x9f\xd1\x7c\x15\xc8\xf7\xc0\xeb\x00\xa9\x46\x0f\x03\x20\x4d\xcc\x71\x26\xa1\x52\x55\x87\xcf\xe9\x0d\xca\x18\x16\x62\x15\xf4\x1d\x40\xb7\xad\xad\xee\xcc\xde\xbc\x96\xb6\xe1\xa5\x92\x2f\x92\xe2\xa5\x93\x7b\xc4\x0c\x74\x77\x45\x1f\x55\x7b\x05\x44\x2f\x95\xe6\x6e\x77\x4e\x37\xa6\xbc\xf7\x2a\x17\x03\x9b\x83\xb5\xba\xbd\x24\xa2\xc1\x95\x9b\xd6\xab\x82\x74\xb7\xb3\xcb\x61\xbb\x30\xab\x15\x93\x18\xcc\x18\xfb\x31\xdd\x68\xcb\xda\xb0\xda\xb1\x57\x97\xc1\x00\x7d\x49\xaa\x16\x75\x5f\x61\x51\x73\xfa\x45\xed\x9a\xa1\x03\x20\x49\xcb\x0e\x96\x86\x8c\x0a\xe9\x70\x32\x7a\x38\x0f\x84\x2b\xed\xfc\x22\xc1\xee\x24\x38\xc4\x10\xaa\x93\x23\x48\x7f\xe3\xf5\x67\x92\x49\xf4\x0e\xcc\x26\x31\xb6\x86\x63\x46\xcd\x97\x89\x5c\x63\x94\x4c\xec\x4e\xf0\x3b\x8c\xe0\x14\xe9\x82\x34\xf6\x02\xe9\x7b\xb4\x2e\x1f\x41\xb3\x13\xea\xc0\x7b\xfc\x18\x3d\xca\x5a\xce\x21\x2e\x1f\x25\xde\x12\x07\x62\x1e\x85\x1f\x5d\x2c\xc2\xac\xa0\x2c\x87\xe5\x01\xca\x49\x56\x6b\xef\xab\x40\xcd\x76\x68\xfb\x38\x9d\x07\x3a\x79\x76\xbf\xef\x95\xd2\x5c\xe0\x76\x3b\xab\x15\xa9\x4b\x83\xaa\x0b\xdc\xdb\x9b\x4a\x5c\x87\xa3\x53\x3b\x21\x90\x23\x70\xd3\x58\x50\x5d\x85\x19\xa3\xd9\x35\x14\x33\x30\x79\x4b\xf8\xcf\x2d\xf8\x0a\xd2\x3f\xcc\x08\xe9\xa1\x0f\xd0\x8f\xb7\x1a\xb4\xac\xcb\x9c\x9f\x08\xc2\xc4\x09\xf1\x9e\x88\x63\x6c\x63\x13\xf7\x51\xa2\xf9\x7e\xff\x2d\xc1\x1c\x00\x72\x34\x1b\x7f\x7b\x45\xaa\x0a\xc6\xd6\xce\x8f\xa9\xd7\x13\xac\x3f\x10\x16\x18\x76\x88\x8f\x84\xa8\xd3\xe9\xa3\xe3\x13\xf5\xe1\x78\xa8\xcf\x29\x2a\xfd\x93\xe2\x03\xdf\xc3\x2d\x1c\x09\xd8\x50\xf1\x81\xa8\x39\x12\x78\x4d\x5d\xf7\xa1\x41\xef\xdb\xed\x52\x3b\x16\x5a\x60\x28\xe2\xb5\xab\xb1\x9a\xa7\xd5\x4d\xf9\xaa\x1d\x00\xeb\xd6\xfe\x39\x3b\x03\xef\x10\x5a\xf5\x4e\x41\x9e\xc7\xc1\xb9\x35\xba\xf4\xa9\xa3\xd4\xdc\xfb\xfc\x80\x18\x49\xff\x19\x0a\x68\x11\x0d\xc9\xf5\xc9\x2a\xed\xe3\x0a\xbe\xb8\x39\x71\x64\xe1\x4e\x04\x78\x64\x14\x9d\x0c\x42\x28\x5b\x31\x10\xbd\xc3\x42\xa2\x4f\x66\x2b\x87\x13\xef\xea\xed\xa1\xf0\x77\xc2\x08\x16\x64\x76\x02\xfd\x42\x59\x37\x0b\x7f\x15\x26\x35\xb4\x2f\x40\x69\xee\x15\x3a\x33\x2e\x26\x4b\xba\xdf\x2f\x8c\x2d\x8e\xf4\xab\x68\x15\xec\x76\x9b\x9a\x97\x58\xbe\xc5\x92\x3c\x89\x20\x16\x12\xd0\x44\xb7\x05\xa9\x9e\x42\xb9\xd8\x13\x4e\xe6\xe9\x54\xd9\x99\x7a\x53\xc5\xe3\x75\x22\xc0\x90\xf7\xcb\x60\x4a\xe8\x70\xa8\x49\x7f\x62\x7c\xe6\x8e\xad\xc2\x5f\x07\xa6\xa7\x7b\x3a\x25\xf5\x0e\x62\xcf\x41\xbf\xbf\x6e\x05\x5c\xd1\x8c\x0d\x55\xaa\xbe\x54\x51\xbd\x1f\x93\x6a\x0b\x6f\xcd\x14\xbd\xb8\xb8\xd8\xef\x87\xcb\x23\xd1\xae\x55\x49\x54\xdb\x27\x17\xcf\x61\x1e\x42\x14\x45\x91\xab\xd8\xb1\x2b\x5b\xae\x5f\xbd\x6f\x6e\x12\xfc\x69\xb0\xed\xb1\x70\x7a\xd7\x83\x5b\x81\x5d\x22\xfe\x04\xcb\x7f\xf5\x27\x53\xe7\xda\xce\x3b\xd7\xff\xdf\x40\x41\x29\x5f\xdd\x3a\x58\x16\x29\xe1\x87\x2e\xb9\x8b\xc9\xc3\xee\x43\xed\x7c\x21\xa5\x8e\xf0\x0d\xa6\x4c\xf1\xe7\xf0\x24\xea\xd0\xda\x8a\x55\x93\x7e\x93\x00\xb1\xbd\x10\xc7\x9a\x81\x1d\xc9\x95\x9e\xa1\x38\xa8\x4d\x10\xfe\x07\xf1\x7d\x8a\xc3\xba\x65\x3e\xcc\xea\x6f\xe6\xad\x2b\xf5\x13\xf8\x7b\xc8\xdb\xf9\x7a\x1b\x1d\x1a\x23\x9a\x3d\x40\x2f\x4b\x6c\x73\x54\xcc\xd0\x6e\x48\x37\x47\xb3\x49\x8a\x9d\x42\xad\x07\x28\x35\xaa\xf9\x7e\x77\xe8\xdf\xc8\xed\xe6\x38\x0b\x66\x03\x72\xc8\x8c\x69\xeb\x73\x64\x39\x5e\xfe\x2e\xbb\x47\xcb\x7f\xbe\xfe\xfb\x03\x32\x29\xb8\xe2\xc9\x89\x61\xf8\x86\x08\xf4\xdc\xe9\x1e\xe7\x9a\x3b\xeb\x56\x4a\xb8\x30\x79\xdf\x61\xc3\x29\x3c\x81\xef\x83\xf4\x6d\x7d\x5b\xc1\xdb\x3d\xef\xcf\x33\xac\xc9\xac\x43\x72\x76\xf0\x5c\x9d\x7d\xf0\x69\x4a\x1e\x7d\xe2\xcd\x3f\x71\xec\xe5\x64\x78\xc3\xe9\x75\x04\x20\xcb\x24\xc9\x2d\x2a\xfb\x9c\xfc\x1a\xc6\xcc\xbf\x18\xdf\x30\x66\x09\xe4\xee\x51\x00\x46\x13\x47\xb3\xf9\x04\xd8\x3e\xea\xf1\x9d\x14\xad\x56\xc8\xd1\xf0\xfb\xf7\xe3\x5f\x1b\x9d\xd5\x23\x17\xc6\x9e\xff\xa3\xfd\xc5\x66\x7f\xa6\x9e\xd5\x3d\xd1\x5d\xd7\x54\x7d\xfa\x19\x07\x4a\x2b\x70\x87\xfb\x34\x81\x29\x5e\x1e\x5e\x4b\x45\x89\x59\x57\x04\xdd\xaf\x3f\x0a\x8e\xd7\x06\xc1\xae\x70\xad\x10\x2e\xda\x6a\x49\xea\x7e\xdd\x48\x1a\x4e\xd2\x44\xc0\x22\x58\xa3\x15\x75\x63\x01\x35\x25\x4a\x62\x35\x7d\xe6\x1f\x70\xe3\x7c\x59\x5c\xdd\xee\x4f\x42\x34\x87\x66\x08\x67\x12\xca\x30\xa0\x8e\x39\x93\xa7\x22\xac\xd4\xbf\x22\xf5\x3f\x27\x09\x9e\x41\xc6\x3f\x0b\xf7\x0b\x52\xa4\x7e\xdb\xfe\x2c\x82\xf4\x88\x2a\xad\x72\x72\x37\x56\x8a\x5d\x5b\x32\xff\x79\xf8\x3b\x00\x00\xff\xff\x3c\x84\x10\xcc\x8a\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfb\x31\xa9\xb6\xf0\xd6\x4c\xd5\x85\x7f\xbf\x1f\x2e\x8f\x44\xbb\x56\x25\x51\x6d\x9f\x5c\x3c\x87\x79\x08\x51\x14\x45\xae\x62\xc7\xae\x6c\xb9\x7e\xf1\xbe\xb9\x49\xf0\xc7\xc1\xb6\xc7\xc2\xe9\x5d\x0f\x6e\x05\x76\x89\xf8\x0b\x2c\xff\xdd\x9f\x4c\x9d\x6b\x3b\xef\x5c\xff\xb4\x81\x82\x52\xbe\xba\x75\xb0\x2c\x52\xc2\xf7\x5d\x72\x17\x93\x87\xdd\xfb\xda\xf9\x42\x4a\x1d\xe1\x1b\x4c\x99\xe2\xcf\xe1\x49\xd4\xa1\xb5\x15\xab\x26\xfd\x26\x01\x62\x7b\x21\x8e\x35\x03\x3b\x92\x2b\x3d\x43\x71\x50\x9b\x20\xfc\x77\xe2\xfb\x14\x87\x75\xcb\x7c\x98\xd5\x5f\xcd\x5b\x57\xea\x27\xf0\xf7\x90\xb7\xf3\xf5\x36\x3a\x34\x46\x34\x7b\x80\x5e\x96\xd8\xe6\xa8\x98\xa1\xdd\x90\x6e\x8e\x66\x93\x14\x3b\x85\x5a\x0f\x50\x6a\x54\xf3\xfd\xee\xd0\x7f\x91\xdb\xcd\x71\x16\xcc\x06\xe4\x90\x19\xd3\xd6\xe7\xc8\x72\xbc\xfc\x5d\x76\x8f\x96\xff\x7c\xfd\xf7\x07\x64\x52\x70\xc5\x93\x13\xc3\xf0\x15\x11\xe8\xb9\xd3\x3d\xce\x35\x77\xd6\xad\x94\x70\x61\xf2\xbe\xc3\x86\x53\x78\x02\xdf\x07\xe9\x9b\xfa\xb6\x82\xb7\x7b\xde\x9f\x67\x58\x93\x59\x87\xe4\xec\xe0\xb9\x3a\xfb\xe0\xd3\x94\x3c\xfa\xc4\x9b\x7f\xe2\xd8\xcb\xc9\xf0\x86\xd3\xeb\x08\x40\x96\x49\x92\x5b\x54\xf6\x39\xf9\x25\x8c\x99\x7f\x31\xbe\x66\xcc\x12\xc8\xdd\xa3\x00\x8c\x26\x8e\x66\xf3\x09\xb0\x7d\xd4\xe3\x3b\x29\x5a\xad\x90\xa3\xe1\xb7\xef\xc7\xbf\x36\x3a\xab\x47\x2e\x8c\x3d\xff\x47\xfb\x8b\xcd\xfe\x4c\x3d\xab\x7b\xa2\xbb\xae\xa9\xfa\xf4\x33\x0e\x94\x56\xe0\x0e\xf7\x69\x02\x53\xbc\x38\xbc\x96\x8a\x12\xb3\xae\x08\xba\x5f\x7f\x14\x1c\xaf\x0d\x82\x5d\xe1\x5a\x21\x5c\xb4\xd5\x92\xd4\xfd\xba\x91\x34\x9c\xa4\x89\x80\x45\xb0\x46\x2b\xea\xc6\x02\x6a\x4a\x94\xc4\x6a\xfa\xcc\x3f\xe0\xc6\xf9\xb2\xb8\xba\xdd\x9f\x84\x68\x0e\xcd\x10\xce\x24\x94\x61\x40\x1d\x73\x26\x4f\x45\x58\xa9\x7f\x45\xea\x7f\x4e\x12\x3c\x83\x8c\x7f\x12\xee\x17\xa4\x48\xfd\xb6\xfd\x49\x04\xe9\x11\x55\x5a\xe5\xe4\x6e\xac\x14\xbb\xb6\x64\xfe\xf3\xf0\x4f\x00\x00\x00\xff\xff\x2e\x0e\x74\x97\x8a\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461618427, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461620307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/datastore/releases.go b/datastore/releases.go index 483170b..c6b7e2e 100644 --- a/datastore/releases.go +++ b/datastore/releases.go @@ -121,7 +121,7 @@ func (ds *Store) LastRelease() (*Release, error) { err := ds.bolt.View(func(tx *bolt.Tx) error { c := tx.Bucket([]byte(bucketReleases)).Cursor() - _, v := c.Last() + _, v := c.First() // this is confusing if v == nil { return ErrNotFound } diff --git a/web/index.html b/web/index.html index 286ccf7..c1fb7eb 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log && .lastLog.length > 200}}{{.lastLog.log.substring(0,200)}}...{{else}}{{.lastLog.log}}{{/if}} + {{#if .lastLog.log && .lastLog.length > 100}}{{.lastLog.log.substring(0,100)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log && .log.length > 200}}{{.log.substring(0,200)}}...{{else}}{{.log}}{{/if}} + {{#if .log && .log.length > 100}}{{.log.substring(0,100)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From a5e982f50894b3fc7b00ea333780e6f747ed9cbe Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 28 Apr 2016 15:12:50 +0000 Subject: [PATCH 29/42] Fixed small issue with logs in table formatting --- bindata.go | 4 ++-- web/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindata.go b/bindata.go index 26ced34..b789feb 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfb\x31\xa9\xb6\xf0\xd6\x4c\xd5\x85\x7f\xbf\x1f\x2e\x8f\x44\xbb\x56\x25\x51\x6d\x9f\x5c\x3c\x87\x79\x08\x51\x14\x45\xae\x62\xc7\xae\x6c\xb9\x7e\xf1\xbe\xb9\x49\xf0\xc7\xc1\xb6\xc7\xc2\xe9\x5d\x0f\x6e\x05\x76\x89\xf8\x0b\x2c\xff\xdd\x9f\x4c\x9d\x6b\x3b\xef\x5c\xff\xb4\x81\x82\x52\xbe\xba\x75\xb0\x2c\x52\xc2\xf7\x5d\x72\x17\x93\x87\xdd\xfb\xda\xf9\x42\x4a\x1d\xe1\x1b\x4c\x99\xe2\xcf\xe1\x49\xd4\xa1\xb5\x15\xab\x26\xfd\x26\x01\x62\x7b\x21\x8e\x35\x03\x3b\x92\x2b\x3d\x43\x71\x50\x9b\x20\xfc\x77\xe2\xfb\x14\x87\x75\xcb\x7c\x98\xd5\x5f\xcd\x5b\x57\xea\x27\xf0\xf7\x90\xb7\xf3\xf5\x36\x3a\x34\x46\x34\x7b\x80\x5e\x96\xd8\xe6\xa8\x98\xa1\xdd\x90\x6e\x8e\x66\x93\x14\x3b\x85\x5a\x0f\x50\x6a\x54\xf3\xfd\xee\xd0\x7f\x91\xdb\xcd\x71\x16\xcc\x06\xe4\x90\x19\xd3\xd6\xe7\xc8\x72\xbc\xfc\x5d\x76\x8f\x96\xff\x7c\xfd\xf7\x07\x64\x52\x70\xc5\x93\x13\xc3\xf0\x15\x11\xe8\xb9\xd3\x3d\xce\x35\x77\xd6\xad\x94\x70\x61\xf2\xbe\xc3\x86\x53\x78\x02\xdf\x07\xe9\x9b\xfa\xb6\x82\xb7\x7b\xde\x9f\x67\x58\x93\x59\x87\xe4\xec\xe0\xb9\x3a\xfb\xe0\xd3\x94\x3c\xfa\xc4\x9b\x7f\xe2\xd8\xcb\xc9\xf0\x86\xd3\xeb\x08\x40\x96\x49\x92\x5b\x54\xf6\x39\xf9\x25\x8c\x99\x7f\x31\xbe\x66\xcc\x12\xc8\xdd\xa3\x00\x8c\x26\x8e\x66\xf3\x09\xb0\x7d\xd4\xe3\x3b\x29\x5a\xad\x90\xa3\xe1\xb7\xef\xc7\xbf\x36\x3a\xab\x47\x2e\x8c\x3d\xff\x47\xfb\x8b\xcd\xfe\x4c\x3d\xab\x7b\xa2\xbb\xae\xa9\xfa\xf4\x33\x0e\x94\x56\xe0\x0e\xf7\x69\x02\x53\xbc\x38\xbc\x96\x8a\x12\xb3\xae\x08\xba\x5f\x7f\x14\x1c\xaf\x0d\x82\x5d\xe1\x5a\x21\x5c\xb4\xd5\x92\xd4\xfd\xba\x91\x34\x9c\xa4\x89\x80\x45\xb0\x46\x2b\xea\xc6\x02\x6a\x4a\x94\xc4\x6a\xfa\xcc\x3f\xe0\xc6\xf9\xb2\xb8\xba\xdd\x9f\x84\x68\x0e\xcd\x10\xce\x24\x94\x61\x40\x1d\x73\x26\x4f\x45\x58\xa9\x7f\x45\xea\x7f\x4e\x12\x3c\x83\x8c\x7f\x12\xee\x17\xa4\x48\xfd\xb6\xfd\x49\x04\xe9\x11\x55\x5a\xe5\xe4\x6e\xac\x14\xbb\xb6\x64\xfe\xf3\xf0\x4f\x00\x00\x00\xff\xff\x2e\x0e\x74\x97\x8a\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfd\x71\xc4\x48\xb5\x85\xf7\x66\x0a\x37\xb7\x8b\xfd\x7e\x68\x22\x12\xed\x5a\x95\x45\xb5\x7d\x72\xf1\x1c\xe6\x21\x4c\x51\x14\xb9\xaa\x1d\xbb\xb3\x25\xfb\xc5\x7b\xe7\x26\xc9\x1f\x07\x5b\x1f\x0b\xa7\x77\x3e\xb8\x19\xd8\x25\xe2\x2f\xb0\xfc\x77\x7f\x3a\x75\xae\xed\xbc\x73\xfd\xd3\x06\x8a\x4a\xf9\xea\xd6\xc1\xb2\x48\x09\xdf\x77\x09\x5e\x4c\x1e\x78\xef\x6b\xe7\x0b\x29\x75\x84\x6f\x30\x65\x8a\x43\x87\xa7\x51\x87\xd6\x56\xad\x9a\xf4\x1b\x05\x88\xed\xa5\x38\xd6\x2c\xec\x88\xae\xf4\x0c\xcd\x41\x6d\x82\xf4\xdf\x89\xf3\x53\x3c\xd6\x6d\xf3\x61\x66\x7f\x35\x77\x5d\xb9\x9f\xc0\xe1\x43\xee\xce\xd7\xdb\xe8\xe0\x18\x51\xed\x01\x8a\x59\x72\x9b\xe3\x62\x86\x7a\x43\xca\x39\xaa\x4d\x52\xec\x14\x6a\x3d\x40\xa9\x51\xcd\xf7\xbb\x43\xff\x45\x6e\x37\xc7\x59\x30\x1b\x90\x43\x66\x4c\x5b\x9f\x23\xcb\xf1\xf2\x77\xd9\x3d\x5a\xfe\xf3\xf5\xdf\x1f\x92\x49\xc1\x15\x4f\x4e\x0c\xc3\x57\x44\xa0\xe7\x4e\xf7\x40\xd7\xdc\x59\xb7\x52\xc2\xa5\xc9\xfb\x0e\x1b\x4e\xe1\x19\x7c\x1f\xa4\x6f\xea\xdb\x0a\xde\xef\x79\x7f\xa6\x61\x4d\x66\x1d\x92\xb3\x83\x27\xeb\xec\xa3\x4f\x53\xf2\xe8\x33\x6f\xfe\x99\x63\x2f\x28\xc3\x5b\x4e\xaf\x23\x00\x59\x26\x49\x6e\x51\xd9\x27\xe5\x97\x30\x66\xfe\xd5\xf8\x9a\x31\x4b\x20\x77\x97\x02\x30\x9a\x38\x9a\xcd\x27\xc0\xf6\x51\x8f\xef\xa5\x68\xb5\x42\x8e\x86\xdf\xbe\x1f\xff\xea\xe8\xac\x1e\xb9\x34\xf6\xfc\x1f\xed\x2f\x36\xfb\x33\xf5\xac\xee\x8a\xee\xca\xa6\xea\xd3\xcf\x38\x50\x5a\x81\x3b\xdc\xa7\x09\x4c\xf1\xe2\xf0\x6a\x2a\x4a\xcc\xba\x22\xe8\x7e\x01\x52\x70\xbc\x36\x08\x76\x85\x6b\x85\x70\xd9\x56\x4b\x52\xf7\x0b\x47\xd2\x70\x92\x26\x02\x16\xc1\x1a\xad\xa8\x1b\x0b\xa8\x29\x51\x12\xab\xe9\x33\xff\x80\x1b\xe7\xcb\xe2\xea\x76\x7f\x12\xa2\x39\x34\x43\x38\x93\x50\x86\x01\x75\xcc\x99\x3c\x15\x61\xa5\xfe\x25\xa9\xff\x49\x49\xf0\x0c\x32\xfe\x49\xb8\x5f\x91\x22\xf5\xfb\xf6\x27\x11\xa4\x47\x54\x69\x95\x93\xbb\xb1\x52\xec\xda\x92\xf9\xef\xc3\x3f\x01\x00\x00\xff\xff\xb6\x5d\xdc\x1a\x8e\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461620307, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6286, mode: os.FileMode(436), modTime: time.Unix(1461856295, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/web/index.html b/web/index.html index c1fb7eb..fbdb7ea 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log && .lastLog.length > 100}}{{.lastLog.log.substring(0,100)}}...{{else}}{{.lastLog.log}}{{/if}} + {{#if .lastLog.log && .lastLog.log.length > 150}}{{.lastLog.log.substring(0,150)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log && .log.length > 100}}{{.log.substring(0,100)}}...{{else}}{{.log}}{{/if}} + {{#if .log && .log.length > 150}}{{.log.substring(0,150)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From 0ab64982dac86121ed7c9e98f77351884135c84a Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 28 Apr 2016 15:12:50 +0000 Subject: [PATCH 30/42] Fixed small issue with logs in table formatting --- bindata.go | 4 ++-- web/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bindata.go b/bindata.go index 26ced34..b789feb 100644 --- a/bindata.go +++ b/bindata.go @@ -91,7 +91,7 @@ func webCssPureMinCss() (*asset, error) { return a, nil } -var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfb\x31\xa9\xb6\xf0\xd6\x4c\xd5\x85\x7f\xbf\x1f\x2e\x8f\x44\xbb\x56\x25\x51\x6d\x9f\x5c\x3c\x87\x79\x08\x51\x14\x45\xae\x62\xc7\xae\x6c\xb9\x7e\xf1\xbe\xb9\x49\xf0\xc7\xc1\xb6\xc7\xc2\xe9\x5d\x0f\x6e\x05\x76\x89\xf8\x0b\x2c\xff\xdd\x9f\x4c\x9d\x6b\x3b\xef\x5c\xff\xb4\x81\x82\x52\xbe\xba\x75\xb0\x2c\x52\xc2\xf7\x5d\x72\x17\x93\x87\xdd\xfb\xda\xf9\x42\x4a\x1d\xe1\x1b\x4c\x99\xe2\xcf\xe1\x49\xd4\xa1\xb5\x15\xab\x26\xfd\x26\x01\x62\x7b\x21\x8e\x35\x03\x3b\x92\x2b\x3d\x43\x71\x50\x9b\x20\xfc\x77\xe2\xfb\x14\x87\x75\xcb\x7c\x98\xd5\x5f\xcd\x5b\x57\xea\x27\xf0\xf7\x90\xb7\xf3\xf5\x36\x3a\x34\x46\x34\x7b\x80\x5e\x96\xd8\xe6\xa8\x98\xa1\xdd\x90\x6e\x8e\x66\x93\x14\x3b\x85\x5a\x0f\x50\x6a\x54\xf3\xfd\xee\xd0\x7f\x91\xdb\xcd\x71\x16\xcc\x06\xe4\x90\x19\xd3\xd6\xe7\xc8\x72\xbc\xfc\x5d\x76\x8f\x96\xff\x7c\xfd\xf7\x07\x64\x52\x70\xc5\x93\x13\xc3\xf0\x15\x11\xe8\xb9\xd3\x3d\xce\x35\x77\xd6\xad\x94\x70\x61\xf2\xbe\xc3\x86\x53\x78\x02\xdf\x07\xe9\x9b\xfa\xb6\x82\xb7\x7b\xde\x9f\x67\x58\x93\x59\x87\xe4\xec\xe0\xb9\x3a\xfb\xe0\xd3\x94\x3c\xfa\xc4\x9b\x7f\xe2\xd8\xcb\xc9\xf0\x86\xd3\xeb\x08\x40\x96\x49\x92\x5b\x54\xf6\x39\xf9\x25\x8c\x99\x7f\x31\xbe\x66\xcc\x12\xc8\xdd\xa3\x00\x8c\x26\x8e\x66\xf3\x09\xb0\x7d\xd4\xe3\x3b\x29\x5a\xad\x90\xa3\xe1\xb7\xef\xc7\xbf\x36\x3a\xab\x47\x2e\x8c\x3d\xff\x47\xfb\x8b\xcd\xfe\x4c\x3d\xab\x7b\xa2\xbb\xae\xa9\xfa\xf4\x33\x0e\x94\x56\xe0\x0e\xf7\x69\x02\x53\xbc\x38\xbc\x96\x8a\x12\xb3\xae\x08\xba\x5f\x7f\x14\x1c\xaf\x0d\x82\x5d\xe1\x5a\x21\x5c\xb4\xd5\x92\xd4\xfd\xba\x91\x34\x9c\xa4\x89\x80\x45\xb0\x46\x2b\xea\xc6\x02\x6a\x4a\x94\xc4\x6a\xfa\xcc\x3f\xe0\xc6\xf9\xb2\xb8\xba\xdd\x9f\x84\x68\x0e\xcd\x10\xce\x24\x94\x61\x40\x1d\x73\x26\x4f\x45\x58\xa9\x7f\x45\xea\x7f\x4e\x12\x3c\x83\x8c\x7f\x12\xee\x17\xa4\x48\xfd\xb6\xfd\x49\x04\xe9\x11\x55\x5a\xe5\xe4\x6e\xac\x14\xbb\xb6\x64\xfe\xf3\xf0\x4f\x00\x00\x00\xff\xff\x2e\x0e\x74\x97\x8a\x18\x00\x00") +var _webIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x8f\xdb\xb6\x12\x7e\xf6\xfe\x0a\x46\x8b\x13\x24\x39\x91\xb4\x7b\x72\xd2\x0d\x5c\x59\x6d\x8a\xa0\x40\x81\x24\x28\x9a\x22\x2f\x45\x1f\x68\x89\xb6\x98\xa5\x2e\x20\xa9\xbd\xc4\xf0\x7f\xef\xf0\x26\x51\xb2\xe4\x75\x12\x20\x40\x9f\x56\x1c\x0e\x67\x3e\xce\xcc\x37\x24\xbd\xc9\xa3\xbc\xce\xe4\x7d\x43\x50\x21\x4b\x96\x9e\x25\xea\x0f\x62\xb8\xda\xae\x02\x52\x05\x4a\x40\x70\x9e\x9e\x2d\x92\x92\x48\x8c\xb2\x02\x73\x41\xe4\x2a\x68\xe5\x26\x7c\x15\x74\xf2\x0a\x97\x64\x15\xdc\x50\x72\xdb\xd4\x5c\x06\x28\xab\x2b\x49\x2a\xd0\xbb\xa5\xb9\x2c\x56\x39\xb9\xa1\x19\x09\xf5\xe0\x39\xa2\x15\x95\x14\xb3\x50\x64\x98\x91\xd5\x65\x74\x31\xb6\x93\x13\x91\x71\xda\x48\x5a\x57\x9e\xa9\xdf\x78\x5d\x89\x92\xca\x02\x85\xe8\x35\x12\xb4\x6c\x18\x79\x8e\x8c\x26\xca\x39\xbd\x21\x95\x56\xa6\x55\x5b\xb7\x02\xbc\x48\xb2\xe5\x58\x19\x41\xb2\xae\x19\x38\x01\x2f\x92\x4a\x46\xd2\x6f\x34\x95\xc4\xc6\x8c\x32\xc8\x68\x75\x8d\x38\x61\xab\x40\xc8\x7b\x46\x44\x41\x08\xec\xbf\xe0\x64\xb3\x0a\xe2\x4c\x88\xb8\x69\x39\x09\x4b\x5a\x45\x30\x30\x18\xb4\x22\x6c\x79\x11\x29\x1f\x98\x56\x84\xa3\x1d\x0c\x17\x0d\xce\x73\x5a\x6d\x43\x4e\xb7\x85\x5c\xa2\xcb\x97\xcd\xdd\x8f\xbe\x9c\x91\x8d\x2f\x2e\x31\xdf\xd2\xca\x69\xe3\x56\xd6\xbe\xd8\x28\x3b\xe9\x1e\x1c\x2f\x7e\x2e\x49\x4e\x31\x7a\x02\x68\x4c\x2e\x96\xe8\xea\x87\x57\xcd\xdd\x53\xe3\x7e\x0c\x67\x8c\xe7\xff\x17\xd6\xf1\x08\x50\x27\xdf\x3b\x47\x51\x06\x19\x23\x3c\x5c\xb3\x3a\xbb\x36\xc6\x72\x2a\x1a\x86\xef\x97\x48\xcb\xe6\x81\xce\xec\xca\x98\x95\xe4\x4e\x86\xc6\xb6\xb1\xaa\x05\x98\xd1\x6d\xb5\x44\x46\xde\x29\xc7\xcf\x24\x5e\x43\x42\x9e\xc5\x66\xa9\x1a\x84\x9c\x88\x06\x52\x0f\x09\x36\xeb\xbf\x04\xc2\xa2\xbe\x21\x7c\xc3\xea\xdb\xf0\xee\x00\xd7\xd8\xb8\x16\x18\x17\x36\xd0\x97\x17\x17\xff\xb1\xc6\xef\xc2\x91\xcc\xe2\x45\x84\xf3\x9a\x23\x00\x0c\x26\xcd\xf7\x30\x74\xb4\x82\x6a\x23\x61\x1f\xc1\x35\xce\xae\xb7\xbc\x6e\xab\x3c\xcc\x6a\x56\xf3\x25\x54\x62\xae\x67\xec\xf0\xb6\xa0\x92\x18\xd5\x9a\xe7\x90\x11\x8e\x73\xda\x0a\xc8\xd9\xb0\xb4\x96\x28\x7a\x49\x4a\x74\x49\x4a\x2f\x00\x0a\xa0\x51\x73\x00\xd7\x1c\x9a\x41\xc6\xdb\x72\x2d\x90\x89\xeb\xb9\x2f\xf2\x43\xba\xae\xa5\xac\xcb\x91\x89\xa8\xd7\x0e\x05\x69\x30\x70\xca\x6d\xd2\x02\x3e\xcf\xb2\x4c\x43\xd8\x40\x2d\x86\xb7\xc4\xa4\x60\x5d\xb3\xbc\x97\x0a\xfa\x99\x2c\xd1\xff\x0c\x56\xb0\xab\x0c\x37\x2d\x63\x3a\x8d\xc6\x1a\xa4\x09\xc3\x3a\x25\x30\x4a\x4e\x45\xe7\x74\xa0\xa3\x25\x56\x49\xe7\x92\x96\x44\x48\x5c\x36\x56\xab\xf7\x18\x5d\xbd\xb4\xf1\x71\x60\xaf\xae\xae\x0e\x2b\x79\xb8\x63\x56\x6f\x27\x4a\x6d\x86\xc3\x4e\xdc\x2f\x4d\x51\xc3\xa7\x6a\xb5\xd7\x5c\x24\xb1\x6d\x28\x49\x6c\x7a\x75\xb2\xae\xf3\x7b\xf8\x63\xfb\x19\xcd\x57\x81\x7c\x07\xbc\x0e\x90\x6a\xf4\x30\x00\xd2\xc4\x1c\x67\x12\x2a\x55\x75\xf8\x9c\xde\xa0\x8c\x61\x21\x56\x41\xdf\x01\x74\xdb\xda\xea\xce\xec\xcd\x6b\x69\x1b\x5e\x2a\xf9\x22\x29\x5e\x38\xb9\x47\xcc\x40\x77\x57\xf4\x41\xb5\x57\x40\xf4\x42\x69\xee\x76\xe7\x74\x63\xca\x7b\xaf\x72\x31\xb0\x39\x58\xab\xdb\x4b\x22\x1a\x5c\xb9\x69\xbd\x2a\x48\x77\x3b\xbb\x1c\xb6\x0b\xb3\x5a\x31\x89\xc1\x8c\xb1\x1f\xd3\x8d\xb6\xac\x0d\xab\x1d\x7b\x75\x19\x0c\xd0\x97\xa4\x6a\x51\xf7\x15\x16\x35\xa7\x9f\xd5\xae\x19\x3a\x00\x92\xb4\xec\x60\x69\xc8\xa8\x90\x0e\x27\xa3\x87\xf3\x40\xb8\xd2\xce\x2f\x12\xec\x4e\x82\x43\x0c\xa1\x3a\x39\x82\xf4\x77\x5e\x7f\x22\x99\x44\x6f\xc1\x6c\x12\x63\x6b\x38\x66\xd4\x7c\x99\xc8\x35\x46\xc9\xc4\xee\x04\xbf\xc3\x08\x4e\x91\x2e\x48\x63\x2f\x90\xbe\x47\xeb\xf2\x11\x34\x3b\xa1\x0e\xbc\xc7\x8f\xd1\xa3\xac\xe5\x1c\xe2\xf2\x41\xe2\x2d\x71\x20\xe6\x51\xf8\xd1\xc5\x22\xcc\x0a\xca\x72\x58\x1e\xa0\x9c\x64\xb5\xf6\xbe\x0a\xd4\x6c\x87\xb6\x8f\xd3\x79\xa0\x93\x67\xf7\xfb\x4e\x29\xcd\x05\x6e\xb7\xb3\x5a\x91\xba\x34\xa8\xba\xc0\xbd\xbd\xa9\xc4\x75\x38\x3a\xb5\x13\x02\x39\x02\x37\x8d\x05\xd5\x55\x98\x31\x9a\x5d\x43\x31\x03\x93\xb7\x84\xff\xd2\x82\xaf\x20\xfd\xd3\x8c\x90\x1e\xfa\x00\xfd\x78\xab\x41\xcb\xba\xcc\xf9\x89\x20\x4c\x9c\x10\xef\x89\x38\xc6\x36\x36\x71\x1f\x25\x9a\xef\xf7\x5f\x13\xcc\x01\x20\x47\xb3\xf1\xb7\x57\xa4\xaa\x60\x6c\xed\x7c\x9f\x7a\x3d\xc1\xfa\x03\x61\x81\x61\x87\xf8\x48\x88\x3a\x9d\x3e\x3a\x3e\x51\x1f\x8e\x87\xfa\x9c\xa2\xd2\xbf\x29\x3e\xf0\x3d\xdc\xc2\x91\x80\x0d\x15\x1f\x88\x9a\x23\x81\xd7\xd4\x75\x1f\x1a\xf4\xbe\xdd\x2e\xb5\x63\xa1\x05\x86\x22\x5e\xbb\x1a\xab\x79\x5a\xdd\x94\xaf\xda\x01\xb0\x6e\xed\x9f\xb3\x33\xf0\x0e\xa1\x55\xef\x14\xe4\x79\x1c\x9c\x5b\xa3\x4b\x9f\x3a\x4a\xcd\xbd\xcf\x0f\x88\x91\xf4\x9f\xa1\x80\x16\xd1\x90\x5c\x9f\xac\xd2\x3e\xae\xe0\x8b\x9b\x13\x47\x16\xee\x44\x80\x47\x46\xd1\xc9\x20\x84\xb2\x15\x03\xd1\x5b\x2c\x24\xfa\x68\xb6\x72\x38\xf1\xb6\xde\x1e\x0a\xff\x20\x8c\x60\x41\x66\x27\xd0\xaf\x94\x75\xb3\xf0\x57\x61\x52\x43\xfb\x02\x94\xe6\x5e\xa1\x33\xe3\x62\xb2\xa4\xfb\xfd\xc2\xd8\xe2\x48\xbf\x8a\x56\xc1\x6e\xb7\xa9\x79\x89\xe5\x1b\x2c\xc9\x93\x08\x62\x21\x01\x4d\x74\x5b\x90\xea\x29\x94\x8b\x3d\xe1\x64\x9e\x4e\x95\x9d\xa9\x37\x55\x3c\x5e\x27\x02\x0c\x79\xbf\x0c\xa6\x84\x0e\x87\x9a\xf4\x27\xc6\x67\xee\xd8\x2a\xfc\x75\x60\x7a\xba\xa7\x53\x52\xef\x20\xf6\x1c\xf4\xfb\xeb\x56\xc0\x15\xcd\xd8\x50\xa5\xea\x4b\x15\xd5\xfd\x71\xc4\x48\xb5\x85\xf7\x66\x0a\x37\xb7\x8b\xfd\x7e\x68\x22\x12\xed\x5a\x95\x45\xb5\x7d\x72\xf1\x1c\xe6\x21\x4c\x51\x14\xb9\xaa\x1d\xbb\xb3\x25\xfb\xc5\x7b\xe7\x26\xc9\x1f\x07\x5b\x1f\x0b\xa7\x77\x3e\xb8\x19\xd8\x25\xe2\x2f\xb0\xfc\x77\x7f\x3a\x75\xae\xed\xbc\x73\xfd\xd3\x06\x8a\x4a\xf9\xea\xd6\xc1\xb2\x48\x09\xdf\x77\x09\x5e\x4c\x1e\x78\xef\x6b\xe7\x0b\x29\x75\x84\x6f\x30\x65\x8a\x43\x87\xa7\x51\x87\xd6\x56\xad\x9a\xf4\x1b\x05\x88\xed\xa5\x38\xd6\x2c\xec\x88\xae\xf4\x0c\xcd\x41\x6d\x82\xf4\xdf\x89\xf3\x53\x3c\xd6\x6d\xf3\x61\x66\x7f\x35\x77\x5d\xb9\x9f\xc0\xe1\x43\xee\xce\xd7\xdb\xe8\xe0\x18\x51\xed\x01\x8a\x59\x72\x9b\xe3\x62\x86\x7a\x43\xca\x39\xaa\x4d\x52\xec\x14\x6a\x3d\x40\xa9\x51\xcd\xf7\xbb\x43\xff\x45\x6e\x37\xc7\x59\x30\x1b\x90\x43\x66\x4c\x5b\x9f\x23\xcb\xf1\xf2\x77\xd9\x3d\x5a\xfe\xf3\xf5\xdf\x1f\x92\x49\xc1\x15\x4f\x4e\x0c\xc3\x57\x44\xa0\xe7\x4e\xf7\x40\xd7\xdc\x59\xb7\x52\xc2\xa5\xc9\xfb\x0e\x1b\x4e\xe1\x19\x7c\x1f\xa4\x6f\xea\xdb\x0a\xde\xef\x79\x7f\xa6\x61\x4d\x66\x1d\x92\xb3\x83\x27\xeb\xec\xa3\x4f\x53\xf2\xe8\x33\x6f\xfe\x99\x63\x2f\x28\xc3\x5b\x4e\xaf\x23\x00\x59\x26\x49\x6e\x51\xd9\x27\xe5\x97\x30\x66\xfe\xd5\xf8\x9a\x31\x4b\x20\x77\x97\x02\x30\x9a\x38\x9a\xcd\x27\xc0\xf6\x51\x8f\xef\xa5\x68\xb5\x42\x8e\x86\xdf\xbe\x1f\xff\xea\xe8\xac\x1e\xb9\x34\xf6\xfc\x1f\xed\x2f\x36\xfb\x33\xf5\xac\xee\x8a\xee\xca\xa6\xea\xd3\xcf\x38\x50\x5a\x81\x3b\xdc\xa7\x09\x4c\xf1\xe2\xf0\x6a\x2a\x4a\xcc\xba\x22\xe8\x7e\x01\x52\x70\xbc\x36\x08\x76\x85\x6b\x85\x70\xd9\x56\x4b\x52\xf7\x0b\x47\xd2\x70\x92\x26\x02\x16\xc1\x1a\xad\xa8\x1b\x0b\xa8\x29\x51\x12\xab\xe9\x33\xff\x80\x1b\xe7\xcb\xe2\xea\x76\x7f\x12\xa2\x39\x34\x43\x38\x93\x50\x86\x01\x75\xcc\x99\x3c\x15\x61\xa5\xfe\x25\xa9\xff\x49\x49\xf0\x0c\x32\xfe\x49\xb8\x5f\x91\x22\xf5\xfb\xf6\x27\x11\xa4\x47\x54\x69\x95\x93\xbb\xb1\x52\xec\xda\x92\xf9\xef\xc3\x3f\x01\x00\x00\xff\xff\xb6\x5d\xdc\x1a\x8e\x18\x00\x00") func webIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -106,7 +106,7 @@ func webIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/index.html", size: 6282, mode: os.FileMode(436), modTime: time.Unix(1461620307, 0)} + info := bindataFileInfo{name: "web/index.html", size: 6286, mode: os.FileMode(436), modTime: time.Unix(1461856295, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/web/index.html b/web/index.html index c1fb7eb..fbdb7ea 100644 --- a/web/index.html +++ b/web/index.html @@ -177,7 +177,7 @@ {{.lastLog.version}} - {{#if .lastLog.log && .lastLog.length > 100}}{{.lastLog.log.substring(0,100)}}...{{else}}{{.lastLog.log}}{{/if}} + {{#if .lastLog.log && .lastLog.log.length > 150}}{{.lastLog.log.substring(0,150)}}...{{else}}{{.lastLog.log}}{{/if}} {{.releaseVersion}} @@ -213,7 +213,7 @@ {{.version}} {{.stage}} - {{#if .log && .log.length > 100}}{{.log.substring(0,100)}}...{{else}}{{.log}}{{/if}} + {{#if .log && .log.length > 150}}{{.log.substring(0,150)}}...{{else}}{{.log}}{{/if}} {{#if releases[project.id + .version]}} {{releases[project.id + .version].fileName}} From d0b745cc9f1444e8325b1a1566958e76546fe4c8 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Tue, 3 May 2016 21:04:06 -0500 Subject: [PATCH 31/42] Added max project size starting point --- project.go | 1 + 1 file changed, 1 insertion(+) diff --git a/project.go b/project.go index 19112f2..31fd480 100644 --- a/project.go +++ b/project.go @@ -60,6 +60,7 @@ type Project struct { ReleaseFile string `json:"releaseFile"` PollInterval string `json:"pollInterval,omitempty"` // if not poll interval is specified, this project is trigger only TriggerSecret string `json:"triggerSecret,omitempty"` //secret to be included with a trigger call + MaxSizeInMB string `json:"maxSizeInMB,omitempty"` // Max size of the project datastore in MB filename string poll time.Duration From f0e7c794c64fe68a72fbf54ea78264dff816384f Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Tue, 3 May 2016 21:04:06 -0500 Subject: [PATCH 32/42] Added max project size starting point --- project.go | 1 + 1 file changed, 1 insertion(+) diff --git a/project.go b/project.go index 19112f2..31fd480 100644 --- a/project.go +++ b/project.go @@ -60,6 +60,7 @@ type Project struct { ReleaseFile string `json:"releaseFile"` PollInterval string `json:"pollInterval,omitempty"` // if not poll interval is specified, this project is trigger only TriggerSecret string `json:"triggerSecret,omitempty"` //secret to be included with a trigger call + MaxSizeInMB string `json:"maxSizeInMB,omitempty"` // Max size of the project datastore in MB filename string poll time.Duration From 22db2cfdad8e27c67d69acf61349cfce1f93f72c Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 4 May 2016 08:35:36 -0500 Subject: [PATCH 33/42] Changed behavior so triggered builds ignore version Version checks are only done on polling projects. --- cycle.go | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/cycle.go b/cycle.go index 9ddf1ee..23e4755 100644 --- a/cycle.go +++ b/cycle.go @@ -110,18 +110,20 @@ func (p *Project) fetch() { p.setVersion(strings.TrimSpace(string(version))) - // check if this specific version has attempted a build yet - lVer, err := p.ds.LastVersion(stageBuild) - if err != datastore.ErrNotFound && p.errHandled(err) { - return - } + if p.poll > 0 { + // if polling, check if this specific version has attempted a build yet + lVer, err := p.ds.LastVersion(stageBuild) + if err != datastore.ErrNotFound && p.errHandled(err) { + return + } - if p.version == "" || p.version == lVer.Version { - // no new build clean up temp dir - p.errHandled(os.RemoveAll(tempDir)) + if p.version == "" || p.version == lVer.Version { + // no new build clean up temp dir + p.errHandled(os.RemoveAll(tempDir)) - vlog("No new version found for Project: %s Version: %s.\n", p.id(), p.version) - return + vlog("No new version found for Project: %s Version: %s.\n", p.id(), p.version) + return + } } //remove any existing data that matches version hash From f75d91d4c022d6d314ed7807974e1a0fa35fbd6d Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 4 May 2016 08:35:36 -0500 Subject: [PATCH 34/42] Changed behavior so triggered builds ignore version Version checks are only done on polling projects. --- cycle.go | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/cycle.go b/cycle.go index 9ddf1ee..23e4755 100644 --- a/cycle.go +++ b/cycle.go @@ -110,18 +110,20 @@ func (p *Project) fetch() { p.setVersion(strings.TrimSpace(string(version))) - // check if this specific version has attempted a build yet - lVer, err := p.ds.LastVersion(stageBuild) - if err != datastore.ErrNotFound && p.errHandled(err) { - return - } + if p.poll > 0 { + // if polling, check if this specific version has attempted a build yet + lVer, err := p.ds.LastVersion(stageBuild) + if err != datastore.ErrNotFound && p.errHandled(err) { + return + } - if p.version == "" || p.version == lVer.Version { - // no new build clean up temp dir - p.errHandled(os.RemoveAll(tempDir)) + if p.version == "" || p.version == lVer.Version { + // no new build clean up temp dir + p.errHandled(os.RemoveAll(tempDir)) - vlog("No new version found for Project: %s Version: %s.\n", p.id(), p.version) - return + vlog("No new version found for Project: %s Version: %s.\n", p.id(), p.version) + return + } } //remove any existing data that matches version hash From 35ec6323341dfb5f3b4bbf6822158ad06794063a Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 4 May 2016 15:39:56 -0500 Subject: [PATCH 35/42] Added max version limit for projects --- cycle.go | 1 + datastore/ds.go | 83 +++++++++++++++++++++++++++++++++++++++---- datastore/releases.go | 32 ++++++++++++----- exec.go | 6 ++-- project.go | 5 ++- 5 files changed, 109 insertions(+), 18 deletions(-) diff --git a/cycle.go b/cycle.go index 23e4755..10731eb 100644 --- a/cycle.go +++ b/cycle.go @@ -69,6 +69,7 @@ func (p *Project) load() { p.setStage(stageWait) //full cycle completed + p.errHandled(p.ds.TrimVersions(p.MaxVersions)) if p.poll > 0 { //start polling diff --git a/datastore/ds.go b/datastore/ds.go index d0a0a8c..0ae6abf 100644 --- a/datastore/ds.go +++ b/datastore/ds.go @@ -67,6 +67,83 @@ func (ds *Store) Close() error { return ds.bolt.Close() } +// TrimVersions Removes versions from the datastore file until it reaches the maxVersions count +func (ds *Store) TrimVersions(maxVersions int) error { + if maxVersions <= 0 { + // no max set + return nil + } + + versions, err := ds.Versions() + if err != nil { + return err + } + + if len(versions) <= maxVersions { + return nil + } + + remove := versions[maxVersions:] + + for i := range remove { + err = ds.deleteVersion(remove[i].Version) + if err != nil { + return err + } + } + + return nil +} + +// removes the earliest instance of a specific version +func (ds *Store) deleteVersion(version string) error { + return ds.bolt.Update(func(tx *bolt.Tx) error { + // remove all logs for this version + c := tx.Bucket([]byte(bucketLog)).Cursor() + + for k, v := c.First(); k != nil; k, v = c.Next() { + lg := &Log{} + + err := json.Unmarshal(v, lg) + if err != nil { + return err + } + + if lg.Version != version { + break + } + + err = c.Delete() + if err != nil { + return err + } + } + + // remove all releases for this version + release, err := ds.Release(version) + if err == ErrNotFound { + return nil + } + if err != nil { + return err + } + + err = tx.Bucket([]byte(bucketReleases)).Delete(release.FileKey.Bytes()) + if err != nil { + return err + } + + // remove release file for this version + err = tx.Bucket([]byte(bucketFiles)).Delete(release.FileKey.Bytes()) + if err != nil { + return err + } + + return nil + }) + +} + func (ds *Store) get(bucket string, key []byte, result interface{}) error { return ds.bolt.View(func(tx *bolt.Tx) error { dsValue := tx.Bucket([]byte(bucket)).Get(key) @@ -93,9 +170,3 @@ func (ds *Store) put(bucket string, key []byte, value interface{}) error { return tx.Bucket([]byte(bucket)).Put(key, dsValue) }) } - -func (ds *Store) delete(bucket string, key []byte) error { - return ds.bolt.Update(func(tx *bolt.Tx) error { - return tx.Bucket([]byte(bucket)).Delete(key) - }) -} diff --git a/datastore/releases.go b/datastore/releases.go index c6b7e2e..f9a9259 100644 --- a/datastore/releases.go +++ b/datastore/releases.go @@ -28,13 +28,13 @@ const ( // AddRelease adds a new Release func (ds *Store) AddRelease(version, fileName string, fileData []byte) error { - fileKey := NewTimeKey() + key := NewTimeKey() r := &Release{ - When: fileKey.Time(), + When: key.Time(), Version: version, FileName: fileName, - FileKey: fileKey, + FileKey: key, } dsValue, err := json.Marshal(r) @@ -43,12 +43,12 @@ func (ds *Store) AddRelease(version, fileName string, fileData []byte) error { } return ds.bolt.Update(func(tx *bolt.Tx) error { - err = tx.Bucket([]byte(bucketReleases)).Put([]byte(version), dsValue) + err = tx.Bucket([]byte(bucketReleases)).Put(key.Bytes(), dsValue) if err != nil { return err } - return tx.Bucket([]byte(bucketFiles)).Put(fileKey.Bytes(), fileData) + return tx.Bucket([]byte(bucketFiles)).Put(key.Bytes(), fileData) }) } @@ -80,10 +80,27 @@ func (ds *Store) ReleaseFile(fileKey TimeKey) ([]byte, error) { // Release gets the release record for a specific version func (ds *Store) Release(version string) (*Release, error) { r := &Release{} - err := ds.get(bucketReleases, []byte(version), r) + err := ds.bolt.View(func(tx *bolt.Tx) error { + c := tx.Bucket([]byte(bucketReleases)).Cursor() + + for k, v := c.Last(); k != nil; k, v = c.Prev() { + err := json.Unmarshal(v, r) + if err != nil { + return err + } + + if r.Version == version { + return nil + } + } + + return ErrNotFound + }) + if err != nil { return nil, err } + return r, nil } @@ -119,9 +136,8 @@ func (ds *Store) LastRelease() (*Release, error) { r := &Release{} err := ds.bolt.View(func(tx *bolt.Tx) error { - c := tx.Bucket([]byte(bucketReleases)).Cursor() + _, v := tx.Bucket([]byte(bucketReleases)).Cursor().Last() - _, v := c.First() // this is confusing if v == nil { return ErrNotFound } diff --git a/exec.go b/exec.go index 584cc81..b61ce3a 100644 --- a/exec.go +++ b/exec.go @@ -59,14 +59,14 @@ func lookPath(file string, env []string) (string, error) { if err == nil { return file, nil } - return "", &exec.Error{file, err} + return "", &exec.Error{Name: file, Err: err} } for i := range env { if strings.HasPrefix(env[i], "PATH=") { pathenv := env[i][5:] if pathenv == "" { - return "", &exec.Error{file, exec.ErrNotFound} + return "", &exec.Error{Name: file, Err: exec.ErrNotFound} } for _, dir := range strings.Split(pathenv, ":") { if dir == "" { @@ -78,7 +78,7 @@ func lookPath(file string, env []string) (string, error) { return path, nil } } - return "", &exec.Error{file, exec.ErrNotFound} + return "", &exec.Error{Name: file, Err: exec.ErrNotFound} } } diff --git a/project.go b/project.go index 31fd480..80e04e3 100644 --- a/project.go +++ b/project.go @@ -60,7 +60,7 @@ type Project struct { ReleaseFile string `json:"releaseFile"` PollInterval string `json:"pollInterval,omitempty"` // if not poll interval is specified, this project is trigger only TriggerSecret string `json:"triggerSecret,omitempty"` //secret to be included with a trigger call - MaxSizeInMB string `json:"maxSizeInMB,omitempty"` // Max size of the project datastore in MB + MaxVersions int `json:"maxVersions,omitempty"` // Max number of versions to keep in the project datastore filename string poll time.Duration @@ -288,6 +288,7 @@ func (p *Project) setData(new *Project) { p.ReleaseFile = new.ReleaseFile p.PollInterval = new.PollInterval p.TriggerSecret = new.TriggerSecret + p.MaxVersions = new.MaxVersions if p.PollInterval != "" { var err error @@ -325,6 +326,8 @@ var projectTemplate = &Project{ ReleaseFile: "release.tar.gz", PollInterval: "15m", + + MaxVersions: 100, } func prepTemplateProject() error { From b1c259640eea497a180ed1a77f988e3eb68f840c Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Wed, 4 May 2016 15:39:56 -0500 Subject: [PATCH 36/42] Added max version limit for projects --- cycle.go | 1 + datastore/ds.go | 83 +++++++++++++++++++++++++++++++++++++++---- datastore/releases.go | 32 ++++++++++++----- exec.go | 6 ++-- project.go | 5 ++- 5 files changed, 109 insertions(+), 18 deletions(-) diff --git a/cycle.go b/cycle.go index 23e4755..10731eb 100644 --- a/cycle.go +++ b/cycle.go @@ -69,6 +69,7 @@ func (p *Project) load() { p.setStage(stageWait) //full cycle completed + p.errHandled(p.ds.TrimVersions(p.MaxVersions)) if p.poll > 0 { //start polling diff --git a/datastore/ds.go b/datastore/ds.go index d0a0a8c..0ae6abf 100644 --- a/datastore/ds.go +++ b/datastore/ds.go @@ -67,6 +67,83 @@ func (ds *Store) Close() error { return ds.bolt.Close() } +// TrimVersions Removes versions from the datastore file until it reaches the maxVersions count +func (ds *Store) TrimVersions(maxVersions int) error { + if maxVersions <= 0 { + // no max set + return nil + } + + versions, err := ds.Versions() + if err != nil { + return err + } + + if len(versions) <= maxVersions { + return nil + } + + remove := versions[maxVersions:] + + for i := range remove { + err = ds.deleteVersion(remove[i].Version) + if err != nil { + return err + } + } + + return nil +} + +// removes the earliest instance of a specific version +func (ds *Store) deleteVersion(version string) error { + return ds.bolt.Update(func(tx *bolt.Tx) error { + // remove all logs for this version + c := tx.Bucket([]byte(bucketLog)).Cursor() + + for k, v := c.First(); k != nil; k, v = c.Next() { + lg := &Log{} + + err := json.Unmarshal(v, lg) + if err != nil { + return err + } + + if lg.Version != version { + break + } + + err = c.Delete() + if err != nil { + return err + } + } + + // remove all releases for this version + release, err := ds.Release(version) + if err == ErrNotFound { + return nil + } + if err != nil { + return err + } + + err = tx.Bucket([]byte(bucketReleases)).Delete(release.FileKey.Bytes()) + if err != nil { + return err + } + + // remove release file for this version + err = tx.Bucket([]byte(bucketFiles)).Delete(release.FileKey.Bytes()) + if err != nil { + return err + } + + return nil + }) + +} + func (ds *Store) get(bucket string, key []byte, result interface{}) error { return ds.bolt.View(func(tx *bolt.Tx) error { dsValue := tx.Bucket([]byte(bucket)).Get(key) @@ -93,9 +170,3 @@ func (ds *Store) put(bucket string, key []byte, value interface{}) error { return tx.Bucket([]byte(bucket)).Put(key, dsValue) }) } - -func (ds *Store) delete(bucket string, key []byte) error { - return ds.bolt.Update(func(tx *bolt.Tx) error { - return tx.Bucket([]byte(bucket)).Delete(key) - }) -} diff --git a/datastore/releases.go b/datastore/releases.go index c6b7e2e..f9a9259 100644 --- a/datastore/releases.go +++ b/datastore/releases.go @@ -28,13 +28,13 @@ const ( // AddRelease adds a new Release func (ds *Store) AddRelease(version, fileName string, fileData []byte) error { - fileKey := NewTimeKey() + key := NewTimeKey() r := &Release{ - When: fileKey.Time(), + When: key.Time(), Version: version, FileName: fileName, - FileKey: fileKey, + FileKey: key, } dsValue, err := json.Marshal(r) @@ -43,12 +43,12 @@ func (ds *Store) AddRelease(version, fileName string, fileData []byte) error { } return ds.bolt.Update(func(tx *bolt.Tx) error { - err = tx.Bucket([]byte(bucketReleases)).Put([]byte(version), dsValue) + err = tx.Bucket([]byte(bucketReleases)).Put(key.Bytes(), dsValue) if err != nil { return err } - return tx.Bucket([]byte(bucketFiles)).Put(fileKey.Bytes(), fileData) + return tx.Bucket([]byte(bucketFiles)).Put(key.Bytes(), fileData) }) } @@ -80,10 +80,27 @@ func (ds *Store) ReleaseFile(fileKey TimeKey) ([]byte, error) { // Release gets the release record for a specific version func (ds *Store) Release(version string) (*Release, error) { r := &Release{} - err := ds.get(bucketReleases, []byte(version), r) + err := ds.bolt.View(func(tx *bolt.Tx) error { + c := tx.Bucket([]byte(bucketReleases)).Cursor() + + for k, v := c.Last(); k != nil; k, v = c.Prev() { + err := json.Unmarshal(v, r) + if err != nil { + return err + } + + if r.Version == version { + return nil + } + } + + return ErrNotFound + }) + if err != nil { return nil, err } + return r, nil } @@ -119,9 +136,8 @@ func (ds *Store) LastRelease() (*Release, error) { r := &Release{} err := ds.bolt.View(func(tx *bolt.Tx) error { - c := tx.Bucket([]byte(bucketReleases)).Cursor() + _, v := tx.Bucket([]byte(bucketReleases)).Cursor().Last() - _, v := c.First() // this is confusing if v == nil { return ErrNotFound } diff --git a/exec.go b/exec.go index 584cc81..b61ce3a 100644 --- a/exec.go +++ b/exec.go @@ -59,14 +59,14 @@ func lookPath(file string, env []string) (string, error) { if err == nil { return file, nil } - return "", &exec.Error{file, err} + return "", &exec.Error{Name: file, Err: err} } for i := range env { if strings.HasPrefix(env[i], "PATH=") { pathenv := env[i][5:] if pathenv == "" { - return "", &exec.Error{file, exec.ErrNotFound} + return "", &exec.Error{Name: file, Err: exec.ErrNotFound} } for _, dir := range strings.Split(pathenv, ":") { if dir == "" { @@ -78,7 +78,7 @@ func lookPath(file string, env []string) (string, error) { return path, nil } } - return "", &exec.Error{file, exec.ErrNotFound} + return "", &exec.Error{Name: file, Err: exec.ErrNotFound} } } diff --git a/project.go b/project.go index 31fd480..80e04e3 100644 --- a/project.go +++ b/project.go @@ -60,7 +60,7 @@ type Project struct { ReleaseFile string `json:"releaseFile"` PollInterval string `json:"pollInterval,omitempty"` // if not poll interval is specified, this project is trigger only TriggerSecret string `json:"triggerSecret,omitempty"` //secret to be included with a trigger call - MaxSizeInMB string `json:"maxSizeInMB,omitempty"` // Max size of the project datastore in MB + MaxVersions int `json:"maxVersions,omitempty"` // Max number of versions to keep in the project datastore filename string poll time.Duration @@ -288,6 +288,7 @@ func (p *Project) setData(new *Project) { p.ReleaseFile = new.ReleaseFile p.PollInterval = new.PollInterval p.TriggerSecret = new.TriggerSecret + p.MaxVersions = new.MaxVersions if p.PollInterval != "" { var err error @@ -325,6 +326,8 @@ var projectTemplate = &Project{ ReleaseFile: "release.tar.gz", PollInterval: "15m", + + MaxVersions: 100, } func prepTemplateProject() error { From dbf41e948bb89f08517b0942a4f05c542f955be4 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 5 May 2016 10:30:50 -0500 Subject: [PATCH 37/42] Changed forced build to be only off of trigger instead of anytime that it's not polled --- cycle.go | 16 ++++++++-------- project.go | 2 +- webProject.go | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cycle.go b/cycle.go index 10731eb..2ebebf6 100644 --- a/cycle.go +++ b/cycle.go @@ -27,7 +27,7 @@ Project life cycle: // load is the beginning of the cycle. Loads / reloads the project file to make sure that the scripts are up-to-date // call's fetch and triggers the next poll if one exists -func (p *Project) load() { +func (p *Project) load(forceBuild bool) { p.processing.Lock() // ensure only one cycle is running at a time per project defer p.processing.Unlock() @@ -64,7 +64,7 @@ func (p *Project) load() { p.setData(new) - p.fetch() + p.fetch(forceBuild) p.setStage(stageWait) @@ -73,16 +73,16 @@ func (p *Project) load() { if p.poll > 0 { //start polling - go func() { - time.AfterFunc(p.poll, p.load) - }() + time.AfterFunc(p.poll, func() { + p.load(false) + }) } } // fetch first runs the fetch script into a temporary directory // then it runs the version script in the temp directory to see if there is a newer version of the // fetched code, if there is then the temp dir is renamed to the version name -func (p *Project) fetch() { +func (p *Project) fetch(forceBuild bool) { p.setStage(stageFetch) p.start = time.Now() @@ -111,8 +111,8 @@ func (p *Project) fetch() { p.setVersion(strings.TrimSpace(string(version))) - if p.poll > 0 { - // if polling, check if this specific version has attempted a build yet + if !forceBuild { + // if not forced build, then check if this specific version has attempted a build yet lVer, err := p.ds.LastVersion(stageBuild) if err != datastore.ErrNotFound && p.errHandled(err) { return diff --git a/project.go b/project.go index 80e04e3..5b4a2d4 100644 --- a/project.go +++ b/project.go @@ -427,7 +427,7 @@ func (p *projectList) add(name string) { log.Printf("Error opening datastore for Project: %s Error: %s\n", prj.id(), err) return } - prj.load() + prj.load(false) }() } diff --git a/webProject.go b/webProject.go index c936345..eb5f936 100644 --- a/webProject.go +++ b/webProject.go @@ -259,6 +259,6 @@ func triggerPost(w http.ResponseWriter, r *http.Request) { } go func() { - project.load() + project.load(true) }() } From 479175baa07fa055494389eafd5938177f51e433 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 5 May 2016 10:30:50 -0500 Subject: [PATCH 38/42] Changed forced build to be only off of trigger instead of anytime that it's not polled --- cycle.go | 16 ++++++++-------- project.go | 2 +- webProject.go | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cycle.go b/cycle.go index 10731eb..2ebebf6 100644 --- a/cycle.go +++ b/cycle.go @@ -27,7 +27,7 @@ Project life cycle: // load is the beginning of the cycle. Loads / reloads the project file to make sure that the scripts are up-to-date // call's fetch and triggers the next poll if one exists -func (p *Project) load() { +func (p *Project) load(forceBuild bool) { p.processing.Lock() // ensure only one cycle is running at a time per project defer p.processing.Unlock() @@ -64,7 +64,7 @@ func (p *Project) load() { p.setData(new) - p.fetch() + p.fetch(forceBuild) p.setStage(stageWait) @@ -73,16 +73,16 @@ func (p *Project) load() { if p.poll > 0 { //start polling - go func() { - time.AfterFunc(p.poll, p.load) - }() + time.AfterFunc(p.poll, func() { + p.load(false) + }) } } // fetch first runs the fetch script into a temporary directory // then it runs the version script in the temp directory to see if there is a newer version of the // fetched code, if there is then the temp dir is renamed to the version name -func (p *Project) fetch() { +func (p *Project) fetch(forceBuild bool) { p.setStage(stageFetch) p.start = time.Now() @@ -111,8 +111,8 @@ func (p *Project) fetch() { p.setVersion(strings.TrimSpace(string(version))) - if p.poll > 0 { - // if polling, check if this specific version has attempted a build yet + if !forceBuild { + // if not forced build, then check if this specific version has attempted a build yet lVer, err := p.ds.LastVersion(stageBuild) if err != datastore.ErrNotFound && p.errHandled(err) { return diff --git a/project.go b/project.go index 80e04e3..5b4a2d4 100644 --- a/project.go +++ b/project.go @@ -427,7 +427,7 @@ func (p *projectList) add(name string) { log.Printf("Error opening datastore for Project: %s Error: %s\n", prj.id(), err) return } - prj.load() + prj.load(false) }() } diff --git a/webProject.go b/webProject.go index c936345..eb5f936 100644 --- a/webProject.go +++ b/webProject.go @@ -259,6 +259,6 @@ func triggerPost(w http.ResponseWriter, r *http.Request) { } go func() { - project.load() + project.load(true) }() } From c7745beb28ad12fe0d5b64fa3e3d91e83a18484d Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 5 May 2016 10:51:57 -0500 Subject: [PATCH 39/42] removed verbose from build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 2055dd3..658c0f8 100644 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ #!/bin/bash -go-bindata web/... && go build -a -v -o ironsmith +go-bindata web/... && go build -a -o ironsmith From 3bbb8d7c20c38fa701fe9c9828ab2cc49eac3ed9 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Thu, 5 May 2016 10:51:57 -0500 Subject: [PATCH 40/42] removed verbose from build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 2055dd3..658c0f8 100644 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ #!/bin/bash -go-bindata web/... && go build -a -v -o ironsmith +go-bindata web/... && go build -a -o ironsmith