Skip to content

Commit

Permalink
Merge pull request #2 from aclindsa/smaller_xml_parser
Browse files Browse the repository at this point in the history
Switch to copy of encoding/xml with only that subdirectory
  • Loading branch information
aclindsa committed Oct 2, 2017
2 parents 6359499 + 02f59a7 commit fa05f64
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 20 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ os:
- linux

go:
- 1.8.x
- 1.9.x
- master

Expand Down
2 changes: 1 addition & 1 deletion bank.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// StatementRequest represents a request for a bank statement. It is used to
Expand Down
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package ofxgo

import (
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// Message represents an OFX message in a message set. it is used to ease
Expand Down
2 changes: 1 addition & 1 deletion constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package ofxgo
import (
"errors"
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion constants_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package ofxgo_test
*/

import (
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo"
"strings"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion creditcard.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ofxgo

import (
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// CCStatementRequest represents a request for a credit card statement. It is
Expand Down
4 changes: 2 additions & 2 deletions generate_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
import (
"errors"
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"strings"
)
"""
Expand Down Expand Up @@ -173,7 +173,7 @@
*/
import (
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo"
"strings"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion invstmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// InvStatementRequest allows a customer to request transactions, positions,
Expand Down
2 changes: 1 addition & 1 deletion invstmt_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ofxgo_test

import (
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo"
"reflect"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// ProfileRequest represents a request for a server to provide a profile of its
Expand Down
2 changes: 1 addition & 1 deletion request.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"errors"
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion response.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bufio"
"bytes"
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"io"
"reflect"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion response_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo_test

import (
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion seclist.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"errors"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// SecurityID identifies a security by its CUSIP (for US-based FI's, others may
Expand Down
2 changes: 1 addition & 1 deletion signon.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package ofxgo
import (
"errors"
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// SignonRequest identifies and authenticates a user to their FI and is
Expand Down
2 changes: 1 addition & 1 deletion signup.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// AcctInfoRequest represents a request for the server to provide information
Expand Down
2 changes: 1 addition & 1 deletion types.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/rand"
"errors"
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"golang.org/x/text/currency"
"math/big"
"regexp"
Expand Down
2 changes: 1 addition & 1 deletion types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo_test

import (
"fmt"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo"
"reflect"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package ofxgo

import (
"bytes"
"github.com/aclindsa/go/src/encoding/xml"
"github.com/aclindsa/xml"
)

// Returns the next available Token from the xml.Decoder that is not CharData
Expand Down

0 comments on commit fa05f64

Please sign in to comment.