Skip to content

Commit 48a8c2b

Browse files
authored
refactor: update project's link. (#248)
1 parent 0a9720a commit 48a8c2b

File tree

14 files changed

+26
-26
lines changed

14 files changed

+26
-26
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FastExcel 欢迎社区的每一位用户和开发者成为贡献者。无论是
66

77
## 报告问题
88

9-
我们鼓励用户在使用 FastExcel 的过程中随时提供反馈。您可以通过 [NEW ISSUE](https://github.com/CodePhiliaX/fastexcel/issues/new/choose) 提交问题。
9+
我们鼓励用户在使用 FastExcel 的过程中随时提供反馈。您可以通过 [NEW ISSUE](https://github.com/fast-excel/fastexcel/issues/new/choose) 提交问题。
1010

1111
### 高质量问题报告
1212

@@ -55,14 +55,14 @@ FastExcel 欢迎社区的每一位用户和开发者成为贡献者。无论是
5555
### 工作区准备
5656

5757
确保您已注册 GitHub 账号,并按照以下步骤完成本地开发环境配置:
58-
1. **Fork 仓库**:在 FastExcel 的 [GitHub 页面](https://github.com/CodePhiliaX/fastexcel) 点击 `Fork` 按钮,将项目复制到您的 GitHub 账户下,例如:`https://github.com/<your-username>/fastexcel`
58+
1. **Fork 仓库**:在 FastExcel 的 [GitHub 页面](https://github.com/fast-excel/fastexcel) 点击 `Fork` 按钮,将项目复制到您的 GitHub 账户下,例如:`https://github.com/<your-username>/fastexcel`
5959
2. **克隆代码库**:运行以下命令将 Fork 的项目克隆到本地:
6060
```bash
6161
git clone [email protected]:<your-username>/fastexcel.git
6262
```
6363
3. **设置上游仓库**:将官方仓库设置为 `upstream`,方便同步更新:
6464
```bash
65-
git remote add upstream [email protected]:CodePhiliaX/fastexcel.git
65+
git remote add upstream [email protected]:fast-excel/fastexcel.git
6666
git remote set-url --push upstream no-pushing
6767
```
6868
运行 `git remote -v` 可检查配置是否正确。

fastexcel-core/src/main/java/cn/idev/excel/analysis/ExcelAnalyserImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void finish() {
174174
}
175175

176176
// close csv.
177-
// https://github.com/CodePhiliaX/fastexcel/issues/2309
177+
// https://github.com/fast-excel/fastexcel/issues/2309
178178
try {
179179
if ((readWorkbookHolder instanceof CsvReadWorkbookHolder)
180180
&& ((CsvReadWorkbookHolder) readWorkbookHolder).getCsvParser() != null

fastexcel-core/src/main/java/cn/idev/excel/analysis/v03/handlers/DummyRecordHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void processRecord(XlsReadContext xlsReadContext, Record record) {
3434
xlsReadSheetHolder.setTempRowType(RowTypeEnum.EMPTY);
3535
} else if (record instanceof MissingCellDummyRecord) {
3636
MissingCellDummyRecord mcdr = (MissingCellDummyRecord)record;
37-
// https://github.com/CodePhiliaX/fastexcel/issues/2236
37+
// https://github.com/fast-excel/fastexcel/issues/2236
3838
// Some abnormal XLS, in the case of data already exist, or there will be a "MissingCellDummyRecord"
3939
// records, so if the existing data, empty data is ignored
4040
xlsReadSheetHolder.getCellMap().putIfAbsent(mcdr.getColumn(),

fastexcel-core/src/main/java/cn/idev/excel/read/listener/ModelBuildEventListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private Object buildNoModel(Map<Integer, ReadCellData<?>> cellDataMap, ReadSheet
6969
}
7070
}
7171
}
72-
// fix https://github.com/CodePhiliaX/fastexcel/issues/2014
72+
// fix https://github.com/fast-excel/fastexcel/issues/2014
7373
int headSize = calculateHeadSize(readSheetHolder);
7474
while (index < headSize) {
7575
map.put(index, null);

fastexcel-core/src/main/java/cn/idev/excel/read/metadata/holder/ReadSheetHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class ReadSheetHolder extends AbstractReadHolder {
6262
private ReadCellData<?> tempCellData;
6363
/**
6464
* Read the size of the largest head in sheet head data.
65-
* see https://github.com/CodePhiliaX/fastexcel/issues/2014
65+
* see https://github.com/fast-excel/fastexcel/issues/2014
6666
*/
6767
private Integer maxNotEmptyDataHeadSize;
6868

fastexcel-core/src/main/java/cn/idev/excel/util/BeanMapUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class BeanMapUtils {
1717
* <code>BeanMap.Generator</code> instead of this static method.
1818
*
1919
* Custom naming policy to prevent null pointer exceptions.
20-
* see: https://github.com/CodePhiliaX/fastexcel/issues/2064
20+
* see: https://github.com/fast-excel/fastexcel/issues/2064
2121
*
2222
* @param bean the JavaBean underlying the map
2323
* @return a new <code>BeanMap</code> instance

fastexcel-core/src/main/java/cn/idev/excel/write/executor/ExcelWriteAddExecutor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private void addBasicTypeToExcel(RowData oneRowData, Row row, int rowIndex, int
102102
if (dataIndex >= oneRowData.size()) {
103103
return;
104104
}
105-
// fix https://github.com/CodePhiliaX/fastexcel/issues/1702
105+
// fix https://github.com/fast-excel/fastexcel/issues/1702
106106
// If there is data, it is written to the next cell
107107
maxCellIndex++;
108108

@@ -196,7 +196,7 @@ private void addJavaObjectToExcel(Object oneRowData, Row row, int rowIndex, int
196196
writeContext, row, rowIndex, null, maxCellIndex, relativeRowIndex, Boolean.FALSE, excelContentProperty);
197197
WriteHandlerUtils.beforeCellCreate(cellWriteHandlerContext);
198198

199-
// fix https://github.com/CodePhiliaX/fastexcel/issues/1870
199+
// fix https://github.com/fast-excel/fastexcel/issues/1870
200200
// If there is data, it is written to the next cell
201201
Cell cell = WorkBookUtil.createCell(row, maxCellIndex);
202202
cellWriteHandlerContext.setCell(cell);

fastexcel-core/src/main/java/cn/idev/excel/write/executor/ExcelWriteFillExecutor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ private void checkRowHeight(AnalysisCell analysisCell, FillConfig fillConfig, bo
428428
if (!analysisCell.getFirstRow() || !WriteDirectionEnum.VERTICAL.equals(fillConfig.getDirection())) {
429429
return;
430430
}
431-
// fix https://github.com/CodePhiliaX/fastexcel/issues/1869
431+
// fix https://github.com/fast-excel/fastexcel/issues/1869
432432
if (isOriginalCell && PoiUtils.customHeight(row)) {
433433
collectionRowHeightCache.put(currentUniqueDataFlag, row.getHeight());
434434
return;
@@ -538,7 +538,7 @@ private String prepareData(Cell cell, int rowIndex, int columnIndex,
538538
analysisCell.getVariableList().add(variable);
539539
if (lastPrepareDataIndex == prefixIndex) {
540540
analysisCell.getPrepareDataList().add(StringUtils.EMPTY);
541-
// fix https://github.com/CodePhiliaX/fastexcel/issues/2035
541+
// fix https://github.com/fast-excel/fastexcel/issues/2035
542542
if (lastPrepareDataIndex != 0) {
543543
analysisCell.setOnlyOneVariable(Boolean.FALSE);
544544
}
@@ -550,7 +550,7 @@ private String prepareData(Cell cell, int rowIndex, int columnIndex,
550550
}
551551
lastPrepareDataIndex = suffixIndex + 1;
552552
}
553-
// fix https://github.com/CodePhiliaX/fastexcel/issues/1552
553+
// fix https://github.com/fast-excel/fastexcel/issues/1552
554554
// When read template, XLSX data may be in `is` labels, and set the time set in `v` label, lead to can't set
555555
// up successfully, so all data format to empty first.
556556
if (analysisCell != null && CollectionUtils.isNotEmpty(analysisCell.getVariableList())) {

fastexcel-core/src/main/java/cn/idev/excel/write/handler/impl/DimensionWorkbookWriteHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Handle the problem of unable to write dimension.
2121
*
22-
* https://github.com/CodePhiliaX/fastexcel/issues/1282
22+
* https://github.com/fast-excel/fastexcel/issues/1282
2323
*
2424
* @author Jiaju Zhuang
2525
*/

fastexcel-test/src/test/java/cn/idev/excel/test/core/compatibility/CompatibilityTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class CompatibilityTest {
3232

3333
@Test
3434
public void t01() {
35-
// https://github.com/CodePhiliaX/fastexcel/issues/2236
35+
// https://github.com/fast-excel/fastexcel/issues/2236
3636
List<Map<Integer, Object>> list = EasyExcel.read(TestFileUtil.getPath() + "compatibility/t01.xls").sheet()
3737
.doReadSync();
3838
Assertions.assertEquals(2, list.size());
@@ -75,7 +75,7 @@ public void t04() {
7575

7676
@Test
7777
public void t05() {
78-
// https://github.com/CodePhiliaX/fastexcel/issues/1956
78+
// https://github.com/fast-excel/fastexcel/issues/1956
7979
// Excel read date needs to be rounded
8080
List<Map<Integer, String>> list = EasyExcel
8181
.read(TestFileUtil.getPath() + "compatibility/t05.xlsx")
@@ -103,7 +103,7 @@ public void t06() {
103103

104104
@Test
105105
public void t07() {
106-
// https://github.com/CodePhiliaX/fastexcel/issues/2805
106+
// https://github.com/fast-excel/fastexcel/issues/2805
107107
// Excel read date needs to be rounded
108108
List<Map<Integer, Object>> list = EasyExcel
109109
.read(TestFileUtil.getPath() + "compatibility/t07.xlsx")
@@ -123,7 +123,7 @@ public void t07() {
123123

124124
@Test
125125
public void t08() {
126-
// https://github.com/CodePhiliaX/fastexcel/issues/2693
126+
// https://github.com/fast-excel/fastexcel/issues/2693
127127
// Temporary files may be deleted if there is no operation for a long time, so they need to be recreated.
128128
File file = TestFileUtil.createNewFile("compatibility/t08.xlsx");
129129
EasyExcel.write(file, SimpleData.class)

0 commit comments

Comments
 (0)