Skip to content

Commit 9f3ed1b

Browse files
committed
Fixed readme files and links. Fixed licenseheaders.
1 parent 26abd92 commit 9f3ed1b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+328
-570
lines changed

Diff for: 01-GettingStarted/GettingStartedSample.cs

+12-29
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,15 @@
1-
/*******************************************************************************
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* All rights reserved.
5-
*
6-
* EPPlus is an Open Source project provided under the
7-
* GNU General Public License (GPL) as published by the
8-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9-
*
10-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
11-
* See https://github.com/JanKallman/EPPlus for details.
12-
*
13-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
14-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
15-
*
16-
* The code for this project may be used and redistributed by any means PROVIDING it is
17-
* not sold for profit without the author's written consent, and providing that this notice
18-
* and the author's name and all copyright notices remain intact.
19-
*
20-
* All code and executables are provided "as is" with no warranty either express or implied.
21-
* The author accepts no liability for any damage or loss of business that this product may cause.
22-
*
23-
*
24-
* Code change notes:
25-
*
26-
* Author Change Date
27-
*******************************************************************************
28-
* Jan Källman Added 21 Mar 2010
29-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
3013
using OfficeOpenXml;
3114
using System.Drawing;
3215
using OfficeOpenXml.Style;

Diff for: 01-GettingStarted/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Creates a workbook from scratch. The workbook contains one worksheet with a simp
66
Data is loaded manually via the Cells property of the Worksheet.
77

88
---
9-
[Back to overview](/SampleApp.Core/Readme.md)
9+
[Back to overview](/Readme.md)

Diff for: 02-ReadWorkbook/ReadWorkbookSample.cs

+12-31
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,15 @@
1-
/*******************************************************************************
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* All rights reserved.
5-
*
6-
* EPPlus is an Open Source project provided under the
7-
* GNU General Public License (GPL) as published by the
8-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9-
*
10-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
11-
* See https://github.com/JanKallman/EPPlus for details.
12-
*
13-
*
14-
*
15-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
16-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
17-
*
18-
* The code for this project may be used and redistributed by any means PROVIDING it is
19-
* not sold for profit without the author's written consent, and providing that this notice
20-
* and the author's name and all copyright notices remain intact.
21-
*
22-
* All code and executables are provided "as is" with no warranty either express or implied.
23-
* The author accepts no liability for any damage or loss of business that this product may cause.
24-
*
25-
*
26-
* Code change notes:
27-
*
28-
* Author Change Date
29-
*******************************************************************************
30-
* Jan Källman Added 10-SEP-2009
31-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
3213
using System;
3314
using System.IO;
3415
using OfficeOpenXml;

Diff for: 02-ReadWorkbook/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Read an existing workbook with EPPlus.
55
Creates a workbook from scratch. The workbook contains one worksheet with a simple invertory list.
66

77
---
8-
[Back to overview](/SampleApp.Core/Readme.md)
8+
[Back to overview](/Readme.md)

Diff for: 03-UsingAsyncAwait/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ This sample demonstrates how to load and save data using the async await pattern
44
### [UsingAsyncAwait.cs](UsingAsyncAwaitSample.cs)
55

66
---
7-
[Back to overview](/SampleApp.Core/Readme.md)
7+
[Back to overview](/Readme.md)

Diff for: 03-UsingAsyncAwait/UsingAsyncAwaitSample.cs

+11-31
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,15 @@
1-
/*******************************************************************************
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* All rights reserved.
5-
*
6-
* EPPlus is an Open Source project provided under the
7-
* GNU General Public License (GPL) as published by the
8-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9-
*
10-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
11-
* See https://github.com/JanKallman/EPPlus for details.
12-
*
13-
*
14-
*
15-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
16-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
17-
*
18-
* The code for this project may be used and redistributed by any means PROVIDING it is
19-
* not sold for profit without the author's written consent, and providing that this notice
20-
* and the author's name and all copyright notices remain intact.
21-
*
22-
* All code and executables are provided "as is" with no warranty either express or implied.
23-
* The author accepts no liability for any damage or loss of business that this product may cause.
24-
*
25-
*
26-
* Code change notes:
27-
*
28-
* Author Change Date
29-
*******************************************************************************
30-
* Jan Källman Added 10-SEP-2009
31-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
326
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
3313
using System;
3414
using OfficeOpenXml;
3515
using System.Data.SqlClient;

Diff for: 04-LoadingDataWithTables/LoadingDataWithTablesSample.cs

+12-28
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,15 @@
1-
/*
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
5-
* See https://github.com/JanKallman/EPPlus for details.
6-
*
7-
* All rights reserved.
8-
*
9-
* EPPlus is an Open Source project provided under the
10-
* GNU General Public License (GPL) as published by the
11-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
12-
*
13-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
14-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
15-
*
16-
* The code for this project may be used and redistributed by any means PROVIDING it is
17-
* not sold for profit without the author's written consent, and providing that this notice
18-
* and the author's name and all copyright notices remain intact.
19-
*
20-
* All code and executables are provided "as is" with no warranty either express or implied.
21-
* The author accepts no liability for any damage or loss of business that this product may cause.
22-
*
23-
* Code change notes:
24-
*
25-
* Author Change Date
26-
* ******************************************************************************
27-
* Jan Källman Added 2011-05-03
28-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
2913
using System;
3014
using System.Collections.Generic;
3115
using System.Linq;

Diff for: 04-LoadingDataWithTables/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Demonstrates how to load data into a worksheet from the following object types:
99
- DataTable
1010

1111
---
12-
[Back to overview](/SampleApp.Core/Readme.md)
12+
[Back to overview](/Readme.md)

Diff for: 05-ImportAndExportCsvFiles/ImportAndExportCsvFilesSample.cs

+12-31
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,15 @@
1-
/*******************************************************************************
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* All rights reserved.
5-
*
6-
* EPPlus is an Open Source project provided under the
7-
* GNU General Public License (GPL) as published by the
8-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9-
*
10-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
11-
* See https://github.com/JanKallman/EPPlus for details.
12-
*
13-
*
14-
*
15-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
16-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
17-
*
18-
* The code for this project may be used and redistributed by any means PROVIDING it is
19-
* not sold for profit without the author's written consent, and providing that this notice
20-
* and the author's name and all copyright notices remain intact.
21-
*
22-
* All code and executables are provided "as is" with no warranty either express or implied.
23-
* The author accepts no liability for any damage or loss of business that this product may cause.
24-
*
25-
*
26-
* Code change notes:
27-
*
28-
* Author Change Date
29-
*******************************************************************************
30-
* Jan Källman Added 28 Oct 2010
31-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
3213
using System;
3314
using System.Collections.Generic;
3415
using System.Linq;

Diff for: 05-ImportAndExportCsvFiles/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Loads two CSV files into tables and adds a chart to each sheet.
55
Loads data from the two CSV files (Sample9-1.txt and Sample9_2.txt)
66
Exports a range to the csv 09-ExportedFromEPPlus.csv using the SaveToTextAsync method
77
---
8-
[Back to overview](/SampleApp.Core/Readme.md)
8+
[Back to overview](/Readme.md)

Diff for: 06-FormulaCalculation/AddFormulaFunction.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
using System;
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
13+
using System;
214
using System.Collections.Generic;
315
using System.IO;
416
using System.Linq;

Diff for: 06-FormulaCalculation/BuildAndCalculateWorkbook.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
using System;
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
13+
using System;
214
using System.Collections.Generic;
315
using System.IO;
416
using System.Linq;

Diff for: 06-FormulaCalculation/CalculateExistingWorkbook.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
using OfficeOpenXml;
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
13+
using OfficeOpenXml;
214
using System;
315
using System.Collections.Generic;
416
using System.IO;

Diff for: 06-FormulaCalculation/CalculateFormulasSample.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
using System;
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
13+
using System;
214
using System.Collections.Generic;
315
using System.Text;
416

Diff for: 06-FormulaCalculation/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ This sample demonstrates how to create a workbook with EPPlus, add formulas to i
1414
This sample demonstrates how to add custom functions to the EPPlus formula engine.
1515

1616
---
17-
[Back to overview](/SampleApp.Core/Readme.md)
17+
[Back to overview](/Readme.md)

Diff for: 07-OpenWorkbookAddDataAndChart/OpenWorkbookAndAddDataAndChart.cs

+12-31
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,15 @@
1-
/*******************************************************************************
2-
* You may amend and distribute as you like, but don't remove this header!
3-
*
4-
* All rights reserved.
5-
*
6-
* EPPlus is an Open Source project provided under the
7-
* GNU General Public License (GPL) as published by the
8-
* Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9-
*
10-
* EPPlus provides server-side generation of Excel 2007 spreadsheets.
11-
* See https://github.com/JanKallman/EPPlus for details.
12-
*
13-
*
14-
*
15-
* The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php
16-
* If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
17-
*
18-
* The code for this project may be used and redistributed by any means PROVIDING it is
19-
* not sold for profit without the author's written consent, and providing that this notice
20-
* and the author's name and all copyright notices remain intact.
21-
*
22-
* All code and executables are provided "as is" with no warranty either express or implied.
23-
* The author accepts no liability for any damage or loss of business that this product may cause.
24-
*
25-
*
26-
* Code change notes:
27-
*
28-
* Author Change Date
29-
*******************************************************************************
30-
* Jan Källman Added 07-JAN-2010
31-
*******************************************************************************/
1+
/*************************************************************************************************
2+
Copyright (C) EPPlus Software AB.
3+
This software is licensed under PolyForm Noncommercial License 1.0.0
4+
and may only be used for noncommercial purposes
5+
https://polyformproject.org/licenses/noncommercial/1.0.0/
6+
7+
A commercial license to use this software can be purchased at https://epplussoftware.com
8+
*************************************************************************************************
9+
Date Author Change
10+
*************************************************************************************************
11+
01/24/2020 Jan Källman & Mats Alm Initial release EPPlus 5
12+
*************************************************************************************************/
3213
using System;
3314
using System.Collections.Generic;
3415
using System.Text;

Diff for: 07-OpenWorkbookAddDataAndChart/Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Open an existing workbook with EPPlus, add data and charts.
55
Creates a workbook from scratch. The workbook contains one worksheet with a simple invertory list.
66

77
---
8-
[Back to overview](/SampleApp.Core/Readme.md)
8+
[Back to overview](/Readme.md)

0 commit comments

Comments
 (0)