From 532110abbc01cf3f225c47ed6219d9434c48808c Mon Sep 17 00:00:00 2001 From: sam <289623783@qq.com> Date: Tue, 26 Dec 2017 19:11:53 +0800 Subject: [PATCH] fix: fix 404 page url (#1881) --- docs/source/en/advanced/cluster-client.md | 1 + docs/source/en/advanced/framework.md | 1 + docs/source/en/advanced/loader.md | 1 + docs/source/en/advanced/plugin.md | 1 + docs/source/en/advanced/view-plugin.md | 1 + docs/source/en/basics/objects.md | 2 +- docs/source/en/basics/plugin.md | 1 + docs/source/en/core/development.md | 1 + docs/source/en/index.md | 2 ++ docs/source/en/intro/quickstart.md | 2 +- docs/source/en/migration.md | 1 + docs/source/en/resource.md | 1 + docs/source/en/style-guide.md | 1 + docs/source/en/tutorials/passport.md | 1 + docs/source/languages/zh-cn.yml | 2 +- 15 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 docs/source/en/advanced/cluster-client.md create mode 100644 docs/source/en/advanced/framework.md create mode 100644 docs/source/en/advanced/loader.md create mode 100644 docs/source/en/advanced/plugin.md create mode 100644 docs/source/en/advanced/view-plugin.md create mode 100644 docs/source/en/basics/plugin.md create mode 100644 docs/source/en/core/development.md create mode 100644 docs/source/en/index.md create mode 100644 docs/source/en/migration.md create mode 100644 docs/source/en/resource.md create mode 100644 docs/source/en/style-guide.md create mode 100644 docs/source/en/tutorials/passport.md diff --git a/docs/source/en/advanced/cluster-client.md b/docs/source/en/advanced/cluster-client.md new file mode 100644 index 0000000000..bc6e36de42 --- /dev/null +++ b/docs/source/en/advanced/cluster-client.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/advanced/cluster-client.html) \ No newline at end of file diff --git a/docs/source/en/advanced/framework.md b/docs/source/en/advanced/framework.md new file mode 100644 index 0000000000..3ee251b08f --- /dev/null +++ b/docs/source/en/advanced/framework.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/advanced/framework.html) \ No newline at end of file diff --git a/docs/source/en/advanced/loader.md b/docs/source/en/advanced/loader.md new file mode 100644 index 0000000000..fcb371439b --- /dev/null +++ b/docs/source/en/advanced/loader.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/advanced/loader.html) \ No newline at end of file diff --git a/docs/source/en/advanced/plugin.md b/docs/source/en/advanced/plugin.md new file mode 100644 index 0000000000..a9ed48c6a2 --- /dev/null +++ b/docs/source/en/advanced/plugin.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/advanced/plugin.html) \ No newline at end of file diff --git a/docs/source/en/advanced/view-plugin.md b/docs/source/en/advanced/view-plugin.md new file mode 100644 index 0000000000..9957735520 --- /dev/null +++ b/docs/source/en/advanced/view-plugin.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/advanced/view-plugin.html) \ No newline at end of file diff --git a/docs/source/en/basics/objects.md b/docs/source/en/basics/objects.md index b89df56721..6fcd37610e 100644 --- a/docs/source/en/basics/objects.md +++ b/docs/source/en/basics/objects.md @@ -212,7 +212,7 @@ In addition, Helper instances can also be accessed in template, for example, we ### Custom helper method -In application development, we may often customize some helper methods, such as `formatUser` in the above example, we can use [framework extension](./Extend.md#helper) to customize helper method. +In application development, we may often customize some helper methods, such as `formatUser` in the above example, we can use [framework extension](./extend.md#helper) to customize helper method. ```js // app/extend/helper.js diff --git a/docs/source/en/basics/plugin.md b/docs/source/en/basics/plugin.md new file mode 100644 index 0000000000..e466615c30 --- /dev/null +++ b/docs/source/en/basics/plugin.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/basics/plugin.html) \ No newline at end of file diff --git a/docs/source/en/core/development.md b/docs/source/en/core/development.md new file mode 100644 index 0000000000..eed27d22b6 --- /dev/null +++ b/docs/source/en/core/development.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/core/development.html) \ No newline at end of file diff --git a/docs/source/en/index.md b/docs/source/en/index.md new file mode 100644 index 0000000000..b1a0f0cf00 --- /dev/null +++ b/docs/source/en/index.md @@ -0,0 +1,2 @@ +layout: index +--- diff --git a/docs/source/en/intro/quickstart.md b/docs/source/en/intro/quickstart.md index 027637422c..b1c6fe4f75 100644 --- a/docs/source/en/intro/quickstart.md +++ b/docs/source/en/intro/quickstart.md @@ -474,7 +474,7 @@ Where to go from here? read our documentation to better understand the framework - Egg provides a powerful mechanism for extending features. See [Plugin](../basics/plugin.md). - Egg framework allows small or large teams to work together as fast as possible under the well-documented conventions and coding best practices. In addition, the teams can build up logics on top of the framework to better suit their special needs. See more on [Frameworks].(../advanced/framework.md). - Egg framework provides code reusabilities and modularities. See details at [Progressive](../tutorials/progressive.md). -- Egg framework enables developers to write painless unit testing with many plugins and community-powered toolings. The team should give it a try by using Egg unit testing without worrying about setting up the testing tooling but writing the testing logics. See [Unit Testing](../core/test.md). +- Egg framework enables developers to write painless unit testing with many plugins and community-powered toolings. The team should give it a try by using Egg unit testing without worrying about setting up the testing tooling but writing the testing logics. See [Unit Testing](../core/unittest.md). [Node.js]: http://nodejs.org [egg-init]: https://github.com/eggjs/egg-init diff --git a/docs/source/en/migration.md b/docs/source/en/migration.md new file mode 100644 index 0000000000..9dcd73ccde --- /dev/null +++ b/docs/source/en/migration.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/migration.html) \ No newline at end of file diff --git a/docs/source/en/resource.md b/docs/source/en/resource.md new file mode 100644 index 0000000000..aabe2a34bd --- /dev/null +++ b/docs/source/en/resource.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/resource.html) \ No newline at end of file diff --git a/docs/source/en/style-guide.md b/docs/source/en/style-guide.md new file mode 100644 index 0000000000..ec67d65735 --- /dev/null +++ b/docs/source/en/style-guide.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/style-guide.html) \ No newline at end of file diff --git a/docs/source/en/tutorials/passport.md b/docs/source/en/tutorials/passport.md new file mode 100644 index 0000000000..0fab88450d --- /dev/null +++ b/docs/source/en/tutorials/passport.md @@ -0,0 +1 @@ +this document is still waiting for translation, see [Chinese Version](/zh-cn/tutorials/passport.html) \ No newline at end of file diff --git a/docs/source/languages/zh-cn.yml b/docs/source/languages/zh-cn.yml index a3fa45b530..37068baaf5 100644 --- a/docs/source/languages/zh-cn.yml +++ b/docs/source/languages/zh-cn.yml @@ -17,7 +17,7 @@ index: readmore: "查看更多" header: - translations: "切换语言" + translations: "Translations" guide_toc: Intro: 新手指南