Skip to content

Commit f34c579

Browse files
authored
Merge pull request #286 from abpframework/readme-files
Update README files
2 parents 7ffd381 + 7dabc03 commit f34c579

File tree

402 files changed

+607
-1208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+607
-1208
lines changed

ABPConsumingRestApiByUsingStaticProxy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
This is an example project that demonstrates how to consume HTTP APIs from a .NET application using ABP's dynamic and static client-side proxy systems. See the article that explain this project:
44

5-
**https://community.abp.io/posts/consuming-http-apis-from-a-.net-client-using-abps-client-proxy-system-xriqarrm**
5+
**https://abp.io/community/posts/consuming-http-apis-from-a-.net-client-using-abps-client-proxy-system-xriqarrm**
66

77

ABPConsumingRestApiByUsingStaticProxy/src/Acme.BookStore.Application.Contracts/BookStoreDtoExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static void Configure()
2121
* .AddOrUpdateProperty<IdentityRoleDto, string>("Title");
2222
*
2323
* See the documentation for more:
24-
* https://docs.abp.io/en/abp/latest/Object-Extensions
24+
* https://abp.io/docs/latest/Object-Extensions
2525
*/
2626
});
2727
}

ABPConsumingRestApiByUsingStaticProxy/src/Acme.BookStore.Domain.Shared/BookStoreGlobalFeatureConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void Configure()
1515
* YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
1616
*
1717
* Please refer to the documentation to lear more about the Global Features System:
18-
* https://docs.abp.io/en/abp/latest/Global-Features
18+
* https://abp.io/docs/latest/Global-Features
1919
*/
2020
});
2121
}

ABPConsumingRestApiByUsingStaticProxy/src/Acme.BookStore.Domain.Shared/BookStoreModuleExtensionConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private static void ConfigureExtraProperties()
6565
});
6666
6767
* See the documentation for more:
68-
* https://docs.abp.io/en/abp/latest/Module-Entity-Extensions
68+
* https://abp.io/docs/latest/Module-Entity-Extensions
6969
*/
7070
}
7171
}

ABPConsumingRestApiByUsingStaticProxy/src/Acme.BookStore.EntityFrameworkCore/EntityFrameworkCore/BookStoreEfCoreEntityExtensionMappings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void Configure()
3737
);
3838
3939
* See the documentation for more:
40-
* https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities
40+
* https://abp.io/docs/latest/Customizing-Application-Modules-Extending-Entities
4141
*/
4242
});
4343
}

ABPConsumingRestApiByUsingStaticProxy/src/Acme.BookStore.Web/Pages/Index.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,22 +61,22 @@
6161
<div class="p-4">
6262
<h5 class="mb-3"><i class="fas fa-book text-secondary d-block my-3 fa-2x"></i> Learn the ABP Framework</h5>
6363
<p>Explore the compherensive documentation to learn how to build a modern web application.</p>
64-
<a href="https://docs.abp.io/en/abp/latest?ref=tmpl" target="_blank" class="btn btn-link px-1">See Documents <i class="fas fa-chevron-right"></i></a>
64+
<a href="https://abp.io/docs/latest?ref=tmpl" target="_blank" class="btn btn-link px-1">See Documents <i class="fas fa-chevron-right"></i></a>
6565
</div>
6666
</div>
6767
<div class="col-lg-4 border-start">
6868
<div class="p-4">
6969
<h5 class="mb-3"><i class="fas fa-cubes text-secondary d-block my-3 fa-2x"></i> Samples</h5>
7070
<p>See the example projects built with the ABP Framework.</p>
71-
<a href="https://docs.abp.io/en/abp/latest/Samples/Index?ref=tmpl" target="_blank" class="btn btn-link px-1">All samples <i class="fas fa-chevron-right"></i></a>
71+
<a href="https://abp.io/docs/latest/Samples/Index?ref=tmpl" target="_blank" class="btn btn-link px-1">All samples <i class="fas fa-chevron-right"></i></a>
7272
</div>
7373
</div>
7474
<div class="col-lg-4 border-start">
7575
<div class="p-4">
7676
<h5 class="mb-3"><i class="fas fa-users text-secondary d-block my-3 fa-2x"></i> ABP Community</h5>
7777
<p>Get involved with a vibrant community and become a contributor.</p>
78-
<a href="https://community.abp.io/" target="_blank" class="btn btn-link px-1">Community <i class="fas fa-chevron-right"></i></a>
79-
<a href="https://docs.abp.io/en/abp/latest/Contribution/Index?ref=tmpl" target="_blank" class="btn btn-link px-1">Contribute <i class="fas fa-chevron-right"></i></a>
78+
<a href="https://abp.io/community/" target="_blank" class="btn btn-link px-1">Community <i class="fas fa-chevron-right"></i></a>
79+
<a href="https://abp.io/docs/latest/Contribution/Index?ref=tmpl" target="_blank" class="btn btn-link px-1">Contribute <i class="fas fa-chevron-right"></i></a>
8080
</div>
8181
</div>
8282
</div>

AcmeBookStoreAngularMaterial/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
This is an example project that demonstrates using Angular Material Components With the ABP Framework. See the article that explain this project:
44

5-
**https://community.abp.io/posts/using-angular-material-components-with-the-abp-framework-af8ft6t9**
5+
**https://abp.io/community/posts/using-angular-material-components-with-the-abp-framework-af8ft6t9**

AcmeBookStoreAngularMaterial/angular/src/app/home/home.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h3>Let's improve your application!</h3>
3131
'Explore the compherensive documentation to learn how to build a modern web application.',
3232
links: [
3333
{
34-
href: 'https://docs.abp.io/en/abp/latest?ref=tmpl',
34+
href: 'https://abp.io/docs/latest?ref=tmpl',
3535
label: 'See Documents'
3636
}
3737
]
@@ -49,7 +49,7 @@ <h3>Let's improve your application!</h3>
4949
description: 'See the example projects built with the ABP Framework.',
5050
links: [
5151
{
52-
href: 'https://docs.abp.io/en/abp/latest/Samples/Index?ref=tmpl',
52+
href: 'https://abp.io/docs/latest/Samples/Index?ref=tmpl',
5353
label: 'All samples'
5454
}
5555
]
@@ -67,11 +67,11 @@ <h3>Let's improve your application!</h3>
6767
description: 'Get involved with a vibrant community and become a contributor.',
6868
links: [
6969
{
70-
href: 'https://community.abp.io/',
70+
href: 'https://abp.io/community/',
7171
label: 'Community'
7272
},
7373
{
74-
href: 'https://docs.abp.io/en/abp/latest/Contribution/Index?ref=tmpl',
74+
href: 'https://abp.io/docs/latest/Contribution/Index?ref=tmpl',
7575
label: 'Contribute'
7676
}
7777
]

AcmeBookStoreAngularMaterial/aspnet-core/src/Acme.BookStore.AngularMaterial.Application.Contracts/AngularMaterialDtoExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static void Configure()
2121
* .AddOrUpdateProperty<IdentityRoleDto, string>("Title");
2222
*
2323
* See the documentation for more:
24-
* https://docs.abp.io/en/abp/latest/Object-Extensions
24+
* https://abp.io/docs/latest/Object-Extensions
2525
*/
2626
});
2727
}

AcmeBookStoreAngularMaterial/aspnet-core/src/Acme.BookStore.AngularMaterial.Domain.Shared/AngularMaterialGlobalFeatureConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void Configure()
1515
* YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
1616
*
1717
* Please refer to the documentation to lear more about the Global Features System:
18-
* https://docs.abp.io/en/abp/latest/Global-Features
18+
* https://abp.io/docs/latest/Global-Features
1919
*/
2020
});
2121
}

0 commit comments

Comments
 (0)