From 1f5fe236d0b6e69feab9a577d60a7eb3a0a6f57d Mon Sep 17 00:00:00 2001 From: Alexander Weinhold Date: Thu, 6 Dec 2018 16:46:27 +0100 Subject: [PATCH] change import paths --- _examples/annotations/main.go | 2 +- _examples/axes/main.go | 2 +- _examples/axes_labels/main.go | 2 +- _examples/bar_chart/main.go | 2 +- _examples/bar_chart_base_value/main.go | 4 ++-- _examples/basic/main.go | 2 +- _examples/benchmark_line_charts/main.go | 2 +- _examples/css_classes/main.go | 2 +- _examples/custom_formatters/main.go | 2 +- _examples/custom_padding/main.go | 6 +++--- _examples/custom_ranges/main.go | 2 +- _examples/custom_styles/main.go | 4 ++-- _examples/custom_ticks/main.go | 2 +- _examples/descending/main.go | 2 +- _examples/image_writer/main.go | 2 +- _examples/legend/main.go | 2 +- _examples/legend_left/main.go | 2 +- _examples/linear_regression/main.go | 4 ++-- _examples/min_max/main.go | 4 ++-- _examples/pie_chart/main.go | 2 +- _examples/poly_regression/main.go | 4 ++-- _examples/request_timings/main.go | 4 ++-- _examples/rerender/main.go | 4 ++-- _examples/scatter/main.go | 6 +++--- _examples/simple_moving_average/main.go | 4 ++-- _examples/stacked_bar/main.go | 2 +- _examples/stock_analysis/main.go | 4 ++-- _examples/text_rotation/main.go | 4 ++-- _examples/timeseries/main.go | 2 +- _examples/twoaxis/main.go | 4 ++-- _examples/twopoint/main.go | 2 +- 31 files changed, 46 insertions(+), 46 deletions(-) diff --git a/_examples/annotations/main.go b/_examples/annotations/main.go index 84220b1..84adbf4 100644 --- a/_examples/annotations/main.go +++ b/_examples/annotations/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/axes/main.go b/_examples/axes/main.go index 6f2bdd5..b2b3b53 100644 --- a/_examples/axes/main.go +++ b/_examples/axes/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/axes_labels/main.go b/_examples/axes_labels/main.go index 6074259..6fd4cb2 100644 --- a/_examples/axes_labels/main.go +++ b/_examples/axes_labels/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/bar_chart/main.go b/_examples/bar_chart/main.go index 693a300..bfc4b85 100644 --- a/_examples/bar_chart/main.go +++ b/_examples/bar_chart/main.go @@ -6,7 +6,7 @@ import ( "net/http" "os" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/bar_chart_base_value/main.go b/_examples/bar_chart_base_value/main.go index 1874f0b..a03f0c7 100644 --- a/_examples/bar_chart_base_value/main.go +++ b/_examples/bar_chart_base_value/main.go @@ -6,8 +6,8 @@ import ( "net/http" "os" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/basic/main.go b/_examples/basic/main.go index 1fd9d38..7f4ebce 100644 --- a/_examples/basic/main.go +++ b/_examples/basic/main.go @@ -4,7 +4,7 @@ import ( "log" "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/benchmark_line_charts/main.go b/_examples/benchmark_line_charts/main.go index 09b1b89..57fc3bf 100644 --- a/_examples/benchmark_line_charts/main.go +++ b/_examples/benchmark_line_charts/main.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func random(min, max float64) float64 { diff --git a/_examples/css_classes/main.go b/_examples/css_classes/main.go index 5046b72..2378c8d 100644 --- a/_examples/css_classes/main.go +++ b/_examples/css_classes/main.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" "log" "net/http" ) diff --git a/_examples/custom_formatters/main.go b/_examples/custom_formatters/main.go index fe1805d..5885d3e 100644 --- a/_examples/custom_formatters/main.go +++ b/_examples/custom_formatters/main.go @@ -4,7 +4,7 @@ import ( "fmt" "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/custom_padding/main.go b/_examples/custom_padding/main.go index a7cfc17..d240b42 100644 --- a/_examples/custom_padding/main.go +++ b/_examples/custom_padding/main.go @@ -3,9 +3,9 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/custom_ranges/main.go b/_examples/custom_ranges/main.go index f4b4205..e123a48 100644 --- a/_examples/custom_ranges/main.go +++ b/_examples/custom_ranges/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/custom_styles/main.go b/_examples/custom_styles/main.go index 4c93856..4e93b57 100644 --- a/_examples/custom_styles/main.go +++ b/_examples/custom_styles/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/custom_ticks/main.go b/_examples/custom_ticks/main.go index 8be25e0..acd7dfa 100644 --- a/_examples/custom_ticks/main.go +++ b/_examples/custom_ticks/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/descending/main.go b/_examples/descending/main.go index 683c3dd..44bcf4e 100644 --- a/_examples/descending/main.go +++ b/_examples/descending/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/image_writer/main.go b/_examples/image_writer/main.go index 13bf013..034dd39 100644 --- a/_examples/image_writer/main.go +++ b/_examples/image_writer/main.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func main() { diff --git a/_examples/legend/main.go b/_examples/legend/main.go index a82d7d3..8594f92 100644 --- a/_examples/legend/main.go +++ b/_examples/legend/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/legend_left/main.go b/_examples/legend_left/main.go index 9eb7fc5..18e494a 100644 --- a/_examples/legend_left/main.go +++ b/_examples/legend_left/main.go @@ -3,7 +3,7 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/linear_regression/main.go b/_examples/linear_regression/main.go index d7578b2..10b77b7 100644 --- a/_examples/linear_regression/main.go +++ b/_examples/linear_regression/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/min_max/main.go b/_examples/min_max/main.go index 5d838c3..994b469 100644 --- a/_examples/min_max/main.go +++ b/_examples/min_max/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/pie_chart/main.go b/_examples/pie_chart/main.go index 9d1098d..4f9b29d 100644 --- a/_examples/pie_chart/main.go +++ b/_examples/pie_chart/main.go @@ -5,7 +5,7 @@ import ( "log" "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/poly_regression/main.go b/_examples/poly_regression/main.go index f2bb3cd..429a4cb 100644 --- a/_examples/poly_regression/main.go +++ b/_examples/poly_regression/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/request_timings/main.go b/_examples/request_timings/main.go index 000829d..41a5bf7 100644 --- a/_examples/request_timings/main.go +++ b/_examples/request_timings/main.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/wcharczuk/go-chart" - util "github.com/wcharczuk/go-chart/util" + "git.gutmet.org/go-chart.git" + util "git.gutmet.org/go-chart.git/util" ) func parseInt(str string) int { diff --git a/_examples/rerender/main.go b/_examples/rerender/main.go index 8ba4ba6..5e818c3 100644 --- a/_examples/rerender/main.go +++ b/_examples/rerender/main.go @@ -6,9 +6,9 @@ import ( "sync" "time" - "github.com/wcharczuk/go-chart/util" + "git.gutmet.org/go-chart.git/util" - chart "github.com/wcharczuk/go-chart" + chart "git.gutmet.org/go-chart.git" ) var lock sync.Mutex diff --git a/_examples/scatter/main.go b/_examples/scatter/main.go index e20539a..93473a4 100644 --- a/_examples/scatter/main.go +++ b/_examples/scatter/main.go @@ -6,9 +6,9 @@ import ( _ "net/http/pprof" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/simple_moving_average/main.go b/_examples/simple_moving_average/main.go index 3020b0a..d789861 100644 --- a/_examples/simple_moving_average/main.go +++ b/_examples/simple_moving_average/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/seq" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/seq" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/stacked_bar/main.go b/_examples/stacked_bar/main.go index 3a6f22e..c9e0657 100644 --- a/_examples/stacked_bar/main.go +++ b/_examples/stacked_bar/main.go @@ -5,7 +5,7 @@ import ( "log" "net/http" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/stock_analysis/main.go b/_examples/stock_analysis/main.go index 397e70f..eb93b90 100644 --- a/_examples/stock_analysis/main.go +++ b/_examples/stock_analysis/main.go @@ -4,8 +4,8 @@ import ( "net/http" "time" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/text_rotation/main.go b/_examples/text_rotation/main.go index 76bb2b0..d3cfcc3 100644 --- a/_examples/text_rotation/main.go +++ b/_examples/text_rotation/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/wcharczuk/go-chart" - "github.com/wcharczuk/go-chart/drawing" + "git.gutmet.org/go-chart.git" + "git.gutmet.org/go-chart.git/drawing" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/timeseries/main.go b/_examples/timeseries/main.go index b77f554..77a198f 100644 --- a/_examples/timeseries/main.go +++ b/_examples/timeseries/main.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/twoaxis/main.go b/_examples/twoaxis/main.go index 471cf85..aa31586 100644 --- a/_examples/twoaxis/main.go +++ b/_examples/twoaxis/main.go @@ -4,8 +4,8 @@ import ( "fmt" "net/http" - "github.com/wcharczuk/go-chart" - util "github.com/wcharczuk/go-chart/util" + "git.gutmet.org/go-chart.git" + util "git.gutmet.org/go-chart.git/util" ) func drawChart(res http.ResponseWriter, req *http.Request) { diff --git a/_examples/twopoint/main.go b/_examples/twopoint/main.go index fc49641..ec051c8 100644 --- a/_examples/twopoint/main.go +++ b/_examples/twopoint/main.go @@ -5,7 +5,7 @@ import ( "log" "os" - "github.com/wcharczuk/go-chart" + "git.gutmet.org/go-chart.git" ) func main() {