From 930961280f4cd08d26642a7113a3587ca3cfed3f Mon Sep 17 00:00:00 2001 From: Savorboard Date: Sat, 13 Jul 2019 15:05:22 +0800 Subject: [PATCH] Document structure adjustment --- docs/content/index.md | 2 +- docs/content/user-guide/en/cap/license.md | 11 ----------- .../user-guide/en/cap/upgrade-guides.md | 3 --- docs/content/user-guide/zh/cap/license.md | 11 ----------- .../user-guide/zh/cap/upgrade-guides.md | 3 --- docs/mkdocs.yml | 19 ++++++++++++++----- 6 files changed, 15 insertions(+), 34 deletions(-) delete mode 100644 docs/content/user-guide/en/cap/license.md delete mode 100644 docs/content/user-guide/en/cap/upgrade-guides.md delete mode 100644 docs/content/user-guide/zh/cap/license.md delete mode 100644 docs/content/user-guide/zh/cap/upgrade-guides.md diff --git a/docs/content/index.md b/docs/content/index.md index 082163a..cb90389 100644 --- a/docs/content/index.md +++ b/docs/content/index.md @@ -29,4 +29,4 @@ If you have any question or problems, please report them on the CAP repository: ## License -CAP is licensed under the [MIT license](https://github.com/dotnetcore/CAP/blob/master/LICENSE.txt). +CAP is licensed under the [MIT license](about/license.md). diff --git a/docs/content/user-guide/en/cap/license.md b/docs/content/user-guide/en/cap/license.md deleted file mode 100644 index 30839f3..0000000 --- a/docs/content/user-guide/en/cap/license.md +++ /dev/null @@ -1,11 +0,0 @@ -# License - -**MIT License** - -Copyright © 2016 - 2019 Savorboard - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/content/user-guide/en/cap/upgrade-guides.md b/docs/content/user-guide/en/cap/upgrade-guides.md deleted file mode 100644 index c873fc6..0000000 --- a/docs/content/user-guide/en/cap/upgrade-guides.md +++ /dev/null @@ -1,3 +0,0 @@ -# 升级指导 - -请参阅 Github Release 页面: [https://github.com/dotnetcore/CAP/releases](https://github.com/dotnetcore/CAP/releases) \ No newline at end of file diff --git a/docs/content/user-guide/zh/cap/license.md b/docs/content/user-guide/zh/cap/license.md deleted file mode 100644 index 30839f3..0000000 --- a/docs/content/user-guide/zh/cap/license.md +++ /dev/null @@ -1,11 +0,0 @@ -# License - -**MIT License** - -Copyright © 2016 - 2019 Savorboard - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/docs/content/user-guide/zh/cap/upgrade-guides.md b/docs/content/user-guide/zh/cap/upgrade-guides.md deleted file mode 100644 index c873fc6..0000000 --- a/docs/content/user-guide/zh/cap/upgrade-guides.md +++ /dev/null @@ -1,3 +0,0 @@ -# 升级指导 - -请参阅 Github Release 页面: [https://github.com/dotnetcore/CAP/releases](https://github.com/dotnetcore/CAP/releases) \ No newline at end of file diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 2a75745..a3efd72 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -85,8 +85,6 @@ nav: - Serialization: user-guide/en/cap/serialization.md - Transactions: user-guide/en/cap/transactions.md - Idempotence: user-guide/en/cap/idempotence.md - - Upgrade Guides: user-guide/en/cap/upgrade-guides.md - - License: user-guide/en/cap/license.md - Transports: - General: user-guide/en/transports/general.md - RabbitMQ: user-guide/en/transports/rabbitmq.md @@ -100,6 +98,9 @@ nav: - PostgreSql: user-guide/en/persistent/postgresql.md - MongoDB: user-guide/en/persistent/mongodb.md - In-Memory: user-guide/en/persistent/in-memory-storage.md + - Monitoring: + - Dashboard: user-guide/en/monitoring/dashboard.md + - Diagnostics: user-guide/en/monitoring/diagnostics.md - Samples: - Github: user-guide/en/samples/github.md - eShopOnContainers: user-guide/en/samples/eshoponcontainers.md @@ -115,9 +116,7 @@ nav: - Sagas: user-guide/zh/cap/sagas.md - 序列化: user-guide/zh/cap/serialization.md - 传输: user-guide/zh/cap/transactions.md - - 幂等性: user-guide/zh/cap/idempotence.md - - 升级指导: user-guide/zh/cap/upgrade-guides.md - - License: user-guide/zh/cap/license.md + - 幂等性: user-guide/zh/cap/idempotence.md - 传输: - 简介: user-guide/zh/transports/general.md - RabbitMQ: user-guide/zh/transports/rabbitmq.md @@ -131,7 +130,17 @@ nav: - PostgreSql: user-guide/zh/persistent/postgresql.md - MongoDB: user-guide/zh/persistent/mongodb.md - In-Memory: user-guide/zh/persistent/in-memory-storage.md + - 监控: + - Consul: user-guide/zh/monitoring/consul.md + - Dashboard: user-guide/zh/monitoring/dashboard.md + - Diagnostics: user-guide/zh/monitoring/diagnostics.md + - 健康检查: user-guide/zh/monitoring/health-checks.md + - Metrics: user-guide/zh/monitoring/metrics.md - 示例: - Github: user-guide/zh/samples/github.md - eShopOnContainers: user-guide/zh/samples/eshoponcontainers.md - FAQ: user-guide/zh/samples/faq.md + - About: + - Contact Us: about/contact-us.md + - Release Notes: about/release-notes.md + - License: about/license.md