Skip to content

Commit e947d20

Browse files
committed
chore: license format
1 parent d43eed5 commit e947d20

File tree

4 files changed

+35
-16
lines changed

4 files changed

+35
-16
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@
2323
[submodule "repo/Introduction-to-Addon-Development-in-Blender-Web"]
2424
path = repo/Introduction-to-Addon-Development-in-Blender-Web
2525
url = https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web
26+
[submodule "repo/Go-SCP-jaJP"]
27+
path = repo/Go-SCP-jaJP
28+
url = https://github.com/techtouch-inc/Go-SCP-jaJP.git

README.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,28 +113,38 @@ module.exports.get = function get(ext = ".*") {};
113113
それぞれの文書のライセンスに基づき再配布されています。
114114

115115
- [js-primer](https://github.com/asciidwango/js-primer)
116-
- License: <https://github.com/asciidwango/js-primer/blob/master/LICENSE>
116+
- License: CC BY-NC <https://github.com/asciidwango/js-primer/blob/master/LICENSE>
117117
- [JavaScript-Plugin-Architecture](https://github.com/azu/JavaScript-Plugin-Architecture)
118-
- License: <https://github.com/azu/JavaScript-Plugin-Architecture#license>
118+
- License: CC BY-NC <https://github.com/azu/JavaScript-Plugin-Architecture#license>
119119
- [Introduction-to-Addon-Development-in-Blender-Web](https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web)
120-
- License: <https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/blob/master/LICENSE>
120+
- License: CC BY <https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/blob/master/LICENSE>
121121
- [The-Little-Book-on-CoffeeScript](https://github.com/minghai/library/tree/gh-pages)
122-
- License: <https://github.com/minghai/library/tree/gh-pages>
122+
- License: MIT <https://github.com/minghai/library/blob/gh-pages/coffeescript/LICENSE>
123123
- [progit](https://github.com/progit/progit)
124-
- License: <https://git-scm.com/book/en/v2>
124+
- License: CC BY-NC-SA 3.0 <https://git-scm.com/book/en/v2>
125125
- [what-is-maven](https://github.com/KengoTODA/what-is-maven)
126-
- License: <https://github.com/KengoTODA/what-is-maven/blob/main/preface/README.md>
126+
- License: CC BY-NC 4.0 <https://github.com/KengoTODA/what-is-maven/blob/main/preface/README.md>
127127
- [Hatena-Textbook](https://github.com/hatena/Hatena-Textbook)
128-
- License: <https://github.com/hatena/Hatena-Textbook#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9>
128+
- License: CC BY-NC-SA 2.0 <https://github.com/hatena/Hatena-Textbook#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9>
129129
- [build-web-application-with-golang](https://github.com/astaxie/build-web-application-with-golang)
130-
- License: <https://github.com/astaxie/build-web-application-with-golang/blob/master/LICENSE.md>
130+
- License: BSD 3-Clause <https://github.com/astaxie/build-web-application-with-golang/blob/master/LICENSE.md>
131+
- [Go-SCP-jaJP](https://github.com/techtouch-inc/Go-SCP-jaJP)
132+
- License: CC BY-SA 4.0 <https://github.com/techtouch-inc/Go-SCP-jaJP#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9>
131133

132134
## 文書の追加方法
133135

134136
1. `git submodule add <追加するGit URL> repo/<name>`
135137
2. `index.js``References`に定義を追加する
136138
3. `build.js``copyTask`に文書のみをコピーする処理を追加する
137139

140+
## 文書の更新方法
141+
142+
次のコマンドでsubmoduleを更新できる。
143+
144+
1. `npm run update-refs`
145+
146+
文書の構造が変わっていないかを確認し、build.jsを修正する
147+
138148
## Changelog
139149

140150
See [Releases page](https://github.com/textlint-ja/technological-book-corpus-ja/releases).

index.js

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,42 +10,47 @@ const References = {
1010
"js-primer": {
1111
name: "js-primer",
1212
url: "https://github.com/asciidwango/js-primer",
13-
license: "https://github.com/asciidwango/js-primer/blob/master/LICENSE"
13+
license: "CC BY-NC <https://github.com/asciidwango/js-primer/blob/master/LICENSE>"
1414
},
1515
"JavaScript-Plugin-Architecture": {
1616
name: "JavaScript-Plugin-Architecture",
1717
url: "https://github.com/azu/JavaScript-Plugin-Architecture",
18-
license: "https://github.com/azu/JavaScript-Plugin-Architecture#license"
18+
license: "CC BY-NC <https://github.com/azu/JavaScript-Plugin-Architecture#license>"
1919
},
2020
"Introduction-to-Addon-Development-in-Blender-Web": {
2121
name: "Introduction-to-Addon-Development-in-Blender-Web",
2222
url: "https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web",
23-
license: "https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/blob/master/LICENSE"
23+
license: "CC BY <https://github.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/blob/master/LICENSE>"
2424
},
2525
"The-Little-Book-on-CoffeeScript": {
2626
name: "The-Little-Book-on-CoffeeScript",
2727
url: "https://github.com/minghai/library/tree/gh-pages",
28-
license: "https://github.com/minghai/library/tree/gh-pages"
28+
license: "MIT <https://github.com/minghai/library/blob/gh-pages/coffeescript/LICENSE>"
2929
},
3030
"progit": {
3131
name: "progit",
3232
url: "https://github.com/progit/progit",
33-
license: "https://git-scm.com/book/en/v2"
33+
license: "CC BY-NC-SA 3.0 <https://git-scm.com/book/en/v2>"
3434
},
3535
"what-is-maven": {
3636
name: "what-is-maven",
3737
url: "https://github.com/KengoTODA/what-is-maven",
38-
license: "https://github.com/KengoTODA/what-is-maven/blob/main/preface/README.md"
38+
license: "CC BY-NC 4.0 <https://github.com/KengoTODA/what-is-maven/blob/main/preface/README.md>"
3939
},
4040
"Hatena-Textbook": {
4141
name: "Hatena-Textbook",
4242
url: "https://github.com/hatena/Hatena-Textbook",
43-
license: "https://github.com/hatena/Hatena-Textbook#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9"
43+
license: "CC BY-NC-SA 2.0 <https://github.com/hatena/Hatena-Textbook#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9>"
4444
},
4545
"build-web-application-with-golang": {
4646
name: "build-web-application-with-golang",
4747
url: "https://github.com/astaxie/build-web-application-with-golang",
48-
license: "https://github.com/astaxie/build-web-application-with-golang/blob/master/LICENSE.md"
48+
license: "BSD 3-Clause <https://github.com/astaxie/build-web-application-with-golang/blob/master/LICENSE.md>"
49+
},
50+
"Go-SCP-jaJP": {
51+
name: "Go-SCP-jaJP",
52+
url: "https://github.com/techtouch-inc/Go-SCP-jaJP",
53+
license: "CC BY-SA 4.0 <https://github.com/techtouch-inc/Go-SCP-jaJP#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9>"
4954
}
5055
};
5156

repo/Go-SCP-jaJP

Submodule Go-SCP-jaJP added at ca3b5d8

0 commit comments

Comments
 (0)