Skip to content

Commit 711af03

Browse files
committed
初始化书籍结构
1 parent 72cb556 commit 711af03

File tree

4 files changed

+156
-3
lines changed

4 files changed

+156
-3
lines changed

README.md

+65-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,65 @@
1-
# OnJava8
2-
《On Java 8》中文翻译
1+
## On Java 8
2+
《On Java 8》中文翻译中……
3+
4+
如果你是在GitHub上浏览,可以移步至[GitBook]()[LingCoder.com](http://www.lingcoder.com)中获得更好的阅读体验。
5+
6+
### 快速阅读传送门
7+
8+
- Github快速阅读:[进入目录](https://github.com/lingcoder/OnJava8/SUMMARY.md)
9+
- Gitbook完整阅读:[进入Gitbook](https://github.com/LingCoder)
10+
- 独立博客(实时同步):[LingCoder](https://github.com/LingCoder)
11+
- 其他博客(不定期同步):[博客园](https://github.com/LingCoder)
12+
13+
## 翻译进度
14+
- [ ] 序言
15+
- [ ] 介绍
16+
- [ ] 待续······
17+
18+
19+
## 更新记录
20+
------
21+
- 0.0.1
22+
- 增加了 "XX" 章节结构
23+
- 0.0.2
24+
- 全书目录建立
25+
26+
## 原书作者
27+
<div align="left">
28+
![cover](cover_small.jpg)
29+
</div>
30+
31+
* 作者: Bruce Eckel
32+
* ISBN: 9780981872520
33+
34+
## 贡献者
35+
总顾问+审校:
36+
主译: LingCoder @lingcoder
37+
参译:
38+
39+
## 贡献力量
40+
如果你想对本书做出一些贡献的话
41+
可以帮忙校对,找bug错别字等等
42+
可以提出专业方面的修改建议
43+
可以把一些不尽人意的语句翻译的更好更有趣
44+
对于以上各类建议,请以issue的形式发送,我看到之后会尽快处理
45+
46+
## 如何参与
47+
将本书fork/pull到本地
48+
新建一个分支,然后选择你感觉可以改进和翻译的章节开干
49+
使用MarkDown编辑器,md语法格式进行文档翻译及排版工作
50+
完成之后Pull Request该分支
51+
如没问题的话,我会合并到主分支
52+
如果不太明白md的排版,可以吧翻译好的内容发送给我,我代为排版并提交
53+
如有其它问题,欢迎发送issue,谢谢~
54+
55+
## 开源协议
56+
本书基于GPL v3.0协议开源。
57+
58+
## 联系方式
59+
60+
* Github: [LingCoder](https://github.com/LingCoder)
61+
62+
63+
64+
65+

SUMMARY.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Summary
22

3-
* [前言](README.md)
3+
* [Introduction](README.md)
4+
* [译者](book/00-译者.md)
5+
* [前言](book/01-前言/00-README.md)
6+
* [目标](book/01-前言/00-目标.md)
7+
* [语言设计错误](book/01-前言/01-语言设计错误.md)
8+
* [测试用例](book/01-前言/02-测试用例.md)
9+
* [名词](book/01-前言/03-名词.md)
10+
* [关于Andriod程序员](book/01-前言/04-关于Andriod程序员.md)
11+
* [关于电子版书籍](book/01-前言/05-关于电子版书籍.md)
12+
* [后记](book/01-前言/05-后记.md)
13+
* [鸣谢](book/01-前言/06-鸣谢.md)
14+
* [其他](book/01-前言/07-其他.md)
15+
* [介绍I](book/02-介绍/00-README.md)
16+
* [前提条件](book/02-介绍/01-前提条件.md)
17+
* [JDK文档](book/02-介绍/02-JDK文档.md)
418

book.json

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"title": "《On Java 8》中文版翻译",
3+
"author": "LingCoder",
4+
"description": "这是大神 Bruce Eckel的新书,也被称之为《Think in Java》第五版。",
5+
"language": "zh-hans",
6+
"gitbook": "3.2.3",
7+
"styles": {
8+
"website": "styles/website.css",
9+
"ebook": "styles/ebook.css",
10+
"pdf": "styles/pdf.css",
11+
"mobi": "styles/mobi.css",
12+
"epub": "styles/epub.css"
13+
},
14+
"structure": {
15+
"readme": "book/00-译者.md"
16+
},
17+
"links": {
18+
"sidebar": {
19+
"博客园": "https://www.cnblogs.com/LingCoder/"
20+
}
21+
},
22+
"plugins": [
23+
"-sharing",
24+
"splitter",
25+
"expandable-chapters-small",
26+
"anchors",
27+
"-search",
28+
"search-pro",
29+
"github",
30+
"include-codeblock",
31+
"github-buttons",
32+
"sharing-plus",
33+
"anchor-navigation-ex",
34+
"favicon"
35+
],
36+
"pluginsConfig": {
37+
"github": {
38+
"url": "https://github.com/LingCoder/"
39+
},
40+
"github-buttons": {
41+
"buttons": [{
42+
"user": "lingcoder",
43+
"repo": "onjava8",
44+
"type": "star",
45+
"size": "small",
46+
"count": true
47+
}]
48+
},
49+
"sharing": {
50+
"douban": true,
51+
"facebook": false,
52+
"google": true,
53+
"hatenaBookmark": false,
54+
"instapaper": false,
55+
"line": false,
56+
"linkedin": false,
57+
"messenger": false,
58+
"pocket": false,
59+
"qq": true,
60+
"qzone": true,
61+
"stumbleupon": false,
62+
"twitter": true,
63+
"viber": false,
64+
"vk": false,
65+
"weibo": true,
66+
"whatsapp": false,
67+
"all": [
68+
"google", "facebook", "weibo", "twitter",
69+
"qq", "qzone", "linkedin", "pocket"
70+
]
71+
},
72+
"anchor-navigation-ex": {
73+
"showLevel": false
74+
}
75+
}
76+
}

cover.jpg

115 KB
Loading

0 commit comments

Comments
 (0)