Switch to copy of encoding/xml with only that subdirectory

This commit is contained in:
Aaron Lindsay 2017-10-02 09:21:56 -04:00
parent 6359499ea2
commit 1e55cb8bd7
18 changed files with 19 additions and 19 deletions

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
) )
// StatementRequest represents a request for a bank statement. It is used to // StatementRequest represents a request for a bank statement. It is used to

View File

@ -4,7 +4,7 @@ package ofxgo
import ( import (
"errors" "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 // Message represents an OFX message in a message set. it is used to ease

View File

@ -9,7 +9,7 @@ package ofxgo
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"strings" "strings"
) )

View File

@ -7,7 +7,7 @@ package ofxgo_test
*/ */
import ( import (
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"strings" "strings"
"testing" "testing"

View File

@ -1,7 +1,7 @@
package ofxgo package ofxgo
import ( import (
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
) )
// CCStatementRequest represents a request for a credit card statement. It is // CCStatementRequest represents a request for a credit card statement. It is

View File

@ -65,7 +65,7 @@ header = """package ofxgo
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"strings" "strings"
) )
""" """
@ -173,7 +173,7 @@ test_header = """package ofxgo_test
*/ */
import ( import (
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"strings" "strings"
"testing" "testing"

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "errors"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
) )
// InvStatementRequest allows a customer to request transactions, positions, // InvStatementRequest allows a customer to request transactions, positions,

View File

@ -1,7 +1,7 @@
package ofxgo_test package ofxgo_test
import ( import (
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"reflect" "reflect"
"strings" "strings"

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "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 // ProfileRequest represents a request for a server to provide a profile of its

View File

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"errors" "errors"
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"time" "time"
) )

View File

@ -4,7 +4,7 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"errors" "errors"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"io" "io"
"reflect" "reflect"
"strings" "strings"

View File

@ -2,7 +2,7 @@ package ofxgo_test
import ( import (
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"os" "os"
"path/filepath" "path/filepath"

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"errors" "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 // SecurityID identifies a security by its CUSIP (for US-based FI's, others may

View File

@ -3,7 +3,7 @@ package ofxgo
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
) )
// SignonRequest identifies and authenticates a user to their FI and is // SignonRequest identifies and authenticates a user to their FI and is

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
) )
// AcctInfoRequest represents a request for the server to provide information // AcctInfoRequest represents a request for the server to provide information

View File

@ -4,7 +4,7 @@ import (
"crypto/rand" "crypto/rand"
"errors" "errors"
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"golang.org/x/text/currency" "golang.org/x/text/currency"
"math/big" "math/big"
"regexp" "regexp"

View File

@ -2,7 +2,7 @@ package ofxgo_test
import ( import (
"fmt" "fmt"
"github.com/aclindsa/go/src/encoding/xml" "github.com/aclindsa/xml"
"github.com/aclindsa/ofxgo" "github.com/aclindsa/ofxgo"
"reflect" "reflect"
"testing" "testing"

View File

@ -2,7 +2,7 @@ package ofxgo
import ( import (
"bytes" "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 // Returns the next available Token from the xml.Decoder that is not CharData