From d52279bd5813cfd8b0e6630993a5af66b11c265a Mon Sep 17 00:00:00 2001 From: maliming Date: Wed, 26 Apr 2023 09:29:02 +0800 Subject: [PATCH] Change `Identity Server` to `Auth Server`. --- docs/cs/CLI.md | 4 ++-- docs/en/CLI-New-Command-Samples.md | 10 +++++----- docs/en/CLI.md | 8 ++++---- docs/en/Entity-Framework-Core-Other-DBMS.md | 2 +- docs/en/Getting-Started-Create-Solution.md | 2 +- docs/en/Themes/LeptonXLite/Blazor.md | 2 +- docs/zh-Hans/CLI-New-Command-Samples.md | 10 +++++----- docs/zh-Hans/CLI.md | 6 +++--- docs/zh-Hans/Getting-Started-Create-Solution.md | 2 +- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/cs/CLI.md b/docs/cs/CLI.md index 7782b29a91..f77c3ad969 100644 --- a/docs/cs/CLI.md +++ b/docs/cs/CLI.md @@ -45,9 +45,9 @@ abp new Acme.BookStore * `mvc`: ASP.NET Core MVC. Pro tuto šablonu jsou dostupné dodatečné možnosti: * `--tiered`: Vytvoří stupňovité řešení, kde jsou vrstvy Web a Http API fyzicky odděleny. Pokud není uvedeno, tak vytvoří vrstvené řešení, které je méně složité a vhodné pro většinu scénářů. * `angular`: Angular. Pro tuto šablonu jsou dostupné dodatečné možnosti: - * `--separate-auth-server`: Oddělí identity server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod. + * `--separate-auth-server`: Oddělí Auth Server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod. * `none`: Bez UI. Pro tuto šablonu jsou dostupné dodatečné možnosti: - * `--separate-auth-server`: Oddělí identity server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod. + * `--separate-auth-server`: Oddělí Auth Server aplikaci od API host aplikace. Pokud není uvedeno, bude na straně serveru jediný koncový bod. * `--database-provider` nebo `-d`: Určuje poskytovatele databáze. Výchozí poskytovatel je `ef`. Dostupní poskytovatelé: * `ef`: Entity Framework Core. * `mongodb`: MongoDB. diff --git a/docs/en/CLI-New-Command-Samples.md b/docs/en/CLI-New-Command-Samples.md index 26d098c98e..d2c63cfec2 100644 --- a/docs/en/CLI-New-Command-Samples.md +++ b/docs/en/CLI-New-Command-Samples.md @@ -12,7 +12,7 @@ The following commands are for creating Angular UI projects: abp new Acme.BookStore -u angular --mobile none --database-provider ef -csf ```` -* **Entity Framework Core**, default app template, **separate Identity Server**, creates the project in a new folder: +* **Entity Framework Core**, default app template, **separate Auth Server**, creates the project in a new folder: ```bash abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider ef -csf @@ -30,7 +30,7 @@ The following commands are for creating Angular UI projects: abp new Acme.BookStore -u angular --database-provider mongodb --output-folder C:\MyProjects\Acme.BookStore ``` -* **MongoDB**, default app template, no mobile app, **separate Identity Server**, creates the project in a new folder: +* **MongoDB**, default app template, no mobile app, **separate Auth Server**, creates the project in a new folder: ```bash abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider mongodb -csf @@ -83,7 +83,7 @@ The following commands are for creating Blazor projects: abp new Acme.BookStore -t app -u blazor --mobile none ``` -* **Entity Framework Core**, **separate Identity Server**, mobile app included: +* **Entity Framework Core**, **separate Auth Server**, mobile app included: ```bash abp new Acme.BookStore -u blazor --separate-auth-server @@ -105,7 +105,7 @@ The following commands are for creating Blazor projects: abp new Acme.BookStore -t app -u blazor-server --mobile none ``` -* **Entity Framework Core**, **separate Identity Server**, **separate API Host**, mobile app included: +* **Entity Framework Core**, **separate Auth Server**, **separate API Host**, mobile app included: ```bash abp new Acme.BookStore -u blazor-server --tiered @@ -121,7 +121,7 @@ The following commands are for creating Blazor projects: In the default app template, there is always a frontend project. In this option there is no frontend project. It has a `HttpApi.Host` project to serve your HTTP WebAPIs. It's appropriate if you want to create a WebAPI service. -* **Entity Framework Core**, separate Identity Server, creates the project in a new folder: +* **Entity Framework Core**, separate Auth Server, creates the project in a new folder: ```bash abp new Acme.BookStore -u none --separate-auth-server -csf diff --git a/docs/en/CLI.md b/docs/en/CLI.md index ee204898cf..8ad0c0cbe6 100644 --- a/docs/en/CLI.md +++ b/docs/en/CLI.md @@ -113,15 +113,15 @@ For more samples, go to [ABP CLI Create Solution Samples](CLI-New-Command-Sample * `mvc`: ASP.NET Core MVC. There are some additional options for this template: * `--tiered`: Creates a tiered solution where Web and Http API layers are physically separated. If not specified, it creates a layered solution which is less complex and suitable for most scenarios. * `angular`: Angular UI. There are some additional options for this template: - * `--separate-auth-server`: The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side. + * `--separate-auth-server`: The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side. * `--pwa`: Specifies the project as Progressive Web Application. * `blazor`: Blazor UI. There are some additional options for this template: - * `--separate-auth-server`The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side. + * `--separate-auth-server`The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side. * `--pwa`: Specifies the project as Progressive Web Application. * `blazor-server`: Blazor Server UI. There are some additional options for this template: - * `--tiered`: The Identity Server and the API Host project comes as separate projects and run at different endpoints. It has 3 startup projects: *HttpApi.Host*, *AuthServer* and *Blazor* and and each runs on different endpoints. If not specified, you will have a single endpoint for your web project. + * `--tiered`: The Auth Server and the API Host project comes as separate projects and run at different endpoints. It has 3 startup projects: *HttpApi.Host*, *AuthServer* and *Blazor* and and each runs on different endpoints. If not specified, you will have a single endpoint for your web project. * `none`: Without UI. No front-end layer will be created. There are some additional options for this template: - * `--separate-auth-server`: The Identity Server project comes as a separate project and runs at a different endpoint. It separates the Identity Server from the API Host application. If not specified, you will have a single endpoint in the server side. + * `--separate-auth-server`: The Auth Server project comes as a separate project and runs at a different endpoint. It separates the Auth Server from the API Host application. If not specified, you will have a single endpoint in the server side. * `--mobile` or `-m`: Specifies the mobile application framework. If not specified, no mobile application will be created. Available options: * `react-native`: React Native. * `maui`: MAUI. This mobile option is only available for ABP Commercial. diff --git a/docs/en/Entity-Framework-Core-Other-DBMS.md b/docs/en/Entity-Framework-Core-Other-DBMS.md index bb14f2b906..93c3a6276f 100644 --- a/docs/en/Entity-Framework-Core-Other-DBMS.md +++ b/docs/en/Entity-Framework-Core-Other-DBMS.md @@ -83,7 +83,7 @@ You typically will change the `appsettings.json` inside the `.DbMigrator` and `. MySQL DBMS has some slight differences than the SQL Server. Some module database mapping configuration (especially the field lengths) causes problems with MySQL. For example, some of the the [IdentityServer module](Modules/IdentityServer.md) tables has such problems and it provides an option to configure the fields based on your DBMS. -The module may provide some built-in solutions. You can configure it via `ModelBuilder`. eg: `Identity Server` module. +The module may provide some built-in solutions. You can configure it via `ModelBuilder`. eg: `Auth Server` module. ```csharp builder.ConfigureIdentityServer(options => diff --git a/docs/en/Getting-Started-Create-Solution.md b/docs/en/Getting-Started-Create-Solution.md index 8b508ff348..650d3163a0 100644 --- a/docs/en/Getting-Started-Create-Solution.md +++ b/docs/en/Getting-Started-Create-Solution.md @@ -33,7 +33,7 @@ abp new Acme.BookStore{{if UI == "NG"}} -u angular{{else if UI == "Blazor"}} -u {{ else }} -* `--separate-auth-server` argument is used to separate the identity server application from the API host application. If not specified, you will have a single endpoint on the server. +* `--separate-auth-server` argument is used to separate the Auth Server application from the API host application. If not specified, you will have a single endpoint on the server. {{ end }} diff --git a/docs/en/Themes/LeptonXLite/Blazor.md b/docs/en/Themes/LeptonXLite/Blazor.md index 0e32aa9825..cc23bfc976 100644 --- a/docs/en/Themes/LeptonXLite/Blazor.md +++ b/docs/en/Themes/LeptonXLite/Blazor.md @@ -18,7 +18,7 @@ LeptonX Lite has implementation for the ABP Framework Blazor WebAssembly & Blazo This theme is **already installed** when you create a new solution using the startup templates. If you are using any other template, you can install this theme by following the steps below: {{if UI == "Blazor"}} -- Complete the [MVC Razor Pages Installation](AspNetCore.md#installation) for the **HttpApi.Host** application first. _If the solution is tiered/micro-service, complete the MVC steps for all MVC applications such as **HttpApi.Host** and if identity server is separated, install to the **OpenIddict**_. +- Complete the [MVC Razor Pages Installation](AspNetCore.md#installation) for the **HttpApi.Host** application first. _If the solution is tiered/micro-service, complete the MVC steps for all MVC applications such as **HttpApi.Host** and if Auth Server is separated, install to the **OpenIddict**_. - Add **Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme** package to your **Blazor WebAssembly** application with the following command: diff --git a/docs/zh-Hans/CLI-New-Command-Samples.md b/docs/zh-Hans/CLI-New-Command-Samples.md index 01c591a019..dd537682c1 100644 --- a/docs/zh-Hans/CLI-New-Command-Samples.md +++ b/docs/zh-Hans/CLI-New-Command-Samples.md @@ -12,7 +12,7 @@ abp new Acme.BookStore -u angular --mobile none --database-provider ef -csf ```` -* 在新文件夹中创建项目, **Entity Framework Core**, 默认应用程序模板, **拆分Identity Server**: +* 在新文件夹中创建项目, **Entity Framework Core**, 默认应用程序模板, **拆分Auth Server**: ```bash abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider ef -csf @@ -30,7 +30,7 @@ abp new Acme.BookStore -u angular --database-provider mongodb --output-folder C:\MyProjects\Acme.BookStore ``` -* 在新文件夹中创建项目, **MongoDB**, 默认应用程序模板, 不创建移动端应用程序, **拆分Identity Server**: +* 在新文件夹中创建项目, **MongoDB**, 默认应用程序模板, 不创建移动端应用程序, **拆分Auth Server**: ```bash abp new Acme.BookStore -t app -u angular -m none --separate-auth-server --database-provider mongodb -csf @@ -75,7 +75,7 @@ abp new Acme.BookStore -t app -u blazor --mobile none ``` -* **Entity Framework Core**, **拆分Identity Server**, 包含移动端应用程序: +* **Entity Framework Core**, **拆分Auth Server**, 包含移动端应用程序: ```bash abp new Acme.BookStore -u blazor --separate-auth-server @@ -97,7 +97,7 @@ abp new Acme.BookStore -t app -u blazor-server --mobile none ``` -* **Entity Framework Core**, **拆分Identity Server**, **拆分API Host**, 包含移动端应用程序: +* **Entity Framework Core**, **拆分Auth Server**, **拆分API Host**, 包含移动端应用程序: ```bash abp new Acme.BookStore -u blazor-server --tiered @@ -113,7 +113,7 @@ 在默认应用程序模板中, 始终有一个前端项目. 在这个选项中没有前端项目. 它有一个`HttpApi.Host`项目为你的HTTP WebAPI提供服务. 这个选项适合在你想创建一个WebAPI服务时使用. -* 在新文件夹中创建项目, **Entity Framework Core**, 拆分Identity Server: +* 在新文件夹中创建项目, **Entity Framework Core**, 拆分Auth Server: ```bash abp new Acme.BookStore -u none --separate-auth-server -csf diff --git a/docs/zh-Hans/CLI.md b/docs/zh-Hans/CLI.md index 2097acdad7..aaf6fd98b0 100644 --- a/docs/zh-Hans/CLI.md +++ b/docs/zh-Hans/CLI.md @@ -110,11 +110,11 @@ abp new Acme.BookStore * `mvc`: ASP.NET Core MVC.此模板的其他选项: * `--tiered`: 创建分层解决方案,Web和Http Api层在物理上是分开的.如果未指定会创建一个分层的解决方案,此解决方案没有那么复杂,适合大多数场景. * `angular`: Angular. 这个模板还有一些额外的选项: - * `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. + * `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. * `blazor`: Blazor. 这个模板还有一些额外的选项: - * `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. + * `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. * `none`: 无UI. 这个模板还有一些额外的选项: - * `--separate-auth-server`: 将Identity Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. + * `--separate-auth-server`: 将Auth Server应用程序与API host应用程序分开. 如果未指定,则服务器端将只有一个端点. * `--mobile` 或者 `-m`: 指定移动应用程序框架. 如果未指定,则不会创建任何移动应用程序,其他选项: * `none`: 不包含移动应用程序. * `react-native`: React Native. diff --git a/docs/zh-Hans/Getting-Started-Create-Solution.md b/docs/zh-Hans/Getting-Started-Create-Solution.md index 846f7909d1..55906add7e 100644 --- a/docs/zh-Hans/Getting-Started-Create-Solution.md +++ b/docs/zh-Hans/Getting-Started-Create-Solution.md @@ -33,7 +33,7 @@ abp new Acme.BookStore{{if UI == "NG"}} -u angular{{else if UI == "Blazor"}} -u {{ else }} -* `--separate-auth-server` 参数用于将Identity Server应用程序与API主机应用程序分隔开. 如果未指定, 则服务器上将只有一个端点. +* `--separate-auth-server` 参数用于将Auth Server应用程序与API主机应用程序分隔开. 如果未指定, 则服务器上将只有一个端点. {{ end }}