File tree Expand file tree Collapse file tree 8 files changed +35
-16
lines changed Expand file tree Collapse file tree 8 files changed +35
-16
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ node_modules/
6
6
public /
7
7
.deploy * /
8
8
src /_drafts
9
+ .avoscloud /
Original file line number Diff line number Diff line change 1
- ## vue.js 2.0 中文文档 http ://vuefe.cn
1
+ ## vue.js 2.0 中文文档 https ://vuefe.cn
2
2
3
3
> 欢迎大家一起参与校对工作
4
4
5
5
## 镜像站点
6
6
7
7
### LeanCloud https://vuefe.leanapp.cn/
8
- ### 阿里云 http://vue.70data.net/
9
8
10
9
11
10
## 贡献要求
12
11
13
12
### 参与:
14
13
15
14
- 加群参与 ` 427447379 `
16
- - 发布网址 [ vuefe.cn] ( http ://vuefe.cn/ )
17
- - 翻译仓库 [ 中文翻译分支 2.0-cn] ( https://github.com/vuefe/vuejs.org )
18
- - [ 基础指引] ( https://github.com/vuefe/vuejs.org /issues/25 )
15
+ - 发布网址 [ vuefe.cn] ( https ://vuefe.cn)
16
+ - 翻译仓库 [ 中文翻译分支 2.0-cn] ( https://github.com/vuefe/vuefe.github.io )
17
+ - [ 基础指引] ( https://github.com/vuefe/vuefe.github.io /issues/25 )
19
18
- 如果你看到错别字、漏译、错译,请直接提交 pr ([ 帮助] ( https://help.github.com/articles/using-pull-requests/ ) )。
20
19
- 如果你看到网站问题,或者创建一个 issue ,或者直接提交 pr 。
21
20
- 如果你对已有翻译有异议,建议创建一个 issue 讨论。
70
69
```
71
70
72
71
- 完成后,打钩表示完成,并附带发起的合并请求链接
73
- - [x] 我校对 + ` 文档序号 ` + https://github.com/vuefe/vuejs.org /pull/65 (发起的合并请求链接)
72
+ - [x] 我校对 + ` 文档序号 ` + https://github.com/vuefe/vuefe.github.io /pull/65 (发起的合并请求链接)
74
73
75
74
- markdown语法 - 示例
76
75
77
76
``` markdown
78
- - [x] 我xx + `1 ` https://github.com/vuefe/vuejs.org /pull/65 (发起的合并请求链接)
77
+ - [x] 我xx + `1 ` https://github.com/vuefe/vuefe.github.io /pull/65 (发起的合并请求链接)
79
78
```
80
79
81
80
- 支持多人协作翻译。已经认领过的翻译,如果你觉着他/她翻译的太慢,可以再次认领,加速翻译。
97
96
校对中 <br />
98
97
99
98
### webpack2
100
- 翻译中 [ webpack.js.org] ( https://github.com/vuefe/webpack.js.org ) <br />
99
+ 翻译中 [ webpack.js.org] ( https://github.com/vuefe/webpack2 ) <br />
101
100
102
101
103
102
104
103
105
104
## 参与翻译&校对成员名单
106
- https://github.com/vuefe/vuejs.org /issues/192
105
+ https://github.com/vuefe/vuefe.github.io /issues/192
107
106
108
107
### 感谢所有参与翻译的朋友们!
Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ markdown:
97
97
# # Docs: http://zespia.tw/hexo/docs/deployment.html
98
98
deploy :
99
99
type : git
100
- repository : git@ github.com: vuefe/vuefe.github.io.git
101
- branch : master
100
+ repository : https:// github.com/ vuefe/vuefe.github.io.git
101
+ branch : gh-pages
102
102
103
103
feed :
104
104
type : atom
Original file line number Diff line number Diff line change
1
+ var express = require ( 'express' ) ;
2
+ var AV = require ( 'leanengine' ) ;
3
+ var path = require ( 'path' ) ;
4
+ var app = express ( ) ;
5
+
6
+ var port = process . env . LEANCLOUD_APP_PORT || 3000 ;
7
+
8
+ AV . init ( {
9
+ appId : process . env . LEANCLOUD_APP_ID ,
10
+ appKey : process . env . LEANCLOUD_APP_KEY ,
11
+ masterKey : process . env . LEANCLOUD_APP_MASTER_KEY
12
+ } ) ;
13
+ app . enable ( 'trust proxy' ) ;
14
+ app . use ( AV . express ( ) ) ;
15
+ app . use ( AV . Cloud . HttpsRedirect ( ) ) ;
16
+ app . use ( express . static ( __dirname + '/public' ) ) ;
17
+ app . get ( '/' , function ( req , res ) {
18
+ res . sendFile ( path . resolve ( './public/index.html' ) )
19
+ } ) ;
20
+
21
+ app . listen ( port ) ;
Original file line number Diff line number Diff line change 11
11
</div ><div class =" right" >
12
12
<h2 class =" vue" >Vue.js 2.0 中文</h2 >
13
13
<h1 >
14
- 先进的 <br >JavaScript 框架
14
+ 渐进式 <br >JavaScript 框架
15
15
</h1 >
16
16
<p >
17
17
<a class =" button" href =" /guide/" >起步</a >
18
18
<a class =" button white" href =" https://github.com/vuejs/vue" target =" _blank" >GITHUB</a >
19
- <a class =" button white" href =" https://vuefe.leanapp.cn" target =" _blank" >HTTPS站点</a >
20
19
</p >
21
20
</div >
22
21
</div >
Original file line number Diff line number Diff line change 27
27
< % } %>
28
28
<div class =" footer" >
29
29
发现错误?想参与编辑?
30
- <a href =" https://github.com/dingyiming/vuejs.org/tree /2.0-cn/src/<%- page.path.replace(/\.html$/, '.md') %>" target =" _blank" >
30
+ <a href =" https://github.com/vuefe/vuefe.github.io/blob /2.0-cn/src/<%- page.path.replace(/\.html$/, '.md') %>" target =" _blank" >
31
31
在 Github 上编辑此页!
32
32
</a >
33
33
</div >
Original file line number Diff line number Diff line change 1
1
<div id =" contributors" >
2
- <p >共 <span style =" color :#e66 ;font-size :28px ;" v-text =" list.length " ></span > 人参与贡献,排名不分先后,<a href =" https://github.com/vuefe/vuejs.org /issues/192" >如有遗漏,请告知</a ></p >
2
+ <p >共 <span style =" color :#e66 ;font-size :28px ;" v-text =" list.length " ></span > 人参与贡献,排名不分先后,<a href =" https://github.com/vuefe/vuefe.github.io /issues/192" >如有遗漏,请告知</a ></p >
3
3
<ul class =" contributors" >
4
4
<a v-for =" item in list"
5
5
class =" contributor"
Original file line number Diff line number Diff line change 5
5
<li ><a href =" /vuex/" class =" nav-link<%- page.path.match(/vuex/) ? ' current' : '' %>" >vuex</a ></li >
6
6
<li ><a href =" /examples/" class =" nav-link<%- page.path.match(/examples/) ? ' current' : '' %>" >示例</a ></li >
7
7
<li ><a href =" https://webpack2.leanapp.cn" target =" _blank" >webpack</a ></li >
8
- <li ><a href =" https://vuefe.leanapp.cn" target =" _blank" >HTTPS站点</a ></li >
9
8
<li ><a href =" /more/" class =" nav-link<%- page.path.match(/more/) ? ' current' : '' %>" >更多</a ></li >
10
9
<% - partial (' partials/community_dropdown' ) %>
You can’t perform that action at this time.
0 commit comments