Browse Source

Update the class name.

pull/10355/head
maliming 5 years ago
parent
commit
6006919141
  1. 4
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Carousel/AbpCarouselTagHelperService.cs
  2. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Grid/AbpRowTagHelperService.cs
  3. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/AbpPaginationTagHelperService.cs
  4. 4
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/ButtonGroupsDemo/Default.cshtml
  5. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/CardsDemo/Default.cshtml
  6. 4
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/NavbarsDemo/Default.cshtml
  7. 2
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml
  8. 407
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Logs/logs.txt
  9. 20
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Borders.cshtml
  10. 8
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/ButtonGroups.cshtml
  11. 16
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Carousel.cshtml
  12. 2
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Dropdowns.cshtml
  13. 6
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Navs.cshtml
  14. 2
      modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Paginator.cshtml
  15. 16
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml
  16. 2
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Edit.cshtml
  17. 10
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml
  18. 2
      modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml
  19. 2
      modules/client-simulation/src/Volo.ClientSimulation.Web/Pages/ClientSimulation/SimulationArea.cshtml
  20. 12
      modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Commenting/Default.cshtml
  21. 2
      modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Rating/Default.cshtml
  22. 2
      modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/ReactionSelection/Default.cshtml
  23. 4
      modules/docs/src/Volo.Docs.Web/Areas/Documents/TagHelpers/TreeTagHelper.cs
  24. 6
      modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml
  25. 2
      modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Pages/FeatureManagement/FeatureManagementModal.cshtml
  26. 2
      modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Pages/VirtualFileExplorer/Index.cshtml
  27. 18
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/Pages/Index.cshtml
  28. 18
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/Pages/Index.cshtml

4
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Carousel/AbpCarouselTagHelperService.cs

@ -72,7 +72,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Carousel
prevIcon.Attributes.Add("aria-hidden", "true");
var prevText = new TagBuilder("span");
prevText.AddCssClass("sr-only");
prevText.AddCssClass("visually-hidden");
prevText.InnerHtml.Append(L["Previous"].Value);
var prevAnchor = new TagBuilder("a");
@ -90,7 +90,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Carousel
nextIcon.Attributes.Add("aria-hidden", "true");
var nextText = new TagBuilder("span");
nextText.AddCssClass("sr-only");
nextText.AddCssClass("visually-hidden");
nextText.InnerHtml.Append(L["Next"].Value);
var nextAnchor = new TagBuilder("a");

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Grid/AbpRowTagHelperService.cs

@ -13,7 +13,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Grid
}
if (output.TagName == "abp-form-row")
{
output.Attributes.AddClass("form-row");
output.Attributes.AddClass("row");
}
output.TagName = "div";

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Pagination/AbpPaginationTagHelperService.cs

@ -90,7 +90,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Pagination
{
pageHtml.AppendLine(" <span class=\"page-link\">\r\n" +
" " + page.Index + "\r\n" +
" <span class=\"sr-only\">(current)</span>\r\n" +
" <span class=\"visually-hidden\">(current)</span>\r\n" +
" </span>");
}
else

4
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/ButtonGroupsDemo/Default.cshtml

@ -10,13 +10,13 @@
<abp-component-demo-section title="Button Toolbar" view-path="@ButtonGroupsDemoViewComponent.ViewPath">
<abp-button-toolbar>
<abp-button-group class="mr-2">
<abp-button-group class="me-2">
<abp-button button-type="Secondary">1</abp-button>
<abp-button button-type="Secondary">2</abp-button>
<abp-button button-type="Secondary">3</abp-button>
<abp-button button-type="Secondary">4</abp-button>
</abp-button-group>
<abp-button-group class="mr-2">
<abp-button-group class="me-2">
<abp-button button-type="Secondary">5</abp-button>
<abp-button button-type="Secondary">6</abp-button>
<abp-button button-type="Secondary">7</abp-button>

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/CardsDemo/Default.cshtml

@ -146,7 +146,7 @@
</abp-component-demo-section>
<abp-component-demo-section title="Text alignment" view-path="@CardsDemoViewComponent.ViewPath">
<abp-card class="text-left" style="width: 18rem;">
<abp-card class="text-start" style="width: 18rem;">
<abp-card-body>
<abp-card-title> Special title treatment</abp-card-title>
<abp-card-text>With supporting text below as a natural lead-in to additional content.</abp-card-text>

4
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/NavbarsDemo/Default.cshtml

@ -6,7 +6,7 @@
<abp-navbar-toggle>
<abp-navbar-nav>
<abp-nav-item active="true">
<a abp-nav-link href="#">Home <span class="sr-only">(current)</span></a>
<a abp-nav-link href="#">Home <span class="visually-hidden">(current)</span></a>
</abp-nav-item>
<abp-nav-item>
<a abp-nav-link href="#">Link</a>
@ -41,7 +41,7 @@
<abp-navbar-toggle>
<abp-navbar-nav>
<abp-nav-item active="true">
<a abp-nav-link href="#">Home <span class="sr-only">(current)</span></a>
<a abp-nav-link href="#">Home <span class="visually-hidden">(current)</span></a>
</abp-nav-item>
<abp-nav-item>
<a abp-nav-link href="#">Link</a>

2
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml

@ -18,7 +18,7 @@
<abp-row class="mb-2">
<abp-column>
<a class="btn btn-primary" href="@Model.ReturnUrl">
<i class="fa fa-chevron-left mr-2"></i>@L["ReturnToApplication"]
<i class="fa fa-chevron-left me-2"></i>@L["ReturnToApplication"]
</a>
</abp-column>
</abp-row>

407
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Logs/logs.txt

@ -1,407 +0,0 @@
2021-08-24 15:47:44.158 +08:00 [INF] Starting web host.
2021-08-24 15:47:44.553 +08:00 [INF] User profile is available. Using 'C:\Users\maliming\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
2021-08-24 15:47:44.590 +08:00 [INF] Loaded ABP modules:
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.AbpAspNetCoreMvcUiBootstrapDemoModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
2021-08-24 15:47:44.590 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
2021-08-24 15:47:44.805 +08:00 [INF] Initialized all ABP modules.
2021-08-24 15:47:44.824 +08:00 [INF] Now listening on: http://localhost:5000
2021-08-24 15:47:44.824 +08:00 [INF] Application started. Press Ctrl+C to shut down.
2021-08-24 15:47:44.824 +08:00 [INF] Hosting environment: Development
2021-08-24 15:47:44.824 +08:00 [INF] Content root path: D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo
2021-08-24 15:54:57.477 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/ - -
2021-08-24 15:54:57.501 +08:00 [INF] Executing endpoint '/Index'
2021-08-24 15:54:57.528 +08:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing page /Index
2021-08-24 15:54:57.528 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 15:54:57.548 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.IndexModel.OnGet - ModelState is "Valid"
2021-08-24 15:54:57.549 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 15:54:57.550 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 15:54:57.550 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 15:54:57.617 +08:00 [DBG] Added bundle 'Global' to the page in 5.48 ms.
2021-08-24 15:54:57.624 +08:00 [DBG] Added bundle 'Global' to the page in 3.50 ms.
2021-08-24 15:54:57.630 +08:00 [INF] Executed page /Index in 99.9662ms
2021-08-24 15:54:57.630 +08:00 [INF] Executed endpoint '/Index'
2021-08-24 15:54:57.633 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/ - - - 200 - text/html;+charset=utf-8 156.6193ms
2021-08-24 15:54:57.671 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - -
2021-08-24 15:54:57.672 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - -
2021-08-24 15:54:57.674 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - -
2021-08-24 15:54:57.674 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - -
2021-08-24 15:54:57.674 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - -
2021-08-24 15:54:57.674 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - -
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js was not modified
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified
2021-08-24 15:54:57.674 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js was not modified
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 3.8296ms
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - - - 304 - text/css 3.4501ms
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 1.2295ms
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 1.4307ms
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - - - 304 - application/javascript 0.9577ms
2021-08-24 15:54:57.675 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - - - 304 - application/javascript 1.0828ms
2021-08-24 15:54:57.676 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - -
2021-08-24 15:54:57.676 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified
2021-08-24 15:54:57.676 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - - - 304 - application/javascript 0.1868ms
2021-08-24 15:54:57.676 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - -
2021-08-24 15:54:57.676 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified
2021-08-24 15:54:57.676 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.1782ms
2021-08-24 15:54:57.676 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - -
2021-08-24 15:54:57.677 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - -
2021-08-24 15:54:57.677 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified
2021-08-24 15:54:57.677 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - - - 304 - application/javascript 0.2273ms
2021-08-24 15:54:57.677 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - -
2021-08-24 15:54:57.677 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified
2021-08-24 15:54:57.677 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - - - 304 - application/javascript 0.2020ms
2021-08-24 15:54:57.677 +08:00 [INF] The file /Pages/Abp/MultiTenancy/tenant-switch.js was not modified
2021-08-24 15:54:57.677 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - - - 304 - application/javascript 0.1925ms
2021-08-24 15:55:02.411 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/DynamicForms - -
2021-08-24 15:55:02.414 +08:00 [INF] Executing endpoint '/Components/DynamicForms'
2021-08-24 15:55:02.425 +08:00 [INF] Route matched with {page = "/Components/DynamicForms", area = "", action = "", controller = ""}. Executing page /Components/DynamicForms
2021-08-24 15:55:02.425 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 15:55:02.429 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.DynamicFormsModel.OnGet - ModelState is "Valid"
2021-08-24 15:55:02.429 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 15:55:02.429 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 15:55:02.429 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 15:55:02.520 +08:00 [DBG] Added bundle 'Global' to the page in 0.48 ms.
2021-08-24 15:55:02.523 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.67 ms.
2021-08-24 15:55:02.524 +08:00 [DBG] Added bundle 'Global' to the page in 1.06 ms.
2021-08-24 15:55:02.525 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.17 ms.
2021-08-24 15:55:02.527 +08:00 [INF] Executed page /Components/DynamicForms in 102.0593ms
2021-08-24 15:55:02.527 +08:00 [INF] Executed endpoint '/Components/DynamicForms'
2021-08-24 15:55:02.528 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/DynamicForms - - - 200 - text/html;+charset=utf-8 116.7810ms
2021-08-24 15:55:03.136 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/FormElements - -
2021-08-24 15:55:03.139 +08:00 [INF] Executing endpoint '/Components/FormElements'
2021-08-24 15:55:03.141 +08:00 [INF] Route matched with {page = "/Components/FormElements", area = "", action = "", controller = ""}. Executing page /Components/FormElements
2021-08-24 15:55:03.141 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 15:55:03.142 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.FormElementsModel.OnGet - ModelState is "Valid"
2021-08-24 15:55:03.142 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 15:55:03.142 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 15:55:03.142 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 15:55:03.176 +08:00 [DBG] Added bundle 'Global' to the page in 0.24 ms.
2021-08-24 15:55:03.177 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.10 ms.
2021-08-24 15:55:03.178 +08:00 [DBG] Added bundle 'Global' to the page in 0.71 ms.
2021-08-24 15:55:03.179 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.04 ms.
2021-08-24 15:55:03.179 +08:00 [INF] Executed page /Components/FormElements in 37.8522ms
2021-08-24 15:55:03.179 +08:00 [INF] Executed endpoint '/Components/FormElements'
2021-08-24 15:55:03.179 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/FormElements - - - 200 - text/html;+charset=utf-8 42.8278ms
2021-08-24 15:55:04.929 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - -
2021-08-24 15:55:04.930 +08:00 [INF] Executing endpoint '/Components/Dropdowns'
2021-08-24 15:55:04.931 +08:00 [INF] Route matched with {page = "/Components/Dropdowns", area = "", action = "", controller = ""}. Executing page /Components/Dropdowns
2021-08-24 15:55:04.931 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 15:55:04.932 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.DropdownsModel.OnGet - ModelState is "Valid"
2021-08-24 15:55:04.932 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 15:55:04.932 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 15:55:04.932 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 15:55:05.019 +08:00 [DBG] Added bundle 'Global' to the page in 0.23 ms.
2021-08-24 15:55:05.020 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.07 ms.
2021-08-24 15:55:05.020 +08:00 [DBG] Added bundle 'Global' to the page in 0.68 ms.
2021-08-24 15:55:05.021 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.03 ms.
2021-08-24 15:55:05.021 +08:00 [INF] Executed page /Components/Dropdowns in 89.9685ms
2021-08-24 15:55:05.021 +08:00 [INF] Executed endpoint '/Components/Dropdowns'
2021-08-24 15:55:05.021 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - - - 200 - text/html;+charset=utf-8 92.8296ms
2021-08-24 15:55:36.481 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - -
2021-08-24 15:55:36.481 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - -
2021-08-24 15:55:36.481 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - - - 404 0 - 0.2030ms
2021-08-24 15:55:36.481 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - -
2021-08-24 15:55:36.482 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - -
2021-08-24 15:55:36.482 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - -
2021-08-24 15:55:36.484 +08:00 [INF] Sending file. Request path: '/libs/abp/utils/abp-utils.umd.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\abp\utils\abp-utils.umd.min.js.map'
2021-08-24 15:55:36.484 +08:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\toastr\toastr.js.map'
2021-08-24 15:55:36.484 +08:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\jquery-form\jquery.form.min.js.map'
2021-08-24 15:55:36.484 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - - - 200 33491 text/plain 3.6674ms
2021-08-24 15:55:36.484 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - - - 200 25633 text/plain 2.0794ms
2021-08-24 15:55:36.484 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - - - 200 22564 text/plain 2.7871ms
2021-08-24 15:55:36.484 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\js\bootstrap.bundle.js.map'
2021-08-24 15:55:36.485 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - - - 200 425643 text/plain 3.4479ms
2021-08-24 15:55:36.491 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - -
2021-08-24 15:55:36.494 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\css\bootstrap.css.map'
2021-08-24 15:55:36.494 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - - - 200 536547 text/plain 3.0891ms
2021-08-24 15:55:48.230 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - -
2021-08-24 15:55:48.231 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - - - 404 0 - 0.1256ms
2021-08-24 16:07:31.471 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - -
2021-08-24 16:07:31.471 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - - - 404 0 - 0.1059ms
2021-08-24 16:07:48.421 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - -
2021-08-24 16:07:48.421 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=146,r=,rl=0 - - - 404 0 - 0.1114ms
2021-08-24 16:10:34.903 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - -
2021-08-24 16:10:36.705 +08:00 [INF] Executing endpoint '/Components/Dropdowns'
2021-08-24 16:10:36.706 +08:00 [INF] Route matched with {page = "/Components/Dropdowns", area = "", action = "", controller = ""}. Executing page /Components/Dropdowns
2021-08-24 16:10:36.707 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 16:10:36.707 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.DropdownsModel.OnGet - ModelState is "Valid"
2021-08-24 16:10:36.707 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 16:10:36.707 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 16:10:36.707 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 16:10:36.778 +08:00 [DBG] Added bundle 'Global' to the page in 0.26 ms.
2021-08-24 16:10:36.779 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.09 ms.
2021-08-24 16:10:36.780 +08:00 [DBG] Added bundle 'Global' to the page in 0.66 ms.
2021-08-24 16:10:36.780 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.03 ms.
2021-08-24 16:10:36.781 +08:00 [INF] Executed page /Components/Dropdowns in 74.2085ms
2021-08-24 16:10:36.781 +08:00 [INF] Executed endpoint '/Components/Dropdowns'
2021-08-24 16:10:36.781 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - - - 200 - text/html;+charset=utf-8 1877.4614ms
2021-08-24 16:10:36.804 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - -
2021-08-24 16:10:36.805 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified
2021-08-24 16:10:36.805 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - - - 304 - text/css 0.9174ms
2021-08-24 16:10:36.807 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - -
2021-08-24 16:10:36.807 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js was not modified
2021-08-24 16:10:36.808 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.2078ms
2021-08-24 16:10:36.808 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - -
2021-08-24 16:10:36.808 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified
2021-08-24 16:10:36.808 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.1676ms
2021-08-24 16:10:36.809 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - -
2021-08-24 16:10:36.809 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified
2021-08-24 16:10:36.809 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.1549ms
2021-08-24 16:10:36.809 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - -
2021-08-24 16:10:36.809 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - -
2021-08-24 16:10:36.809 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - -
2021-08-24 16:10:36.809 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js was not modified
2021-08-24 16:10:36.809 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified
2021-08-24 16:10:36.809 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - - - 304 - application/javascript 0.1694ms
2021-08-24 16:10:36.809 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - - - 304 - application/javascript 0.1660ms
2021-08-24 16:10:36.809 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified
2021-08-24 16:10:36.809 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - - - 304 - application/javascript 0.1410ms
2021-08-24 16:10:36.809 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - -
2021-08-24 16:10:36.809 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified
2021-08-24 16:10:36.810 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.1383ms
2021-08-24 16:10:36.811 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - -
2021-08-24 16:10:36.811 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified
2021-08-24 16:10:36.811 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - - - 304 - application/javascript 0.1279ms
2021-08-24 16:10:36.811 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - -
2021-08-24 16:10:36.811 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - -
2021-08-24 16:10:36.811 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified
2021-08-24 16:10:36.811 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - - - 304 - application/javascript 0.1191ms
2021-08-24 16:10:36.811 +08:00 [INF] The file /Pages/Abp/MultiTenancy/tenant-switch.js was not modified
2021-08-24 16:10:36.811 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - - - 304 - application/javascript 0.1650ms
2021-08-24 16:10:36.842 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - -
2021-08-24 16:10:36.844 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\css\bootstrap.css.map'
2021-08-24 16:10:36.844 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - - - 200 536547 text/plain 1.3969ms
2021-08-24 16:10:36.971 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - -
2021-08-24 16:10:36.971 +08:00 [INF] Sending file. Request path: '/libs/abp/utils/abp-utils.umd.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\abp\utils\abp-utils.umd.min.js.map'
2021-08-24 16:10:36.971 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - - - 200 33491 text/plain 0.4575ms
2021-08-24 16:10:36.971 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - -
2021-08-24 16:10:36.971 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - - - 404 0 - 0.1304ms
2021-08-24 16:10:36.972 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - -
2021-08-24 16:10:36.973 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - -
2021-08-24 16:10:36.973 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\js\bootstrap.bundle.js.map'
2021-08-24 16:10:36.973 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - - - 200 425643 text/plain 1.0767ms
2021-08-24 16:10:36.973 +08:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\jquery-form\jquery.form.min.js.map'
2021-08-24 16:10:36.973 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - - - 200 22564 text/plain 0.4342ms
2021-08-24 16:10:36.975 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - -
2021-08-24 16:10:36.975 +08:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\toastr\toastr.js.map'
2021-08-24 16:10:36.975 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - - - 200 25633 text/plain 0.2996ms
2021-08-24 16:17:57.088 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - -
2021-08-24 16:17:57.431 +08:00 [INF] Executing endpoint '/Components/Dropdowns'
2021-08-24 16:17:57.432 +08:00 [INF] Route matched with {page = "/Components/Dropdowns", area = "", action = "", controller = ""}. Executing page /Components/Dropdowns
2021-08-24 16:17:57.432 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 16:17:57.433 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.DropdownsModel.OnGet - ModelState is "Valid"
2021-08-24 16:17:57.433 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 16:17:57.433 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 16:17:57.433 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 16:17:57.513 +08:00 [DBG] Added bundle 'Global' to the page in 0.25 ms.
2021-08-24 16:17:57.514 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.06 ms.
2021-08-24 16:17:57.515 +08:00 [DBG] Added bundle 'Global' to the page in 0.70 ms.
2021-08-24 16:17:57.516 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.03 ms.
2021-08-24 16:17:57.516 +08:00 [INF] Executed page /Components/Dropdowns in 83.6847ms
2021-08-24 16:17:57.516 +08:00 [INF] Executed endpoint '/Components/Dropdowns'
2021-08-24 16:17:57.516 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/Dropdowns - - - 200 - text/html;+charset=utf-8 427.8651ms
2021-08-24 16:17:57.581 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - -
2021-08-24 16:17:57.583 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\css\bootstrap.css.map'
2021-08-24 16:17:57.583 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - - - 200 536547 text/plain 1.8522ms
2021-08-24 16:17:57.715 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - -
2021-08-24 16:17:57.716 +08:00 [INF] Sending file. Request path: '/libs/abp/utils/abp-utils.umd.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\abp\utils\abp-utils.umd.min.js.map'
2021-08-24 16:17:57.716 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - - - 200 33491 text/plain 0.4705ms
2021-08-24 16:17:57.717 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - -
2021-08-24 16:17:57.717 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - - - 404 0 - 0.1506ms
2021-08-24 16:17:57.718 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - -
2021-08-24 16:17:57.719 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\js\bootstrap.bundle.js.map'
2021-08-24 16:17:57.719 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - - - 200 425643 text/plain 1.4106ms
2021-08-24 16:17:57.719 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - -
2021-08-24 16:17:57.720 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - -
2021-08-24 16:17:57.720 +08:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\jquery-form\jquery.form.min.js.map'
2021-08-24 16:17:57.720 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - - - 200 22564 text/plain 0.5302ms
2021-08-24 16:17:57.720 +08:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\toastr\toastr.js.map'
2021-08-24 16:17:57.720 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - - - 200 25633 text/plain 0.3286ms
2021-08-24 16:21:38.059 +08:00 [INF] Starting web host.
2021-08-24 16:21:38.460 +08:00 [INF] User profile is available. Using 'C:\Users\maliming\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
2021-08-24 16:21:38.499 +08:00 [INF] Loaded ABP modules:
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.AbpAspNetCoreMvcUiBootstrapDemoModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.AbpAspNetCoreMvcUiBasicThemeModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
2021-08-24 16:21:38.499 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
2021-08-24 16:21:38.728 +08:00 [INF] Initialized all ABP modules.
2021-08-24 16:21:38.747 +08:00 [INF] Now listening on: http://localhost:5000
2021-08-24 16:21:38.748 +08:00 [INF] Application started. Press Ctrl+C to shut down.
2021-08-24 16:21:38.748 +08:00 [INF] Hosting environment: Development
2021-08-24 16:21:38.748 +08:00 [INF] Content root path: D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo
2021-08-24 16:22:12.042 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/ - -
2021-08-24 16:22:12.068 +08:00 [INF] Executing endpoint '/Index'
2021-08-24 16:22:12.095 +08:00 [INF] Route matched with {page = "/Index", area = "", action = "", controller = ""}. Executing page /Index
2021-08-24 16:22:12.095 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 16:22:12.115 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.IndexModel.OnGet - ModelState is "Valid"
2021-08-24 16:22:12.116 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 16:22:12.117 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 16:22:12.118 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 16:22:12.184 +08:00 [DBG] Added bundle 'Global' to the page in 5.44 ms.
2021-08-24 16:22:12.191 +08:00 [DBG] Added bundle 'Global' to the page in 3.59 ms.
2021-08-24 16:22:12.197 +08:00 [INF] Executed page /Index in 99.9516ms
2021-08-24 16:22:12.197 +08:00 [INF] Executed endpoint '/Index'
2021-08-24 16:22:12.200 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/ - - - 200 - text/html;+charset=utf-8 157.9877ms
2021-08-24 16:22:12.240 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - -
2021-08-24 16:22:12.240 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - -
2021-08-24 16:22:12.243 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js was not modified
2021-08-24 16:22:12.243 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css was not modified
2021-08-24 16:22:12.243 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - -
2021-08-24 16:22:12.243 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 3.4977ms
2021-08-24 16:22:12.243 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - -
2021-08-24 16:22:12.243 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - -
2021-08-24 16:22:12.243 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css?_v=637653825387293422 - - - 304 - text/css 3.1305ms
2021-08-24 16:22:12.244 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js was not modified
2021-08-24 16:22:12.244 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js was not modified
2021-08-24 16:22:12.244 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js was not modified
2021-08-24 16:22:12.244 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.2657ms
2021-08-24 16:22:12.244 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - -
2021-08-24 16:22:12.244 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.5275ms
2021-08-24 16:22:12.244 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js?_v=637653825387293422 - - - 304 - application/javascript 0.3620ms
2021-08-24 16:22:12.244 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js was not modified
2021-08-24 16:22:12.244 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js?_v=637653825387293422 - - - 304 - application/javascript 0.4249ms
2021-08-24 16:22:12.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - -
2021-08-24 16:22:12.245 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js was not modified
2021-08-24 16:22:12.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - -
2021-08-24 16:22:12.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - -
2021-08-24 16:22:12.245 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js?_v=637653825387293422 - - - 304 - application/javascript 0.1996ms
2021-08-24 16:22:12.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - -
2021-08-24 16:22:12.245 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js was not modified
2021-08-24 16:22:12.245 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js was not modified
2021-08-24 16:22:12.245 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - -
2021-08-24 16:22:12.245 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert/abp-sweetalert.js?_v=637653825387293422 - - - 304 - application/javascript 0.2143ms
2021-08-24 16:22:12.245 +08:00 [INF] The file /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js was not modified
2021-08-24 16:22:12.245 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js?_v=637653825387293422 - - - 304 - application/javascript 0.2467ms
2021-08-24 16:22:12.245 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js?_v=637653825387293422 - - - 304 - application/javascript 0.2151ms
2021-08-24 16:22:12.245 +08:00 [INF] The file /Pages/Abp/MultiTenancy/tenant-switch.js was not modified
2021-08-24 16:22:12.245 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Pages/Abp/MultiTenancy/tenant-switch.js?_v=637653825391683423 - - - 304 - application/javascript 0.2389ms
2021-08-24 16:22:14.398 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/Components/DynamicForms - -
2021-08-24 16:22:14.402 +08:00 [INF] Executing endpoint '/Components/DynamicForms'
2021-08-24 16:22:14.414 +08:00 [INF] Route matched with {page = "/Components/DynamicForms", area = "", action = "", controller = ""}. Executing page /Components/DynamicForms
2021-08-24 16:22:14.414 +08:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy
2021-08-24 16:22:14.417 +08:00 [INF] Executing handler method Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.DynamicFormsModel.OnGet - ModelState is "Valid"
2021-08-24 16:22:14.418 +08:00 [INF] Executed handler method OnGet, returned result .
2021-08-24 16:22:14.418 +08:00 [INF] Executing an implicit handler method - ModelState is "Valid"
2021-08-24 16:22:14.418 +08:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult.
2021-08-24 16:22:14.504 +08:00 [DBG] Added bundle 'Global' to the page in 0.43 ms.
2021-08-24 16:22:14.507 +08:00 [DBG] Added bundle '80DFC5E38123FD27A4D9BB31C2CA95CC' to the page in 0.64 ms.
2021-08-24 16:22:14.508 +08:00 [DBG] Added bundle 'Global' to the page in 1.10 ms.
2021-08-24 16:22:14.509 +08:00 [DBG] Added bundle 'D41D8CD98F00B204E9800998ECF8427E' to the page in 0.15 ms.
2021-08-24 16:22:14.510 +08:00 [INF] Executed page /Components/DynamicForms in 96.5521ms
2021-08-24 16:22:14.511 +08:00 [INF] Executed endpoint '/Components/DynamicForms'
2021-08-24 16:22:14.511 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/Components/DynamicForms - - - 200 - text/html;+charset=utf-8 113.4172ms
2021-08-24 16:22:32.099 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - -
2021-08-24 16:22:32.099 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - -
2021-08-24 16:22:32.100 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - -
2021-08-24 16:22:32.101 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - -
2021-08-24 16:22:32.103 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/js/bootstrap.bundle.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\js\bootstrap.bundle.js.map'
2021-08-24 16:22:32.103 +08:00 [INF] Sending file. Request path: '/libs/abp/utils/abp-utils.umd.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\abp\utils\abp-utils.umd.min.js.map'
2021-08-24 16:22:32.103 +08:00 [INF] Sending file. Request path: '/libs/jquery-form/jquery.form.min.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\jquery-form\jquery.form.min.js.map'
2021-08-24 16:22:32.103 +08:00 [INF] Sending file. Request path: '/libs/toastr/toastr.js.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\toastr\toastr.js.map'
2021-08-24 16:22:32.103 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/abp/utils/abp-utils.umd.min.js.map - - - 200 33491 text/plain 4.0092ms
2021-08-24 16:22:32.103 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/jquery-form/jquery.form.min.js.map - - - 200 22564 text/plain 3.0947ms
2021-08-24 16:22:32.103 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/js/bootstrap.bundle.js.map - - - 200 425643 text/plain 3.6547ms
2021-08-24 16:22:32.103 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/toastr/toastr.js.map - - - 200 25633 text/plain 2.4059ms
2021-08-24 16:22:32.105 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - -
2021-08-24 16:22:32.105 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/popper.js/popper.min.js.map - - - 404 0 - 0.1795ms
2021-08-24 16:22:32.107 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - -
2021-08-24 16:22:32.108 +08:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'D:\Github\volo\volo5\abp\modules\basic-theme\test\Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo\wwwroot\libs\bootstrap\css\bootstrap.css.map'
2021-08-24 16:22:32.108 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/libs/bootstrap/css/bootstrap.css.map - - - 200 536547 text/plain 1.2831ms
2021-08-24 16:27:16.852 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=152,r=,rl=0 - -
2021-08-24 16:27:16.852 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:5000/gen204?invalidResponse=q=https%3A%2F%2Ftranslate.googleapis.com%2Ftranslate_a%2Fsingle%3Fclient%3Dgtx%26s,ql=152,r=,rl=0 - - - 404 0 - 0.1123ms

20
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Borders.cshtml

@ -63,9 +63,9 @@
<pre><code>
&lt;span class=&quot;border&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-top&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-right&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-end&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-bottom&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-left&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-start&quot;&gt;&lt;/span&gt;
</code></pre>
</abp-tab>
</abp-tabs>
@ -97,9 +97,9 @@
<pre><code>
&lt;span class=&quot;borde-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-top-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-right-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-end-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-bottom-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-left-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border-start-0&quot;&gt;&lt;/span&gt;
</code></pre>
</abp-tab>
</abp-tabs>
@ -163,14 +163,14 @@
&lt;span class=&quot;border border-dark&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-white&quot;&gt;&lt;/span&gt;
&lt;br/&gt;
&lt;span class=&quot;border border-left border-primary&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-start border-primary&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-top border-secondary&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-right border-success&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-end border-success&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-bottom border-danger&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-bottom border-warning&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-left border-info&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-start border-info&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-top border-light&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-right border-dark&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-end border-dark&quot;&gt;&lt;/span&gt;
</code></pre>
</abp-tab>
</abp-tabs>
@ -205,9 +205,9 @@
&lt;span class=&quot;border border-primary rounded&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-0&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-top&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-left&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-start&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-bottom&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-right&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;border border-primary rounded-end&quot;&gt;&lt;/span&gt;
</code></pre>
</abp-tab>
</abp-tabs>

8
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/ButtonGroups.cshtml

@ -66,13 +66,13 @@
<div class="demo-with-code">
<div class="demo-area">
<abp-button-toolbar>
<abp-button-group class="mr-2">
<abp-button-group class="me-2">
<abp-button button-type="Secondary">1</abp-button>
<abp-button button-type="Secondary">2</abp-button>
<abp-button button-type="Secondary">3</abp-button>
<abp-button button-type="Secondary">4</abp-button>
</abp-button-group>
<abp-button-group class="mr-2">
<abp-button-group class="me-2">
<abp-button button-type="Secondary">5</abp-button>
<abp-button button-type="Secondary">6</abp-button>
<abp-button button-type="Secondary">7</abp-button>
@ -107,13 +107,13 @@
<abp-tab title="Rendered">
<pre><code>
&lt;div class=&quot;btn-toolbar&quot; role=&quot;toolbar&quot;&gt;
&lt;div class=&quot;btn-group mr-2&quot; role=&quot;group&quot;&gt;
&lt;div class=&quot;btn-group me-2&quot; role=&quot;group&quot;&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;1&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;2&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;3&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;4&lt;/button&gt;
&lt;/div&gt;
&lt;div class=&quot;btn-group mr-2&quot; role=&quot;group&quot;&gt;
&lt;div class=&quot;btn-group me-2&quot; role=&quot;group&quot;&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;5&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;6&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-secondary&quot;&gt;7&lt;/button&gt;

16
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Carousel.cshtml

@ -112,11 +112,11 @@
&lt;/div&gt;
&lt;a class=&quot;carousel-control-prev&quot; href=&quot;#carouselExampleControls&quot; role=&quot;button&quot; data-bs-slide=&quot;prev&quot;&gt;
&lt;span class=&quot;carousel-control-prev-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Previous&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Previous&lt;/span&gt;
&lt;/a&gt;
&lt;a class=&quot;carousel-control-next&quot; href=&quot;#carouselExampleControls&quot; role=&quot;button&quot; data-bs-slide=&quot;next&quot;&gt;
&lt;span class=&quot;carousel-control-next-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Next&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Next&lt;/span&gt;
&lt;/a&gt;
&lt;/div&gt;
</code></pre>
@ -168,11 +168,11 @@
&lt;/div&gt;
&lt;a class=&quot;carousel-control-prev&quot; href=&quot;#carouselExampleIndicators&quot; role=&quot;button&quot; data-bs-slide=&quot;prev&quot;&gt;
&lt;span class=&quot;carousel-control-prev-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Previous&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Previous&lt;/span&gt;
&lt;/a&gt;
&lt;a class=&quot;carousel-control-next&quot; href=&quot;#carouselExampleIndicators&quot; role=&quot;button&quot; data-bs-slide=&quot;next&quot;&gt;
&lt;span class=&quot;carousel-control-next-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Next&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Next&lt;/span&gt;
&lt;/a&gt;
&lt;/div&gt;
</code></pre>
@ -218,11 +218,11 @@
&lt;/div&gt;
&lt;a class=&quot;carousel-control-prev&quot; href=&quot;#carouselExampleIndicators&quot; role=&quot;button&quot; data-bs-slide=&quot;prev&quot;&gt;
&lt;span class=&quot;carousel-control-prev-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Previous&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Previous&lt;/span&gt;
&lt;/a&gt;
&lt;a class=&quot;carousel-control-next&quot; href=&quot;#carouselExampleIndicators&quot; role=&quot;button&quot; data-bs-slide=&quot;next&quot;&gt;
&lt;span class=&quot;carousel-control-next-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Next&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Next&lt;/span&gt;
&lt;/a&gt;
&lt;/div&gt;
</code></pre>
@ -270,11 +270,11 @@
&lt;/div&gt;
&lt;a class=&quot;carousel-control-prev&quot; href=&quot;#carouselExampleFade&quot; role=&quot;button&quot; data-bs-slide=&quot;prev&quot;&gt;
&lt;span class=&quot;carousel-control-prev-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Previous&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Previous&lt;/span&gt;
&lt;/a&gt;
&lt;a class=&quot;carousel-control-next&quot; href=&quot;#carouselExampleFade&quot; role=&quot;button&quot; data-bs-slide=&quot;next&quot;&gt;
&lt;span class=&quot;carousel-control-next-icon&quot; aria-hidden=&quot;true&quot;&gt;&lt;/span&gt;
&lt;span class=&quot;sr-only&quot;&gt;Next&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Next&lt;/span&gt;
&lt;/a&gt;
&lt;/div&gt;
</code></pre>

2
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Dropdowns.cshtml

@ -486,7 +486,7 @@
&lt;div class=&quot;btn-group dropright&quot;&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-danger&quot;&gt;Action&lt;/button&gt;
&lt;button type=&quot;button&quot; class=&quot;btn btn-danger dropdown-toggle dropdown-toggle-split&quot; data-bs-toggle=&quot;dropdown&quot; aria-haspopup=&quot;true&quot; aria-expanded=&quot;false&quot;&gt;
&lt;span class=&quot;sr-only&quot;&gt;Split right&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;Split right&lt;/span&gt;
&lt;/button&gt;
&lt;div class=&quot;dropdown-menu&quot;&gt;
&lt;!-- Dropdown menu links --&gt;

6
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Navs.cshtml

@ -108,7 +108,7 @@
<abp-navbar-toggle>
<abp-navbar-nav>
<abp-nav-item active="true">
<a abp-nav-link href="#">Home <span class="sr-only">(current)</span></a>
<a abp-nav-link href="#">Home <span class="visually-hidden">(current)</span></a>
</abp-nav-item>
<abp-nav-item>
<a abp-nav-link href="#">Link</a>
@ -146,7 +146,7 @@
&lt;abp-navbar-toggle&gt;
&lt;abp-navbar-nav&gt;
&lt;abp-nav-item active=&quot;true&quot;&gt;
&lt;a abp-nav-link href=&quot;#&quot;&gt;Home &lt;span class=&quot;sr-only&quot;&gt;(current)&lt;/span&gt;&lt;/a&gt;
&lt;a abp-nav-link href=&quot;#&quot;&gt;Home &lt;span class=&quot;visually-hidden&quot;&gt;(current)&lt;/span&gt;&lt;/a&gt;
&lt;/abp-nav-item&gt;
&lt;abp-nav-item&gt;
&lt;a abp-nav-link href=&quot;#&quot;&gt;Link&lt;/a&gt;
@ -184,7 +184,7 @@
&lt;/button&gt;&lt;div class=&quot;collapse navbar-collapse&quot; id=&quot;13da550319ec478099dd4c9c3efb3d09&quot;&gt;
&lt;ul class=&quot;navbar-nav&quot;&gt;
&lt;li active=&quot;true&quot; class=&quot;nav-item&quot;&gt;
&lt;a href=&quot;#&quot; class=&quot;nav-link&quot;&gt;Home &lt;span class=&quot;sr-only&quot;&gt;(current)&lt;/span&gt;&lt;/a&gt;
&lt;a href=&quot;#&quot; class=&quot;nav-link&quot;&gt;Home &lt;span class=&quot;visually-hidden&quot;&gt;(current)&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;li class=&quot;nav-item&quot;&gt;
&lt;a href=&quot;#&quot; class=&quot;nav-link&quot;&gt;Link&lt;/a&gt;

2
modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Pages/Components/Paginator.cshtml

@ -85,7 +85,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components
&lt;li class=&quot;page-item active&quot;&gt;
&lt;span class=&quot;page-link&quot;&gt;
8
&lt;span class=&quot;sr-only&quot;&gt;(current)&lt;/span&gt;
&lt;span class=&quot;visually-hidden&quot;&gt;(current)&lt;/span&gt;
&lt;/span&gt;
&lt;/li&gt;
&lt;li class=&quot;page-item &quot;&gt;

16
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Detail.cshtml

@ -63,13 +63,13 @@
<div class="article-infos">
<div class="user-card mt-3 mb-4">
<div class="row">
<div class="col-auto pr-1">
<div class="col-auto pe-1">
@if (Model.Post.Writer != null)
{
<img gravatar-email="@Model.Post.Writer.Email" default-image="Identicon" class="article-avatar" />
}
</div>
<div class="col pl-1">
<div class="col ps-1">
@if (Model.Post.Writer != null)
{
<h5 class="mt-2 mb-1">@(Model.Post.Writer.UserName) <span>@BloggingPageHelper.ConvertDatetimeToTimeAgo(Model.Post.CreationTime)</span></h5>
@ -124,13 +124,13 @@
<hr />
<div class="mb-2 mt-1">
@(L["ShareOn"].Value + " :")
<a href="#" target="_blank" class="mr-2" id="TwitterShareLink" title="Twitter">
<a href="#" target="_blank" class="me-2" id="TwitterShareLink" title="Twitter">
Twitter <i class="fa fa-twitter"></i>
</a>
<a href="#" target="_blank" class="mr-2" id="LinkedinShareLink" title="LinkedIn">
<a href="#" target="_blank" class="me-2" id="LinkedinShareLink" title="LinkedIn">
Linkedin <i class="fa fa-linkedin"></i>
</a>
<a href="#" target="_blank" class="mr-2" id="EmailShareLink" title="E-mail">
<a href="#" target="_blank" class="me-2" id="EmailShareLink" title="E-mail">
E-mail <i class="fa fa-envelope-square"></i>
</a>
</div>
@ -149,7 +149,7 @@
{
<abp-row v-align="Start">
<abp-column size-sm="_12">
<p class="float-left"><i class="fa fa-comment"></i> @L["CommentWithCount", @Model.CommentCount]</p>
<p class="float-start"><i class="fa fa-comment"></i> @L["CommentWithCount", @Model.CommentCount]</p>
@if (hasCommentingPermission)
{
<a abp-button="Primary" class="btn-rounded float-end active" href="#LeaveComment">@L["LeaveComment"]</a>
@ -165,7 +165,7 @@
@foreach (var commentWithRepliesDto in Model.CommentsWithReplies)
{
<div class="media">
<img gravatar-email="@commentWithRepliesDto.Comment.Writer.Email" default-image="Identicon" class="d-flex mr-3 rounded-circle comment-avatar" />
<img gravatar-email="@commentWithRepliesDto.Comment.Writer.Email" default-image="Identicon" class="d-flex me-3 rounded-circle comment-avatar" />
<div class="media-body">
<h5 class="comment-owner">
@(commentWithRepliesDto.Comment.Writer == null ? "" : commentWithRepliesDto.Comment.Writer.UserName)
@ -244,7 +244,7 @@
@foreach (var reply in commentWithRepliesDto.Replies)
{
<div class="media">
<img gravatar-email="@reply.Writer.Email" default-image="Identicon" class="d-flex mr-3 rounded-circle comment-avatar" />
<img gravatar-email="@reply.Writer.Email" default-image="Identicon" class="d-flex me-3 rounded-circle comment-avatar" />
<div class="media-body">
<h5 class="comment-owner">
@(reply.Writer == null ? "" : reply.Writer.UserName)

2
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Edit.cshtml

@ -82,7 +82,7 @@
<div class="mt-3 d-flex flex-row-reverse">
<abp-button id="PostFormSubmitButton" button-type="Primary" type="submit" form="edit-post-form" text="@L["Submit"].Value" icon="check" />
<a asp-page="/Blog/Posts/Detail" asp-route-postUrl="@Model.Post.Url" asp-route-blogShortName="@Model.BlogShortName" class="btn btn-default mr-2"><span>@L["Cancel"]</span></a>
<a asp-page="/Blog/Posts/Detail" asp-route-postUrl="@Model.Post.Url" asp-route-blogShortName="@Model.BlogShortName" class="btn btn-default me-2"><span>@L["Cancel"]</span></a>
</div>
</div>
</form>

10
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/Index.cshtml

@ -57,10 +57,10 @@
<div class="article-infos">
<div class="user-card">
<div class="row">
<div class="col-auto pr-1">
<div class="col-auto pe-1">
<img gravatar-email="@post.Writer.Email" default-image="Identicon" class="article-avatar" />
</div>
<div class="col pl-1">
<div class="col ps-1">
<h5 class="mt-2 mb-1">@post.Writer.UserName <span>@BloggingPageHelper.ConvertDatetimeToTimeAgo(post.CreationTime)</span></h5>
<i class="fa fa-eye"></i> @L["WiewsWithCount", post.ReadCount]
@*<span class="vs-seperator">|</span>
@ -105,7 +105,7 @@
</a>
</div>
</div>
<div class="col-8 pl-0">
<div class="col-8 ps-0">
<h3 class="font-125">
<a asp-page="./Detail" asp-route-postUrl="@post.Url" asp-route-blogShortName="@Model.BlogShortName">@post.Title</a>
</h3>
@ -175,10 +175,10 @@
<div class="article-infos">
<div class="user-card">
<div class="row">
<div class="col-auto pr-1">
<div class="col-auto pe-1">
<img gravatar-email="@post.Writer.Email" default-image="Identicon" class="article-avatar" />
</div>
<div class="col pl-1">
<div class="col ps-1">
<h5 class="mt-2 mb-1">@post.Writer.UserName <span>@BloggingPageHelper.ConvertDatetimeToTimeAgo(post.CreationTime)</span></h5>
<i class="fa fa-eye"></i> @L["WiewsWithCount", post.ReadCount]
@*<span class="vs-seperator">|</span>

2
modules/blogging/src/Volo.Blogging.Web/Pages/Blogs/Posts/New.cshtml

@ -80,7 +80,7 @@
<div class="mt-3 d-flex flex-row-reverse">
<abp-button id="PostFormSubmitButton" button-type="Primary" type="submit" form="new-post-form" text="@L["Submit"].Value" icon="check" />
<a asp-page="./Index" class="btn btn-default mr-2"><span>@L["Cancel"]</span></a>
<a asp-page="./Index" class="btn btn-default me-2"><span>@L["Cancel"]</span></a>
</div>
</div>
</form>

2
modules/client-simulation/src/Volo.ClientSimulation.Web/Pages/ClientSimulation/SimulationArea.cshtml

@ -13,7 +13,7 @@
<form class="d-inline" id="StopButtonForm" method="post" asp-page-handler="Stop" data-ajaxForm="true">
<abp-button button-type="Primary" type="submit" disabled="@(Model.Snapshot.State != SimulationState.Started)">Stop</abp-button>
</form>
<span class="ml-3">
<span class="ms-3">
@Model.Snapshot.State
</span>
</abp-alert>

12
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Commenting/Default.cshtml

@ -16,7 +16,7 @@
@{
Func<dynamic, IHtmlContent> GetCommentTitle(CmsUserDto author, DateTime creationTime) =>
@<span>
<i class="far fa-comment-alt mr-2"></i>
<i class="far fa-comment-alt me-2"></i>
@((string.IsNullOrWhiteSpace(author.Name)
? author.UserName
: author.Name + " " + author.Surname).Trim())
@ -39,12 +39,12 @@
<div class="col-auto">
<div class="text-end">
<abp-button type="submit" button-type="Primary" size="Block">
<i class="fa fa-comment-alt mr-1"></i> @L["Send"]
<i class="fa fa-comment-alt me-1"></i> @L["Send"]
</abp-button>
@if (cancelButton)
{
<abp-button type="button" button-type="Light" class="reply-cancel-button mb-2" size="Block_Small" data-reply-id="@(repliedCommentId?.ToString() ?? "")">
<i class="fa fa-times mr-1"></i> @L["Cancel"]
<i class="fa fa-times me-1"></i> @L["Cancel"]
</abp-button>
}
</div>
@ -63,7 +63,7 @@
}
@{
Func<dynamic, IHtmlContent> GetCommentActionArea(Guid id, Guid authorId, bool isReply) =>
@<div class="inner-comment-buttons text-left">
@<div class="inner-comment-buttons text-start">
@if (!isReply)
{
@if (CurrentUser.IsAuthenticated)
@ -103,7 +103,7 @@
<div class="col-auto">
<div class="text-end">
<abp-button type="submit" button-type="Primary" size="Block"> @L["Update"] </abp-button>
<abp-button type="button" button-type="Light" size="Block_Small" class="comment-edit-cancel-button" data-id="@id.ToString()"><i class="fa fa-times mr-1"></i> @L["Cancel"] </abp-button>
<abp-button type="button" button-type="Light" size="Block_Small" class="comment-edit-cancel-button" data-id="@id.ToString()"><i class="fa fa-times me-1"></i> @L["Cancel"] </abp-button>
</div>
</div>
@ -191,7 +191,7 @@
@if (CurrentUser.IsAuthenticated)
{
<a href="#" class="comment-links comment-reply-link btn btn-primary btn-sm" data-reply-id="@comment.Id.ToString()">
<i class="fa fa-reply mr-1"></i> @L["Reply"]
<i class="fa fa-reply me-1"></i> @L["Reply"]
</a>
}
else

2
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/Rating/Default.cshtml

@ -18,7 +18,7 @@
}
if (Model.Ratings != null)
{
<a href="#" class="text-muted ml-1" data-toggle="modal" data-target="#ratingDetail">
<a href="#" class="text-muted ms-1" data-toggle="modal" data-target="#ratingDetail">
<i class="far fa-question-circle"></i>
</a>

2
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKit/Shared/Components/ReactionSelection/Default.cshtml

@ -12,7 +12,7 @@
@foreach (var reaction in Model.Reactions.Where(r => r.Count > 0))
{
<span class="ml-1 cms-reaction-icon @(reaction.IsSelectedByCurrentUser ? "cms-reaction-icon-selected" : "")" data-reaction-name="@reaction.Name" data-click-action="@(CurrentUser.IsAuthenticated ? "true" : "false")">
<span class="ms-1 cms-reaction-icon @(reaction.IsSelectedByCurrentUser ? "cms-reaction-icon-selected" : "")" data-reaction-name="@reaction.Name" data-click-action="@(CurrentUser.IsAuthenticated ? "true" : "false")">
<i class="@reaction.Icon"></i>
<small class="text-muted" style="opacity: .45;">@(reaction.Count)</small>
</span>

4
modules/docs/src/Volo.Docs.Web/Areas/Documents/TagHelpers/TreeTagHelper.cs

@ -131,13 +131,13 @@ namespace Volo.Docs.Areas.Documents.TagHelpers
{
if(node.CreationTime + TimeSpan.FromDays(14) > DateTime.Now)
{
var newBadge = sb.Append("<span class='badge badge-primary ml-2' title=\"").Append(_localizer["NewExplanation"]).Append("\">").Append(_localizer["New"]).Append("</span>").ToString();
var newBadge = sb.Append("<span class='badge badge-primary ms-2' title=\"").Append(_localizer["NewExplanation"]).Append("\">").Append(_localizer["New"]).Append("</span>").ToString();
badgeStringBuilder.Append(newBadge);
}
else if (node.LastSignificantUpdateTime != null && node.LastSignificantUpdateTime + TimeSpan.FromDays(14) > DateTime.Now)
{
var updBadge = sb.Append("<span class='badge badge-light ml-2' title=\"").Append(_localizer["UpdatedExplanation"]).Append("\">").Append(_localizer["Upd"]).Append("</span>").ToString();
var updBadge = sb.Append("<span class='badge badge-light ms-2' title=\"").Append(_localizer["UpdatedExplanation"]).Append("\">").Append(_localizer["Upd"]).Append("</span>").ToString();
badgeStringBuilder.Append(updBadge);
}
}

6
modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/Index.cshtml

@ -103,8 +103,8 @@
<div class="row">
@if (Model.VersionSelectItems.Any())
{
<div class="col @(Model.LanguageSelectListItems.Count > 1?"pr-0":"")">
<div class="docs-version @(Model.LanguageSelectListItems.Count > 1?"pr-1":"")">
<div class="col @(Model.LanguageSelectListItems.Count > 1?"pe-0":"")">
<div class="docs-version @(Model.LanguageSelectListItems.Count > 1?"pe-1":"")">
<div class="version-select">
<div class="input-group">
@ -206,7 +206,7 @@
<div class="cont-container">
@if (Model.Document.Contributors != null && Model.Document.Contributors.Count > 0)
{
<span class="for-desktop mr-3">
<span class="for-desktop me-3">
@(L["Contributors"].Value)
</span>
@foreach (var contributor in Model.Document.Contributors.OrderByDescending(c=> c.CommitCount).ToList())

2
modules/feature-management/src/Volo.Abp.FeatureManagement.Web/Pages/FeatureManagement/FeatureManagementModal.cshtml

@ -112,7 +112,7 @@
}
else
{
<abp-modal-body class="ml-4">
<abp-modal-body class="ms-4">
@L["NoFeatureFoundMessage"]
</abp-modal-body>
}

2
modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Pages/VirtualFileExplorer/Index.cshtml

@ -73,7 +73,7 @@
</li>
</ul>
<button class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-cog mr-1"></i>@UiLocalizer["Actions"]
<i class="fa fa-cog me-1"></i>@UiLocalizer["Actions"]
</button>
</div>
}

18
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/Pages/Index.cshtml

@ -40,14 +40,14 @@
<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>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fas fa-cubes text-secondary d-block my-3 fa-2x"></i> Samples</h5>
<p>See the example projects built with the ABP Framework.</p>
<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>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fas fa-users text-secondary d-block my-3 fa-2x"></i> ABP Community</h5>
<p>Get involved with a vibrant community and become a contributor.</p>
@ -64,7 +64,7 @@
<a href="https://blog.abp.io/abp?ref=tmpl" target="_blank" class="btn btn-link px-1">See Blog <i class="fas fa-chevron-right"></i></a>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fab fa-github text-secondary d-block my-3 fa-2x"></i> Github</h5>
<p>Do you love the ABP Framework? Please <strong>give a star</strong> to support it!</p>
@ -77,7 +77,7 @@
<script async defer src="https://buttons.github.io/buttons.js"></script>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fab fa-stack-overflow text-secondary d-block my-3 fa-2x"></i> Stackoverflow</h5>
<p>See answers to previously asked questions or ask a new one.</p>
@ -110,7 +110,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Application Modules
@ -118,7 +118,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Developer<br />Tools
@ -126,7 +126,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> UI<br /> Themes
@ -134,7 +134,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Premium Support
@ -142,7 +142,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Additional Services

18
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/Pages/Index.cshtml

@ -40,14 +40,14 @@
<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>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fas fa-cubes text-secondary d-block my-3 fa-2x"></i> Samples</h5>
<p>See the example projects built with the ABP Framework.</p>
<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>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fas fa-users text-secondary d-block my-3 fa-2x"></i> ABP Community</h5>
<p>Get involved with a vibrant community and become a contributor.</p>
@ -64,7 +64,7 @@
<a href="https://blog.abp.io/abp?ref=tmpl" target="_blank" class="btn btn-link px-1">See Blog <i class="fas fa-chevron-right"></i></a>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fab fa-github text-secondary d-block my-3 fa-2x"></i> Github</h5>
<p>Do you love the ABP Framework? Please <strong>give a star</strong> to support it!</p>
@ -77,7 +77,7 @@
<script async defer src="https://buttons.github.io/buttons.js"></script>
</div>
</div>
<div class="col-lg-4 border-left">
<div class="col-lg-4 border-start">
<div class="p-4">
<h5 class="mb-3"><i class="fab fa-stack-overflow text-secondary d-block my-3 fa-2x"></i> Stackoverflow</h5>
<p>See answers to previously asked questions or ask a new one.</p>
@ -110,7 +110,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Application Modules
@ -118,7 +118,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Developer<br />Tools
@ -126,7 +126,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> UI<br /> Themes
@ -134,7 +134,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Premium Support
@ -142,7 +142,7 @@
</h6>
</div>
</div>
<div class="col-lg-2 border-left">
<div class="col-lg-2 border-start">
<div class="p-3">
<h6>
<i class="fas fa-plus d-block mb-3 fa- 2x text-secondary"></i> Additional Services

Loading…
Cancel
Save