Skip to content

Commit 415bca5

Browse files
committed
Modified source to SPDX
1 parent 60b3629 commit 415bca5

38 files changed

+6901
-5961
lines changed

CC-BY-4.0.html

+441
Large diffs are not rendered by default.

CC-BY-4.0.md

+318
Large diffs are not rendered by default.

CC-BY-4.0.txt

+318
Large diffs are not rendered by default.

CC-BY-NC-4.0.html

+493
Large diffs are not rendered by default.

CC-BY-NC-4.0.md

+352
Large diffs are not rendered by default.

CC-BY-NC-4.0.txt

+352
Large diffs are not rendered by default.

CC-BY-NC-ND-4.0.html

+480
Large diffs are not rendered by default.

CC-BY-NC-ND-4.0.md

+350
Large diffs are not rendered by default.

CC-BY-NC-ND-4.0.txt

+350
Large diffs are not rendered by default.

CC-BY-NC-SA-4.0.html

+495
Large diffs are not rendered by default.

CC-BY-NC-SA-4.0.md

+353
Large diffs are not rendered by default.

CC-BY-NC-SA-4.0.txt

+353
Large diffs are not rendered by default.

CC-BY-ND-4.0.html

+432
Large diffs are not rendered by default.

CC-BY-ND-4.0.md

+314
Large diffs are not rendered by default.

CC-BY-ND-4.0.txt

+314
Large diffs are not rendered by default.

CC-BY-SA-4.0.html

+479
Large diffs are not rendered by default.

CC-BY-SA-4.0.md

+343
Large diffs are not rendered by default.

CC-BY-SA-4.0.txt

+343
Large diffs are not rendered by default.

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
| Public License | `html` | `markdown_strict` | `plain` |
2-
| :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------: | :-----------------------------: | :--------------------------------: |
3-
| [![Creative Commons Attribution 4.0 International Public License](https://licensebuttons.net/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/legalcode) | [`by.html`](html/by.html) | [`by.md`](md/by.md) | [`by.txt`](txt/by.txt) |
4-
| [![Creative Commons Attribution-ShareAlike 4.0 International Public License](https://licensebuttons.net/l/by-sa/4.0/88x31.png)](https://creativecommons.org/licenses/by-sa/4.0/legalcode) | [`by-sa.html`](html/by-sa.html) | [`by-sa.md`](md/by-sa.md) | [`by-sa.txt`](txt/by-sa.txt) |
5-
| [![Creative Commons Attribution-NoDerivatives 4.0 International Public License](https://licensebuttons.net/l/by-nd/4.0/88x31.png)](https://creativecommons.org/licenses/by-nd/4.0/legalcode) | [`by-nd.html`](html/by-nd.html) | [`by-nd.md`](md/by-nd.md) | [`by-nd.txt`](txt/by-nd.txt) |
6-
| [![Creative Commons Attribution-NonCommercial 4.0 International Public License](https://licensebuttons.net/l/by-nc/4.0/88x31.png)](https://creativecommons.org/licenses/by-nc/4.0/legalcode) | [`by-nc.html`](html/by-nc.html) | [`by-nc.md`](md/by-nc.md) | [`by-nc.txt`](txt/by-nc.txt) |
7-
| [![Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License](https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) | [`by-nc-sa.html`](html/by-nc-sa.html) | [`by-nc-sa.md`](md/by-nc-sa.md) | [`by-nc-sa.txt`](txt/by-nc-sa.txt) |
8-
| [![Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License](https://licensebuttons.net/l/by-nc-nd/4.0/88x31.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode) | [`by-nc-nd.html`](html/by-nc-nd.html) | [`by-nc-nd.md`](md/by-nc-nd.md) | [`by-nc-nd.txt`](txt/by-nc-nd.txt) |
1+
| Full name | Identifier |
2+
| :----------------------------------------------------------------------------------------------------------------------------: | :---------------: |
3+
| [Creative Commons Attribution 4.0 International](https://spdx.org/licenses/CC-BY-4.0.html) | `CC-BY-4.0` |
4+
| [Creative Commons Attribution Non Commercial 4.0 International](https://spdx.org/licenses/CC-BY-NC-4.0.html) | `CC-BY-NC-4.0` |
5+
| [Creative Commons Attribution Non Commercial No Derivatives 4.0 International](https://spdx.org/licenses/CC-BY-NC-ND-4.0.html) | `CC-BY-NC-ND-4.0` |
6+
| [Creative Commons Attribution Non Commercial Share Alike 4.0 International](https://spdx.org/licenses/CC-BY-NC-SA-4.0.html) | `CC-BY-NC-SA-4.0` |
7+
| [Creative Commons Attribution No Derivatives 4.0 International](https://spdx.org/licenses/CC-BY-ND-4.0.html) | `CC-BY-ND-4.0` |
8+
| [Creative Commons Attribution Share Alike 4.0 International](https://spdx.org/licenses/CC-BY-SA-4.0.html) | `CC-BY-SA-4.0` |

cc.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
declare -a list=(
2+
"CC-BY-4.0"
3+
"CC-BY-NC-4.0"
4+
"CC-BY-NC-ND-4.0"
5+
"CC-BY-NC-SA-4.0"
6+
"CC-BY-ND-4.0"
7+
"CC-BY-SA-4.0")
8+
9+
for identifier in ${list[@]}; do
10+
pandoc -f html -t html https://spdx.org/licenses/$identifier.html -o $identifier.html
11+
pandoc -f html -t markdown_strict https://spdx.org/licenses/$identifier.html -o $identifier.md
12+
pandoc -f html -t plain https://spdx.org/licenses/$identifier.html -o $identifier.txt
13+
done

html/by-nc-nd.html

-398
This file was deleted.

html/by-nc-sa.html

-450
This file was deleted.

html/by-nc.html

-407
This file was deleted.

html/by-nd.html

-385
This file was deleted.

html/by-sa.html

-435
This file was deleted.

html/by.html

-391
This file was deleted.

md/by-nc-nd.md

-304
This file was deleted.

md/by-nc-sa.md

-339
This file was deleted.

md/by-nc.md

-308
This file was deleted.

md/by-nd.md

-293
This file was deleted.

md/by-sa.md

-328
This file was deleted.

md/by.md

-297
This file was deleted.

txt/by-nc-nd.txt

-263
This file was deleted.

0 commit comments

Comments
 (0)