Switch to github import paths.

pull/2/head
Tom Harwood 2015-03-15 20:10:10 +00:00
parent cbd4f54dad
commit 3484a698f5
10 changed files with 11 additions and 11 deletions

View File

@ -7,7 +7,7 @@ import (
"errors"
"log"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
// Data encoding.

View File

@ -8,7 +8,7 @@ import (
"reflect"
"testing"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
func TestClassifyDataMode(t *testing.T) {

View File

@ -45,8 +45,8 @@ import (
"log"
"os"
bitset "code.google.com/p/go-qrcode/bitset"
reedsolomon "code.google.com/p/go-qrcode/reedsolomon"
bitset "github.com/skip2/go-qrcode/bitset"
reedsolomon "github.com/skip2/go-qrcode/reedsolomon"
)
// Encode a QR Code and return a raw PNG image.

View File

@ -7,7 +7,7 @@ import (
"fmt"
"log"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
// gfPoly is a polynomial over GF(2^8).

View File

@ -13,7 +13,7 @@ package reedsolomon
import (
"log"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
// Encode data for QR Code 2005 using the appropriate Reed-Solomon code.

View File

@ -6,7 +6,7 @@ package reedsolomon
import (
"testing"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
func TestGeneratorPoly(t *testing.T) {

View File

@ -4,7 +4,7 @@
package qrcode
import (
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
type regularSymbol struct {

View File

@ -7,7 +7,7 @@ import (
"fmt"
"testing"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
func TestBuildRegularSymbol(t *testing.T) {

View File

@ -6,7 +6,7 @@ package qrcode
import (
"log"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
// Error detection/recovery capacity.

View File

@ -6,7 +6,7 @@ package qrcode
import (
"testing"
bitset "code.google.com/p/go-qrcode/bitset"
bitset "github.com/skip2/go-qrcode/bitset"
)
func TestFormatInfo(t *testing.T) {