Skip to content

Commit ddf3741

Browse files
committed
Update documentation links
1 parent 6bc3619 commit ddf3741

17 files changed

+21
-29
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CMS Kit Demo
22

3-
This is a sample application designed to demonstrate the capabilities of the [ABP Framework](https://github.com/abpframework/abp)'s [CMS Kit Module](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index).
3+
This is a sample application designed to demonstrate the capabilities of the [ABP](https://github.com/abpframework/abp)'s [CMS Kit Module](https://abp.io/docs/latest/modules/cms-kit/index).
44

55
## Requirements
66

@@ -22,29 +22,29 @@ After installing the NPM packages, you can directly run the `CmsKitDemo` project
2222

2323
### Homepage
2424

25-
The application menu items (gallery, blog, ...) are created & ordered dynamically with [CMS Kit's Menu System](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Menus):
25+
The application menu items (gallery, blog, ...) are created & ordered dynamically with [CMS Kit's Menu System](https://abp.io/docs/latest/Modules/Cms-Kit/Menus):
2626

2727
![homepage](assets/images/homepage.png)
2828

2929
### Image Gallery
3030

31-
Custom implementation (image gallery) with CMS Kit’s [Comment](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Comments) & [Reaction](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Reactions) Features integrated:
31+
Custom implementation (image gallery) with CMS Kit’s [Comment](https://abp.io/docs/latest/Modules/Cms-Kit/Comments) & [Reaction](https://abp.io/docs/latest/Modules/Cms-Kit/Reactions) Features integrated:
3232

3333
| Gallery | Detail Page |
3434
|------------------------ |-----------------------|
3535
| ![](assets/images/image-gallery.jpg) | ![](assets/images/image-gallery-detail.jpg) |
3636

3737
### Blog & Blog Posts
3838

39-
[Blogging Feature](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Blogging) (with [Ratings](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Ratings), [Comments](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Comments), [Tags](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Tags), and [Reactions](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Reactions) features as enabled):
39+
[Blogging Feature](https://abp.io/docs/latest/Modules/Cms-Kit/Blogging) (with [Ratings](https://abp.io/docs/latest/Modules/Cms-Kit/Ratings), [Comments](https://abp.io/docs/latest/Modules/Cms-Kit/Comments), [Tags](https://abp.io/docs/latest/Modules/Cms-Kit/Tags), and [Reactions](https://abp.io/docs/latest/Modules/Cms-Kit/Reactions) features as enabled):
4040

4141
| Blog | Blog Post |
4242
|------------------------ |-----------------------|
4343
| ![](assets/images/blogs.jpg) | ![](assets/images/blog-detail.jpg) |
4444

4545
### Products pages
4646

47-
*Our Team* and *Products* uses the [Pages Feature](https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Pages) of the CMS Kit Module (with dynamic content, styles & scripts):
47+
*Our Team* and *Products* uses the [Pages Feature](https://abp.io/docs/latest/Modules/Cms-Kit/Pages) of the CMS Kit Module (with dynamic content, styles & scripts):
4848

4949
| products/abp-commercial | products/aspnet-zero |
5050
|------------------------ |-----------------------|

src/CmsKitDemo/CmsKitDemoGlobalFeatureConfigurator.cs

-8
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ public static void Configure()
1515
{
1616
cmsKit.EnableAll();
1717
});
18-
19-
/* You can configure (enable/disable) global features of the used modules here.
20-
*
21-
* YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
22-
*
23-
* Please refer to the documentation to lear more about the Global Features System:
24-
* https://docs.abp.io/en/abp/latest/Global-Features
25-
*/
2618
});
2719
}
2820
}

src/CmsKitDemo/CmsKitDemoModule.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
namespace CmsKitDemo;
6565

6666
[DependsOn(
67-
// ABP Framework packages
67+
// ABP - Core framework packages
6868
typeof(AbpAspNetCoreMvcModule),
6969
typeof(AbpAutofacModule),
7070
typeof(AbpAutoMapperModule),
@@ -310,7 +310,7 @@ private void ConfigureEfCore(ServiceConfigurationContext context)
310310
{
311311
/* You can remove "includeAllEntities: true" to create
312312
* default repositories only for aggregate roots
313-
* Documentation: https://docs.abp.io/en/abp/latest/Entity-Framework-Core#add-default-repositories
313+
* Documentation: https://abp.io/docs/latest/framework/data/entity-framework-core#add-default-repositories
314314
*/
315315
options.AddDefaultRepositories(includeAllEntities: true);
316316
});

src/CmsKitDemo/Localization/CmsKitDemo/cs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "cs",
33
"texts": {
44
"Welcome_Title": "Vítejte",
5-
"Welcome_Text": "Toto je minimalistická šablona pro spuštění aplikace s jednou vrstvou pro ABP Framework.",
5+
"Welcome_Text": "Toto je minimalistická šablona pro spuštění aplikace s jednou vrstvou pro ABP.",
66
"Menu:Home": "Úvod"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/en-GB.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "en-GB",
33
"texts": {
44
"Welcome_Title": "Welcome_Title",
5-
"Welcome_Text": "This is a minimalist, single layer application startup template for the ABP Framework.",
5+
"Welcome_Text": "This is a minimalist, single layer application startup template for the ABP.",
66
"Menu:Home": "Home"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "en",
33
"texts": {
44
"Welcome_Title": "Welcome",
5-
"Welcome_Text": "This is a minimalist, single layer application startup template for the ABP Framework.",
5+
"Welcome_Text": "This is a minimalist, single layer application startup template for the ABP.",
66
"Menu:Home": "Home",
77
"ImageManagement": "Image Management",
88
"ThereIsNotAnyImageYet": "There is not any image yet!",

src/CmsKitDemo/Localization/CmsKitDemo/es.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "es",
33
"texts": {
44
"Welcome_Title": "Bienvenido",
5-
"Welcome_Text": "Esta es una plantilla de inicio de aplicación minimalista de una sola capa para ABP Framework.",
5+
"Welcome_Text": "Esta es una plantilla de inicio de aplicación minimalista de una sola capa para ABP.",
66
"Menu:Home": "Inicio"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/fi.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "fi",
33
"texts": {
44
"Welcome_Title": "Tervetuloa",
5-
"Welcome_Text": "Tämä on minimalistinen yksikerroksinen sovelluksen käynnistysmalli ABP Frameworkille.",
5+
"Welcome_Text": "Tämä on minimalistinen yksikerroksinen sovelluksen käynnistysmalli ABPille.",
66
"Menu:Home": "Koti"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/is.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "is",
33
"texts": {
44
"Welcome_Title": "Velkomin",
5-
"Welcome_Text": "Þetta er lægstur, eins lags ræsingarsniðmát fyrir ABP Framework.",
5+
"Welcome_Text": "Þetta er lægstur, eins lags ræsingarsniðmát fyrir ABP.",
66
"Menu:Home": "Heim"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/it.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "it",
33
"texts": {
44
"Welcome_Title": "Benvenuto",
5-
"Welcome_Text": "Questo è un modello di avvio dell'applicazione minimalista a livello singolo per ABP Framework.",
5+
"Welcome_Text": "Questo è un modello di avvio dell'applicazione minimalista a livello singolo per ABP.",
66
"Menu:Home": "Home"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/nl.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "nl",
33
"texts": {
44
"Welcome_Title": "Welkom",
5-
"Welcome_Text": "Dit is een minimalistische, enkellaagse applicatie-opstartsjabloon voor het ABP Framework.",
5+
"Welcome_Text": "Dit is een minimalistische, enkellaagse applicatie-opstartsjabloon voor het ABP.",
66
"Menu:Home": "Home"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/pl-PL.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "pl-PL",
33
"texts": {
44
"Welcome_Title": "Witaj",
5-
"Welcome_Text": "Jest to minimalistyczny, jednowarstwowy szablon uruchamiania aplikacji dla ABP Framework.",
5+
"Welcome_Text": "Jest to minimalistyczny, jednowarstwowy szablon uruchamiania aplikacji dla ABP.",
66
"Menu:Home": "Home"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/pt-BR.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "pt-BR",
33
"texts": {
44
"Welcome_Title": "Seja bem-vindo!",
5-
"Welcome_Text": "Este é um modelo de inicialização de aplicativo de camada única minimalista para o ABP Framework.",
5+
"Welcome_Text": "Este é um modelo de inicialização de aplicativo de camada única minimalista para o ABP.",
66
"Menu:Home": "Principal"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/sl.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "sl",
33
"texts": {
44
"Welcome_Title": "Dobrodošli",
5-
"Welcome_Text": "To je minimalistična enoslojna predloga za zagon aplikacije za ABP Framework.",
5+
"Welcome_Text": "To je minimalistična enoslojna predloga za zagon aplikacije za ABP.",
66
"Menu:Home": "Domov"
77
}
88
}

src/CmsKitDemo/Localization/CmsKitDemo/vi.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"culture": "vi",
33
"texts": {
44
"Welcome_Title": "Chào mừng bạn",
5-
"Welcome_Text": "Đây là một mẫu khởi động ứng dụng lớp đơn, tối giản cho ABP Framework.",
5+
"Welcome_Text": "Đây là một mẫu khởi động ứng dụng lớp đơn, tối giản cho ABP.",
66
"Menu:Home": "Trang chủ"
77
}
88
}

src/CmsKitDemo/Pages/Index.cshtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<div class="ps-md-3 text-center text-md-start">
3636
<h1>CMS Kit Module</h1>
3737
<p class="pd-title mb-4">This module provides CMS (Content Management System) capabilities for your application.</p>
38-
<a href="https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index" target="_blank" class="btn btn-primary btn-lg product-btn">Documentation</a>
38+
<a href="https://abp.io/docs/latest/Modules/Cms-Kit/Index" target="_blank" class="btn btn-primary btn-lg product-btn">Documentation</a>
3939
</div>
4040
</div>
4141
</div>

src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## About this solution
22

3-
This is a minimalist, non-layered startup solution with the ABP Framework. All the fundamental ABP modules are already installed.
3+
This is a minimalist, non-layered startup solution with ABP. All the fundamental ABP modules are already installed.
44

55
## How to run
66

0 commit comments

Comments
 (0)