From 7e968a713ec0540efce85f651669b0c1fe3af19a Mon Sep 17 00:00:00 2001 From: Sebastien Binet Date: Thu, 16 Apr 2015 11:40:22 +0200 Subject: [PATCH] all: update imports to github.com/llgcode/draw2d --- README | 6 +++--- cmd/draw2dgl.go | 4 ++-- cmd/gettingStarted.go | 2 +- cmd/testX11draw.go | 2 +- cmd/testandroid.go | 2 +- cmd/testdraw2d.go | 2 +- cmd/testgopher.go | 2 +- cmd/testimage.go | 2 +- cmd/testpostscript.go | 4 ++-- draw2d/curve/_testmain.go | 2 +- draw2d/curve/curve_test.go | 2 +- draw2d/raster/raster_test.go | 2 +- draw2dgl/gc.go | 2 +- issue23/issue23.go | 2 +- postscript/interpreter.go | 2 +- postscript/operators_graphics.go | 2 +- wingui/wintest/wintest.go | 2 +- wingui/wintestgdi/wintestgdi.go | 6 +++--- 18 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README b/README index df8ebf8..9c18666 100644 --- a/README +++ b/README @@ -13,12 +13,12 @@ Once you have Go installed, to install draw2d: * First see the installation procedure of [http://code.google.com/p/freetype-go/ freetype-go] * goinstall draw2d.googlecode.com/svn/trunk/draw2d/src/pkg/draw2d -a good starting point is the [http://code.google.com/p/draw2d/wiki/GettingStarted getting started] +a good starting point is the [http://github.com/llgcode/draw2d/wiki/GettingStarted getting started] -=== [http://code.google.com/p/draw2d/wiki/Samples Samples] === +=== [http://github.com/llgcode/draw2d/wiki/Samples Samples] === Sample images generated by draw2d (inspired by [http://cairographics.org/samples/ cairo samples]): -there's already some bugs please refer to [http://code.google.com/p/draw2d/issues/list issue tracking] +there's already some bugs please refer to [http://github.com/llgcode/draw2d/issues/list issue tracking] [http://draw2d.googlecode.com/svn/wiki/test_results/TestPath.png] [http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawArc.png] diff --git a/cmd/draw2dgl.go b/cmd/draw2dgl.go index 1d8e734..8242f0c 100644 --- a/cmd/draw2dgl.go +++ b/cmd/draw2dgl.go @@ -18,8 +18,8 @@ package main import ( - "code.google.com/p/draw2d/draw2dgl" - "code.google.com/p/draw2d/postscript" + "github.com/llgcode/draw2d/draw2dgl" + "github.com/llgcode/draw2d/postscript" "gl" "glut" "io/ioutil" diff --git a/cmd/gettingStarted.go b/cmd/gettingStarted.go index a0c11ca..4bf2826 100644 --- a/cmd/gettingStarted.go +++ b/cmd/gettingStarted.go @@ -9,7 +9,7 @@ import ( "log" "os" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image" "image/png" ) diff --git a/cmd/testX11draw.go b/cmd/testX11draw.go index f6825d3..d07648d 100644 --- a/cmd/testX11draw.go +++ b/cmd/testX11draw.go @@ -1,7 +1,7 @@ package main import ( - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "exp/gui" "exp/gui/x11" "fmt" diff --git a/cmd/testandroid.go b/cmd/testandroid.go index 36209c6..effb7d0 100644 --- a/cmd/testandroid.go +++ b/cmd/testandroid.go @@ -6,7 +6,7 @@ import ( "log" "os" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image" "image/color" "image/png" diff --git a/cmd/testdraw2d.go b/cmd/testdraw2d.go index 6437ed2..8a62a98 100644 --- a/cmd/testdraw2d.go +++ b/cmd/testdraw2d.go @@ -9,7 +9,7 @@ import ( "log" "os" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image" "image/color" "image/png" diff --git a/cmd/testgopher.go b/cmd/testgopher.go index 40907aa..7955806 100644 --- a/cmd/testgopher.go +++ b/cmd/testgopher.go @@ -7,7 +7,7 @@ import ( "math" "os" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image" "image/color" "image/png" diff --git a/cmd/testimage.go b/cmd/testimage.go index f936cdf..6bad0e5 100644 --- a/cmd/testimage.go +++ b/cmd/testimage.go @@ -2,7 +2,7 @@ package main import ( "bufio" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "fmt" "image" "image/draw" diff --git a/cmd/testpostscript.go b/cmd/testpostscript.go index 8b5809f..da05bfc 100644 --- a/cmd/testpostscript.go +++ b/cmd/testpostscript.go @@ -2,8 +2,8 @@ package main import ( "bufio" - "code.google.com/p/draw2d/draw2d" - "code.google.com/p/draw2d/postscript" + "github.com/llgcode/draw2d/draw2d" + "github.com/llgcode/draw2d/postscript" "fmt" "image" "image/png" diff --git a/draw2d/curve/_testmain.go b/draw2d/curve/_testmain.go index e0b6f45..a1d1381 100644 --- a/draw2d/curve/_testmain.go +++ b/draw2d/curve/_testmain.go @@ -1,6 +1,6 @@ package main -import "code.google.com/p/draw2d/draw2d/curve" +import "github.com/llgcode/draw2d/draw2d/curve" import "testing" import __os__ "os" import __regexp__ "regexp" diff --git a/draw2d/curve/curve_test.go b/draw2d/curve/curve_test.go index 496466d..fbb7139 100644 --- a/draw2d/curve/curve_test.go +++ b/draw2d/curve/curve_test.go @@ -2,7 +2,7 @@ package curve import ( "bufio" - "code.google.com/p/draw2d/draw2d/raster" + "github.com/llgcode/draw2d/draw2d/raster" "fmt" "image" "image/color" diff --git a/draw2d/raster/raster_test.go b/draw2d/raster/raster_test.go index c339d9b..14e0896 100644 --- a/draw2d/raster/raster_test.go +++ b/draw2d/raster/raster_test.go @@ -2,7 +2,7 @@ package raster import ( "bufio" - "code.google.com/p/draw2d/draw2d/curve" + "github.com/llgcode/draw2d/draw2d/curve" "code.google.com/p/freetype-go/freetype/raster" "image" "image/color" diff --git a/draw2dgl/gc.go b/draw2dgl/gc.go index 6b7316b..3b16b6f 100644 --- a/draw2dgl/gc.go +++ b/draw2dgl/gc.go @@ -1,7 +1,7 @@ package draw2dgl import ( - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "code.google.com/p/freetype-go/freetype/raster" "gl" "image" diff --git a/issue23/issue23.go b/issue23/issue23.go index c037d91..51e1df9 100644 --- a/issue23/issue23.go +++ b/issue23/issue23.go @@ -6,7 +6,7 @@ import ( "log" "os" - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image" "image/draw" "image/png" diff --git a/postscript/interpreter.go b/postscript/interpreter.go index aeca402..39dbdac 100644 --- a/postscript/interpreter.go +++ b/postscript/interpreter.go @@ -4,7 +4,7 @@ package postscript import ( - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "io" "log" "os" diff --git a/postscript/operators_graphics.go b/postscript/operators_graphics.go index 65ef9cd..9eebb39 100644 --- a/postscript/operators_graphics.go +++ b/postscript/operators_graphics.go @@ -5,7 +5,7 @@ package postscript import ( - "code.google.com/p/draw2d/draw2d" + "github.com/llgcode/draw2d/draw2d" "image/color" "log" "math" diff --git a/wingui/wintest/wintest.go b/wingui/wintest/wintest.go index dd4c6d2..32a4c0d 100644 --- a/wingui/wintest/wintest.go +++ b/wingui/wintest/wintest.go @@ -5,7 +5,7 @@ import ( "os" "syscall" "unsafe" - . "code.google.com/p/draw2d/wingui" + . "github.com/llgcode/draw2d/wingui" ) // some help functions diff --git a/wingui/wintestgdi/wintestgdi.go b/wingui/wintestgdi/wintestgdi.go index 2f695b5..d08f0b6 100644 --- a/wingui/wintestgdi/wintestgdi.go +++ b/wingui/wintestgdi/wintestgdi.go @@ -5,9 +5,9 @@ package main import ( - "code.google.com/p/draw2d/draw2d" - "code.google.com/p/draw2d/wingui" - "code.google.com/p/draw2d/postscript" + "github.com/llgcode/draw2d/draw2d" + "github.com/llgcode/draw2d/wingui" + "github.com/llgcode/draw2d/postscript" "fmt" "image" "io/ioutil"