Skip to content

Commit 21214a5

Browse files
committed
Rename import path to github.com/360EntSecGroup-Skylar/excelize
1 parent 96b3e1e commit 21214a5

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A great way to contribute to the project is to send a detailed report when you
3232
encounter an issue. We always appreciate a well-written, thorough bug report,
3333
and will thank you for it!
3434

35-
Check that [our issue database](https://github.com/xuri/excelize/issues)
35+
Check that [our issue database](https://github.com/360EntSecGroup-Skylar/excelize/issues)
3636
doesn't already include that problem or suggestion before submitting an issue.
3737
If you find a match, you can use the "subscribe" button to get notified on
3838
updates. Do *not* leave random "+1" or "I have this too" comments, as they
@@ -56,7 +56,7 @@ This section gives the experienced contributor some tips and guidelines.
5656

5757
Not sure if that typo is worth a pull request? Found a bug and know how to fix
5858
it? Do it! We will appreciate it. Any significant improvement should be
59-
documented as [a GitHub issue](https://github.com/xuri/excelize/issues) before
59+
documented as [a GitHub issue](https://github.com/360EntSecGroup-Skylar/excelize/issues) before
6060
anybody starts working on it.
6161

6262
We are always thrilled to receive pull requests. We do our best to process them
@@ -373,4 +373,4 @@ The rules:
373373
If you are having trouble getting into the mood of idiomatic Go, we recommend
374374
reading through [Effective Go](https://golang.org/doc/effective_go.html). The
375375
[Go Blog](https://blog.golang.org) is also a great resource. Drinking the
376-
kool-aid is a lot easier than going thirsty.
376+
kool-aid is a lot easier than going thirsty.

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![Build Status](https://travis-ci.org/360EntSecGroup-Skylar/excelize.svg?branch=master)](https://travis-ci.org/360EntSecGroup-Skylar/excelize)
66
[![Code Coverage](https://codecov.io/gh/360EntSecGroup-Skylar/excelize/branch/master/graph/badge.svg)](https://codecov.io/gh/360EntSecGroup-Skylar/excelize)
7-
[![Go Report Card](https://goreportcard.com/badge/github.com/xuri/excelize)](https://goreportcard.com/report/github.com/xuri/excelize)
7+
[![Go Report Card](https://goreportcard.com/badge/github.com/360EntSecGroup-Skylar/excelize)](https://goreportcard.com/report/github.com/360EntSecGroup-Skylar/excelize)
88
[![GoDoc](https://godoc.org/github.com/360EntSecGroup-Skylar/excelize?status.svg)](https://godoc.org/github.com/360EntSecGroup-Skylar/excelize)
99
[![Licenses](https://img.shields.io/badge/license-bsd-orange.svg)](https://opensource.org/licenses/BSD-3-Clause)
1010
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/xuri)
@@ -18,7 +18,7 @@ Excelize is a library written in pure Golang and providing a set of functions th
1818
### Installation
1919

2020
```go
21-
go get github.com/xuri/excelize
21+
go get github.com/360EntSecGroup-Skylar/excelize
2222
```
2323

2424
### Create XLSX file
@@ -31,7 +31,7 @@ package main
3131
import (
3232
"fmt"
3333

34-
"github.com/xuri/excelize"
34+
"github.com/360EntSecGroup-Skylar/excelize"
3535
)
3636

3737
func main() {
@@ -61,7 +61,7 @@ package main
6161
import (
6262
"fmt"
6363

64-
"github.com/xuri/excelize"
64+
"github.com/360EntSecGroup-Skylar/excelize"
6565
)
6666

6767
func main() {
@@ -97,7 +97,7 @@ package main
9797
import (
9898
"fmt"
9999

100-
"github.com/xuri/excelize"
100+
"github.com/360EntSecGroup-Skylar/excelize"
101101
)
102102

103103
func main() {
@@ -130,7 +130,7 @@ import (
130130
_ "image/jpeg"
131131
_ "image/png"
132132

133-
"github.com/xuri/excelize"
133+
"github.com/360EntSecGroup-Skylar/excelize"
134134
)
135135

136136
func main() {

cell.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func (f *File) SetCellFormula(sheet, axis, formula string) {
224224
// for web site or "Location" for moving to one of cell in this workbook. The
225225
// below is example for external link.
226226
//
227-
// xlsx.SetCellHyperLink("Sheet1", "A3", "https://github.com/xuri/excelize", "External")
227+
// xlsx.SetCellHyperLink("Sheet1", "A3", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
228228
// // Set underline and font color style for the cell.
229229
// style, _ := xlsx.NewStyle(`{"font":{"color":"#1265BE","underline":"single"}}`)
230230
// xlsx.SetCellStyle("Sheet1", "A3", "A3", style)

chart.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func parseFormatChartSet(formatSet string) *formatChart {
105105
// import (
106106
// "fmt"
107107
//
108-
// "github.com/xuri/excelize"
108+
// "github.com/360EntSecGroup-Skylar/excelize"
109109
// )
110110
//
111111
// func main() {

excelize_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ func TestSetCellHyperLink(t *testing.T) {
225225
t.Log(err)
226226
}
227227
// Test set cell hyperlink in a work sheet already have hyperlinks.
228-
xlsx.SetCellHyperLink("Sheet1", "B19", "https://github.com/xuri/excelize", "External")
228+
xlsx.SetCellHyperLink("Sheet1", "B19", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
229229
// Test add first hyperlink in a work sheet.
230-
xlsx.SetCellHyperLink("Sheet2", "C1", "https://github.com/xuri/excelize", "External")
230+
xlsx.SetCellHyperLink("Sheet2", "C1", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
231231
// Test add Location hyperlink in a work sheet.
232232
xlsx.SetCellHyperLink("Sheet2", "D6", "Sheet1!D8", "Location")
233233
xlsx.SetCellHyperLink("Sheet2", "C3", "Sheet1!D8", "")
@@ -311,7 +311,7 @@ func TestMergeCell(t *testing.T) {
311311
xlsx.SetCellValue("Sheet1", "G11", "set value in merged cell")
312312
xlsx.SetCellInt("Sheet1", "H11", 100)
313313
xlsx.SetCellValue("Sheet1", "I11", float64(0.5))
314-
xlsx.SetCellHyperLink("Sheet1", "J11", "https://github.com/xuri/excelize", "External")
314+
xlsx.SetCellHyperLink("Sheet1", "J11", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
315315
xlsx.SetCellFormula("Sheet1", "G12", "SUM(Sheet1!B19,Sheet1!C19)")
316316
xlsx.GetCellValue("Sheet1", "H11")
317317
xlsx.GetCellFormula("Sheet1", "G12")
@@ -832,7 +832,7 @@ func TestInsertCol(t *testing.T) {
832832
xlsx.SetCellStr("Sheet1", axis, axis)
833833
}
834834
}
835-
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/xuri/excelize", "External")
835+
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
836836
xlsx.MergeCell("Sheet1", "A1", "C3")
837837
err := xlsx.AutoFilter("Sheet1", "A2", "B2", `{"column":"B","expression":"x != blanks"}`)
838838
t.Log(err)
@@ -851,7 +851,7 @@ func TestRemoveCol(t *testing.T) {
851851
xlsx.SetCellStr("Sheet1", axis, axis)
852852
}
853853
}
854-
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/xuri/excelize", "External")
854+
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
855855
xlsx.SetCellHyperLink("Sheet1", "C5", "https://github.com", "External")
856856
xlsx.MergeCell("Sheet1", "A1", "B1")
857857
xlsx.MergeCell("Sheet1", "A2", "B2")
@@ -871,7 +871,7 @@ func TestInsertRow(t *testing.T) {
871871
xlsx.SetCellStr("Sheet1", axis, axis)
872872
}
873873
}
874-
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/xuri/excelize", "External")
874+
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
875875
xlsx.InsertRow("Sheet1", -1)
876876
xlsx.InsertRow("Sheet1", 4)
877877
err := xlsx.SaveAs("./test/Workbook_insertrow.xlsx")
@@ -903,7 +903,7 @@ func TestRemoveRow(t *testing.T) {
903903
xlsx.SetCellStr("Sheet1", axis, axis)
904904
}
905905
}
906-
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/xuri/excelize", "External")
906+
xlsx.SetCellHyperLink("Sheet1", "A5", "https://github.com/360EntSecGroup-Skylar/excelize", "External")
907907
xlsx.RemoveRow("Sheet1", -1)
908908
xlsx.RemoveRow("Sheet1", 4)
909909
xlsx.MergeCell("Sheet1", "B3", "B5")

picture.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func parseFormatPictureSet(formatSet string) *formatPicture {
4242
// _ "image/jpeg"
4343
// _ "image/png"
4444
//
45-
// "github.com/xuri/excelize"
45+
// "github.com/360EntSecGroup-Skylar/excelize"
4646
// )
4747
//
4848
// func main() {

0 commit comments

Comments
 (0)