Skip to content

Commit

Permalink
Update package path
Browse files Browse the repository at this point in the history
  • Loading branch information
pgundlach committed Jul 7, 2024
1 parent cf68934 commit 6e601b2
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 36 deletions.
8 changes: 4 additions & 4 deletions core/barcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ package core
import (
"image/color"

"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/frontend/pdfdraw"
"github.com/speedata/barcode"
"github.com/speedata/barcode/code128"
"github.com/speedata/barcode/ean"
"github.com/speedata/barcode/qr"
"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/node"
"github.com/speedata/boxesandglue/frontend"
"github.com/speedata/boxesandglue/frontend/pdfdraw"
)

const (
Expand Down
14 changes: 7 additions & 7 deletions core/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import (

"golang.org/x/net/html"

pdf "github.com/speedata/baseline-pdf"
"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/color"
"github.com/speedata/boxesandglue/backend/document"
"github.com/speedata/boxesandglue/backend/node"
"github.com/speedata/boxesandglue/frontend"
"github.com/speedata/boxesandglue/frontend/pdfdraw"
pdf "github.com/boxesandglue/baseline-pdf"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/color"
"github.com/boxesandglue/boxesandglue/backend/document"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/frontend/pdfdraw"
"github.com/speedata/goxml"
"github.com/speedata/goxpath"
xpath "github.com/speedata/goxpath"
Expand Down
10 changes: 5 additions & 5 deletions core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"strconv"
"strings"

"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/document"
"github.com/speedata/boxesandglue/backend/node"
"github.com/speedata/boxesandglue/frontend"
"github.com/speedata/boxesandglue/frontend/pdfdraw"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/document"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/frontend/pdfdraw"
"github.com/speedata/csshtml"
"github.com/speedata/goxml"
xpath "github.com/speedata/goxpath"
Expand Down
6 changes: 3 additions & 3 deletions core/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (

"golang.org/x/net/html"

"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/node"
"github.com/speedata/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/frontend"
"github.com/speedata/csshtml"
"github.com/speedata/goxml"
xpath "github.com/speedata/goxpath"
Expand Down
2 changes: 1 addition & 1 deletion core/functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strings"

"github.com/alecthomas/chroma/formatters/html"
"github.com/speedata/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/speedata/goxpath"
"github.com/yuin/goldmark"
highlighting "github.com/yuin/goldmark-highlighting"
Expand Down
2 changes: 1 addition & 1 deletion core/grid.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"math"
"strings"

"github.com/speedata/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/bag"
)

type area struct {
Expand Down
2 changes: 1 addition & 1 deletion core/group.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package core

import "github.com/speedata/boxesandglue/backend/node"
import "github.com/boxesandglue/boxesandglue/backend/node"

type group struct {
name string
Expand Down
8 changes: 4 additions & 4 deletions core/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package core
import (
"math"

pdf "github.com/speedata/baseline-pdf"
"github.com/speedata/boxesandglue/backend/bag"
bagimage "github.com/speedata/boxesandglue/backend/image"
"github.com/speedata/boxesandglue/backend/node"
pdf "github.com/boxesandglue/baseline-pdf"
"github.com/boxesandglue/boxesandglue/backend/bag"
bagimage "github.com/boxesandglue/boxesandglue/backend/image"
"github.com/boxesandglue/boxesandglue/backend/node"
)

func createImageHlist(xd *xtsDocument, width, height, minwidth, maxwidth, minheight, maxheight *bag.ScaledPoint, stretch bool, imgfile *pdf.Imagefile, pagenumer int) *node.HList {
Expand Down
4 changes: 2 additions & 2 deletions core/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package core
import (
"testing"

"github.com/speedata/boxesandglue/backend/bag"
bagimage "github.com/speedata/boxesandglue/backend/image"
"github.com/boxesandglue/boxesandglue/backend/bag"
bagimage "github.com/boxesandglue/boxesandglue/backend/image"
)

func TestImageSize(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions core/language.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package core

import (
"github.com/speedata/boxesandglue/backend/lang"
"github.com/speedata/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/backend/lang"
"github.com/boxesandglue/boxesandglue/frontend"
)

var languageMapping = map[string]string{
Expand Down
8 changes: 4 additions & 4 deletions core/page.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"fmt"
"log/slog"

"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/document"
"github.com/speedata/boxesandglue/backend/node"
"github.com/speedata/boxesandglue/frontend"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/document"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/frontend"
"github.com/speedata/goxml"
)

Expand Down
4 changes: 2 additions & 2 deletions core/references.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"os"
"strconv"

"github.com/speedata/boxesandglue/backend/bag"
"github.com/speedata/boxesandglue/backend/node"
"github.com/boxesandglue/boxesandglue/backend/bag"
"github.com/boxesandglue/boxesandglue/backend/node"
"github.com/speedata/goxpath"
)

Expand Down

0 comments on commit 6e601b2

Please sign in to comment.