├── .ci ├── nunit.sh └── tests.nunit ├── .gitignore ├── .travis.yml ├── Images ├── Icon.png ├── Icon128x128.png └── Logo.xcf ├── LICENSE ├── LoadTests └── LoadTest.jmx ├── README.md └── src ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── AcspNet.Tests ├── AcspNet.Tests.csproj ├── Bootstrapper │ └── BootstrapperFactoryTests.cs ├── Core │ ├── ContextVariablesSetterTests.cs │ ├── ControllersAgentTests.cs │ ├── ControllersExecutorTests.cs │ ├── ControllersProcessorTests.cs │ ├── ControllersRequestHandlerTests.cs │ ├── PageBuilderTests.cs │ ├── PageProcessorTests.cs │ ├── RequestHandlerTests.cs │ └── StaticFilesRequestHandlerTest.cs ├── Diagnostics │ └── ExceptionInfoPageGeneratorTests.cs ├── Meta │ ├── AcspTypesFinderTests.cs │ ├── ControllersMetaDataFactoryTests.cs │ └── ControllersMetaStoreTests.cs ├── ModelBinding │ ├── Binders │ │ └── Parsers │ │ │ ├── ArrayToSpecifiedListParserTests.cs │ │ │ ├── ListToModelParserTests.cs │ │ │ └── StringToSpecifiedObjectParserTests.cs │ └── Validation │ │ ├── ObjectPropertiesValidatorTests.cs │ │ └── StringValidatorTests.cs ├── Modules │ ├── AcspNetContextTests.cs │ ├── DataCollectorTests.cs │ ├── EnvironmentTests.cs │ ├── FileReaderTests.cs │ ├── Html │ │ ├── ListsGeneratorTests.cs │ │ └── MessageBoxTests.cs │ ├── LanguageManagerTests.cs │ ├── RedirectorTests.cs │ ├── StringTableTests.cs │ └── TemplateFactoryTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Responses │ ├── AjaxTests.cs │ ├── FileTests.cs │ ├── InlineTplTests.cs │ ├── RedirectTests.cs │ └── TplTests.cs ├── Routing │ ├── ControllerPathParserTests.cs │ └── RouteMatcherTests.cs ├── Templates │ └── Test.tpl ├── TestEntities │ ├── TestBootstrapper.cs │ ├── TestController1.cs │ ├── TestController2.cs │ ├── TestController3.cs │ ├── TestController4.cs │ ├── TestController5.cs │ ├── TestEnum.cs │ ├── TestModelDateTime.cs │ ├── TestModelEMail.cs │ ├── TestModelMaxLength.cs │ ├── TestModelMinLength.cs │ ├── TestModelRegex.cs │ ├── TestModelRequired.cs │ ├── TestModelString.cs │ ├── TestModelStringsList.cs │ ├── TestModelUndefinedType.cs │ ├── TestModelWithBindProperty.cs │ └── TestModelWithExcludedProperty.cs └── packages.config ├── AcspNet.sln ├── AcspNet.sln.DotSettings ├── AcspNet ├── AcspNet.csproj ├── AcspNet.nuspec ├── AcspNetSettings.cs ├── ActionModulesAccessor.cs ├── App_Packages │ ├── Simplify.String.Sources.1.0.1.0 │ │ └── StringHelper.cs │ ├── Simplify.System.Sources.1.0.0.0 │ │ ├── AssemblyInfo.cs │ │ ├── IAssemblyInfo.cs │ │ ├── IHideObjectMembers.cs │ │ ├── ITimeProvider.cs │ │ ├── SystemTimeProvider.cs │ │ └── TimeProvider.cs │ └── Simplify.Xml.Sources.1.0.3.0 │ │ ├── XmlExtensions.cs │ │ └── XmlSerializer.cs ├── AsyncController.cs ├── AsyncControllerBase.cs ├── AsyncController{T}.cs ├── Attributes │ ├── AuthorizeAttribute.cs │ ├── DeleteAttribute.cs │ ├── GetAttribute.cs │ ├── Http400Attribute.cs │ ├── Http403Attribute.cs │ ├── Http404Attribute.cs │ ├── PostAttribute.cs │ ├── PriorityAttribute.cs │ └── PutAttribute.cs ├── Bootstrapper │ ├── BaseAcspNetBootstrapper.cs │ └── BootstrapperFactory.cs ├── Controller.cs ├── ControllerBase.cs ├── ControllerResponse.cs ├── ControllerResponseResult.cs ├── Controller{T}.cs ├── Core │ ├── ActionModulesAccessorBuilder.cs │ ├── ContextVariablesSetter.cs │ ├── ControllerExecutor.cs │ ├── ControllerFactory.cs │ ├── ControllerResponseBuilder.cs │ ├── ControllersAgent.cs │ ├── ControllersProcessor.cs │ ├── ControllersProcessorResult.cs │ ├── ControllersRequestHandler.cs │ ├── HandlerControllerType.cs │ ├── IContextVariablesSetter.cs │ ├── IControllerExecutor.cs │ ├── IControllerFactory.cs │ ├── IControllerResponseBuilder.cs │ ├── IControllersAgent.cs │ ├── IControllersProcessor.cs │ ├── IControllersRequestHandler.cs │ ├── IPageBuilder.cs │ ├── IPageProcessor.cs │ ├── IRequestHandler.cs │ ├── IResponseWriter.cs │ ├── IStaticFilesRequestHandler.cs │ ├── IStopWatchProvider.cs │ ├── IStringTableItemsSetter.cs │ ├── IViewFactory.cs │ ├── ModulesAccessorBuilder.cs │ ├── PageBuilder.cs │ ├── PageProcessor.cs │ ├── RequestHandler.cs │ ├── ResponseWriter.cs │ ├── SecurityCheckResult.cs │ ├── StaticFilesRequestHandler.cs │ ├── StopwatchProvider.cs │ ├── StringTableItemsSetter.cs │ ├── ViewAccessorBuilder.cs │ └── ViewFactory.cs ├── Diagnostics │ ├── ExceptionIDetails.html │ ├── ExceptionInfoPage.html │ └── ExceptionInfoPageGenerator.cs ├── IAcspNetSettings.cs ├── IHideObjectMembers.cs ├── IgnoreControllersAttribute.cs ├── IgnoreTypesRegistrationAttribute.cs ├── Meta │ ├── AcspTypesFinder.cs │ ├── ControllerExecParameters.cs │ ├── ControllerMetaData.cs │ ├── ControllerMetaDataFactory.cs │ ├── ControllerRole.cs │ ├── ControllerRouteInfo.cs │ ├── ControllerSecurity.cs │ ├── ControllersMetaStore.cs │ ├── IControllerMetaData.cs │ ├── IControllerMetaDataFactory.cs │ ├── IControllersMetaStore.cs │ ├── IViewsMetaStore.cs │ └── ViewsMetaStore.cs ├── ModelBinding │ ├── Attributes │ │ ├── BindPropertyAttribute.cs │ │ ├── EMailAttribute.cs │ │ ├── ExcludeAttribute.cs │ │ ├── FormatAttribute.cs │ │ ├── MaxLengthAttribute.cs │ │ ├── MinLengthAttribute.cs │ │ ├── RegexAttribute.cs │ │ └── RequiredAttribute.cs │ ├── Binders │ │ ├── HttpFormModelBinder.cs │ │ ├── HttpQueryModelBinder.cs │ │ └── Parsers │ │ │ ├── ArrayToSpecifiedListParser.cs │ │ │ ├── ListToModelParser.cs │ │ │ └── StringToSpecifiedObjectParser.cs │ ├── HttpModelHandler.cs │ ├── IModelBinder.cs │ ├── IModelHandler.cs │ ├── IModelValidator.cs │ ├── ModelBinderEventArgs.cs │ ├── ModelBindingException.cs │ ├── ModelValidationException.cs │ └── Validation │ │ ├── ObjectPropertiesValidator.cs │ │ └── StringValidator.cs ├── Modules │ ├── AcspNetContext.cs │ ├── AcspNetContextProvider.cs │ ├── DataCollector.cs │ ├── Environment.cs │ ├── FileReader.cs │ ├── Html │ │ ├── HtmlWrapper.cs │ │ ├── IHtmlWrapper.cs │ │ ├── IListsGenerator.cs │ │ ├── IMessageBox.cs │ │ ├── ListsGenerator.cs │ │ ├── MessageBox.cs │ │ └── MessageBoxStatus.cs │ ├── IAcspNetContext.cs │ ├── IAcspNetContextProvider.cs │ ├── IDataCollector.cs │ ├── IEnvironment.cs │ ├── IFileReader.cs │ ├── ILanguageManager.cs │ ├── ILanguageManagerProvider.cs │ ├── IRedirector.cs │ ├── IStringTable.cs │ ├── ITemplateFactory.cs │ ├── LanguageManager.cs │ ├── LanguageManagerProvider.cs │ ├── RedirectionType.cs │ ├── Redirector.cs │ ├── StringTable.cs │ └── TemplateFactory.cs ├── ModulesAccessor.cs ├── Owin │ ├── AcspNetOwinMiddleware.cs │ └── AppBuilderExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── Responses │ ├── Ajax.cs │ ├── File.cs │ ├── InlineTpl.cs │ ├── MessageBox.cs │ ├── MessageBoxInline.cs │ ├── Redirect.cs │ ├── StaticTpl.cs │ ├── Tpl.cs │ └── ViewModel.cs ├── Routing │ ├── ControllerPath.cs │ ├── ControllerPathParser.cs │ ├── ControllerRouteException.cs │ ├── IControllerPath.cs │ ├── IControllerPathParser.cs │ ├── IRouteMatchResult.cs │ ├── IRouteMatcher.cs │ ├── PathItem.cs │ ├── PathParameter.cs │ ├── PathSegment.cs │ ├── RouteMatchResult.cs │ └── RouteMatcher.cs ├── SyncControllerBase.cs ├── View.cs ├── ViewAccessor.cs └── packages.config └── Examples ├── AcspNet.Examples.Database ├── AcspNet.Examples.Database.csproj └── Properties │ └── AssemblyInfo.cs ├── AcspNet.Examples.Domain ├── AcspNet.Examples.Domain.csproj └── Properties │ └── AssemblyInfo.cs ├── AcspNet.Examples.Katana ├── AcspNet.Examples.Katana.csproj ├── Properties │ └── AssemblyInfo.cs ├── Startup.cs ├── Web.config └── packages.config ├── AcspNet.Examples.Nowin ├── AcspNet.Examples.Nowin.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Startup.cs └── packages.config ├── AcspNet.Examples.SelfHosted.Tests ├── AcspNet.Examples.SelfHosted.Tests.csproj ├── Controllers │ ├── Accounts │ │ └── LogoutControllerTests.cs │ └── DefaultPageControllerTests.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── AcspNet.Examples.SelfHosted ├── AcspNet.Examples.SelfHosted.csproj ├── App.config ├── App_Data │ ├── Messages.en.xml │ └── Titles.en.xml ├── Content │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrapValidator │ │ ├── bootstrapValidator.css │ │ └── bootstrapValidator.min.css ├── Controllers │ ├── Accounts │ │ ├── LoginController.cs │ │ ├── LoginPageController.cs │ │ └── LogoutController.cs │ ├── DefaultController.cs │ ├── HttpErrors │ │ └── Http404Controller.cs │ ├── Shared │ │ ├── LoginPanelController.cs │ │ └── NavbarController.cs │ ├── Static │ │ └── AboutController.cs │ └── User │ │ └── ProfileController.cs ├── Images │ └── Icon.png ├── Models │ └── Accounts │ │ └── LoginViewModel.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── bootstrapValidator │ │ ├── bootstrapValidator.js │ │ └── bootstrapValidator.min.js │ ├── jquery-2.1.1.intellisense.js │ ├── jquery-2.1.1.js │ ├── jquery-2.1.1.min.js │ └── jquery-2.1.1.min.map ├── Startup.cs ├── Styles │ ├── Colors.css │ ├── Forms.css │ ├── Forms.scss │ ├── Header.css │ ├── Header.scss │ ├── Main.css │ ├── Main.scss │ ├── MessageBox.css │ ├── MessageBox.scss │ ├── Navbar.css │ ├── Navbar.scss │ ├── Variables.css │ └── Variables.scss ├── Templates │ ├── Accounts │ │ ├── LoginPage.tpl │ │ └── LoginPage.tpl.en.xml │ ├── AcspNet │ │ └── MessageBox │ │ │ ├── ErrorMessageBox.tpl │ │ │ ├── InfoMessageBox.tpl │ │ │ ├── InlineErrorMessageBox.tpl │ │ │ ├── InlineInfoMessageBox.tpl │ │ │ ├── InlineOkMessageBox.tpl │ │ │ └── OkMessageBox.tpl │ ├── Default.tpl │ ├── HttpErrors │ │ └── Http404.tpl │ ├── Master.tpl │ ├── Master.tpl.en.xml │ ├── Navbar.tpl │ ├── Shared │ │ └── LoginPanel │ │ │ ├── GuestPanel.tpl │ │ │ └── LoggedUserPanel.tpl │ ├── Static │ │ └── About.tpl │ └── User │ │ └── Profile.tpl ├── Views │ ├── Accounts │ │ └── LoginView.cs │ └── Shared │ │ └── LoggedUserPanelView.cs ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── AcspNet.Examples.WindowsService ├── AcspNet.Examples.WindowsService.csproj ├── App.config ├── Controllers └── DefaultController.cs ├── Install.bat ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── ServiceInstaller.cs ├── Startup.cs ├── Templates └── Master.tpl ├── Uninstall.bat ├── WebApplicationStartup.cs └── packages.config /.ci/nunit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/.ci/nunit.sh -------------------------------------------------------------------------------- /.ci/tests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/.ci/tests.nunit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/.travis.yml -------------------------------------------------------------------------------- /Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/Images/Icon.png -------------------------------------------------------------------------------- /Images/Icon128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/Images/Icon128x128.png -------------------------------------------------------------------------------- /Images/Logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/Images/Logo.xcf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadTests/LoadTest.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/LoadTests/LoadTest.jmx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/README.md -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/AcspNet.Tests/AcspNet.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/AcspNet.Tests.csproj -------------------------------------------------------------------------------- /src/AcspNet.Tests/Bootstrapper/BootstrapperFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Bootstrapper/BootstrapperFactoryTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/ContextVariablesSetterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/ContextVariablesSetterTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/ControllersAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/ControllersAgentTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/ControllersExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/ControllersExecutorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/ControllersProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/ControllersProcessorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/ControllersRequestHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/ControllersRequestHandlerTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/PageBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/PageBuilderTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/PageProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/PageProcessorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/RequestHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/RequestHandlerTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Core/StaticFilesRequestHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Core/StaticFilesRequestHandlerTest.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Diagnostics/ExceptionInfoPageGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Diagnostics/ExceptionInfoPageGeneratorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Meta/AcspTypesFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Meta/AcspTypesFinderTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Meta/ControllersMetaDataFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Meta/ControllersMetaDataFactoryTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Meta/ControllersMetaStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Meta/ControllersMetaStoreTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParserTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/ModelBinding/Binders/Parsers/ListToModelParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/ModelBinding/Binders/Parsers/ListToModelParserTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/ModelBinding/Binders/Parsers/StringToSpecifiedObjectParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/ModelBinding/Binders/Parsers/StringToSpecifiedObjectParserTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/ModelBinding/Validation/ObjectPropertiesValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/ModelBinding/Validation/ObjectPropertiesValidatorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/ModelBinding/Validation/StringValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/ModelBinding/Validation/StringValidatorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/AcspNetContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/AcspNetContextTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/DataCollectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/DataCollectorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/EnvironmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/EnvironmentTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/FileReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/FileReaderTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/Html/ListsGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/Html/ListsGeneratorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/Html/MessageBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/Html/MessageBoxTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/LanguageManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/LanguageManagerTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/RedirectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/RedirectorTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/StringTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/StringTableTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Modules/TemplateFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Modules/TemplateFactoryTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Responses/AjaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Responses/AjaxTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Responses/FileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Responses/FileTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Responses/InlineTplTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Responses/InlineTplTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Responses/RedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Responses/RedirectTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Responses/TplTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Responses/TplTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Routing/ControllerPathParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Routing/ControllerPathParserTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Routing/RouteMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/Routing/RouteMatcherTests.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/Templates/Test.tpl: -------------------------------------------------------------------------------- 1 | Hello! -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestBootstrapper.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestController1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestController1.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestController2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestController2.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestController3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestController3.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestController4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestController4.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestController5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestController5.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestEnum.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelDateTime.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelEMail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelEMail.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelMaxLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelMaxLength.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelMinLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelMinLength.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelRegex.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelRequired.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelString.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelStringsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelStringsList.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelUndefinedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelUndefinedType.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelWithBindProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelWithBindProperty.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/TestEntities/TestModelWithExcludedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/TestEntities/TestModelWithExcludedProperty.cs -------------------------------------------------------------------------------- /src/AcspNet.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.Tests/packages.config -------------------------------------------------------------------------------- /src/AcspNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.sln -------------------------------------------------------------------------------- /src/AcspNet.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet.sln.DotSettings -------------------------------------------------------------------------------- /src/AcspNet/AcspNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AcspNet.csproj -------------------------------------------------------------------------------- /src/AcspNet/AcspNet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AcspNet.nuspec -------------------------------------------------------------------------------- /src/AcspNet/AcspNetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AcspNetSettings.cs -------------------------------------------------------------------------------- /src/AcspNet/ActionModulesAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ActionModulesAccessor.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.String.Sources.1.0.1.0/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.String.Sources.1.0.1.0/StringHelper.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/IAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/IAssemblyInfo.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/IHideObjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/IHideObjectMembers.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/ITimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/ITimeProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/SystemTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/SystemTimeProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/TimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.System.Sources.1.0.0.0/TimeProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.Xml.Sources.1.0.3.0/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.Xml.Sources.1.0.3.0/XmlExtensions.cs -------------------------------------------------------------------------------- /src/AcspNet/App_Packages/Simplify.Xml.Sources.1.0.3.0/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/App_Packages/Simplify.Xml.Sources.1.0.3.0/XmlSerializer.cs -------------------------------------------------------------------------------- /src/AcspNet/AsyncController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AsyncController.cs -------------------------------------------------------------------------------- /src/AcspNet/AsyncControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AsyncControllerBase.cs -------------------------------------------------------------------------------- /src/AcspNet/AsyncController{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/AsyncController{T}.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/AuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/AuthorizeAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/DeleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/DeleteAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/GetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/GetAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/Http400Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/Http400Attribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/Http403Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/Http403Attribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/Http404Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/Http404Attribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/PostAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/PostAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/PriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/PriorityAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Attributes/PutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Attributes/PutAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Bootstrapper/BaseAcspNetBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Bootstrapper/BaseAcspNetBootstrapper.cs -------------------------------------------------------------------------------- /src/AcspNet/Bootstrapper/BootstrapperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Bootstrapper/BootstrapperFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Controller.cs -------------------------------------------------------------------------------- /src/AcspNet/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ControllerBase.cs -------------------------------------------------------------------------------- /src/AcspNet/ControllerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ControllerResponse.cs -------------------------------------------------------------------------------- /src/AcspNet/ControllerResponseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ControllerResponseResult.cs -------------------------------------------------------------------------------- /src/AcspNet/Controller{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Controller{T}.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ActionModulesAccessorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ActionModulesAccessorBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ContextVariablesSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ContextVariablesSetter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllerExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllerExecutor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllerFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllerResponseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllerResponseBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllersAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllersAgent.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllersProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllersProcessor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllersProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllersProcessorResult.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ControllersRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ControllersRequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/HandlerControllerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/HandlerControllerType.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IContextVariablesSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IContextVariablesSetter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllerExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllerExecutor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllerFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllerResponseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllerResponseBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllersAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllersAgent.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllersProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllersProcessor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IControllersRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IControllersRequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IPageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IPageBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IPageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IPageProcessor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IRequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IResponseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IResponseWriter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IStaticFilesRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IStaticFilesRequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IStopWatchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IStopWatchProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IStringTableItemsSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IStringTableItemsSetter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/IViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/IViewFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ModulesAccessorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ModulesAccessorBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/PageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/PageBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/PageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/PageProcessor.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/RequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ResponseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ResponseWriter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/SecurityCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/SecurityCheckResult.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/StaticFilesRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/StaticFilesRequestHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/StopwatchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/StopwatchProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/StringTableItemsSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/StringTableItemsSetter.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ViewAccessorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ViewAccessorBuilder.cs -------------------------------------------------------------------------------- /src/AcspNet/Core/ViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Core/ViewFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Diagnostics/ExceptionIDetails.html: -------------------------------------------------------------------------------- 1 |

Exception details:

2 |
3 | {StackTrace} -------------------------------------------------------------------------------- /src/AcspNet/Diagnostics/ExceptionInfoPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Diagnostics/ExceptionInfoPage.html -------------------------------------------------------------------------------- /src/AcspNet/Diagnostics/ExceptionInfoPageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Diagnostics/ExceptionInfoPageGenerator.cs -------------------------------------------------------------------------------- /src/AcspNet/IAcspNetSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/IAcspNetSettings.cs -------------------------------------------------------------------------------- /src/AcspNet/IHideObjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/IHideObjectMembers.cs -------------------------------------------------------------------------------- /src/AcspNet/IgnoreControllersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/IgnoreControllersAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/IgnoreTypesRegistrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/IgnoreTypesRegistrationAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/AcspTypesFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/AcspTypesFinder.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerExecParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerExecParameters.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerMetaData.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerMetaDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerMetaDataFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerRole.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerRouteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerRouteInfo.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllerSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllerSecurity.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ControllersMetaStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ControllersMetaStore.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/IControllerMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/IControllerMetaData.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/IControllerMetaDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/IControllerMetaDataFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/IControllersMetaStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/IControllersMetaStore.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/IViewsMetaStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/IViewsMetaStore.cs -------------------------------------------------------------------------------- /src/AcspNet/Meta/ViewsMetaStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Meta/ViewsMetaStore.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/BindPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/BindPropertyAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/EMailAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/EMailAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/ExcludeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/ExcludeAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/FormatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/FormatAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/MaxLengthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/MaxLengthAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/MinLengthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/MinLengthAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/RegexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/RegexAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Attributes/RequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Attributes/RequiredAttribute.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Binders/HttpFormModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Binders/HttpFormModelBinder.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Binders/HttpQueryModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Binders/HttpQueryModelBinder.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParser.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Binders/Parsers/ListToModelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Binders/Parsers/ListToModelParser.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Binders/Parsers/StringToSpecifiedObjectParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Binders/Parsers/StringToSpecifiedObjectParser.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/HttpModelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/HttpModelHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/IModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/IModelBinder.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/IModelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/IModelHandler.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/IModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/IModelValidator.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/ModelBinderEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/ModelBinderEventArgs.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/ModelBindingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/ModelBindingException.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/ModelValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/ModelValidationException.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Validation/ObjectPropertiesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Validation/ObjectPropertiesValidator.cs -------------------------------------------------------------------------------- /src/AcspNet/ModelBinding/Validation/StringValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModelBinding/Validation/StringValidator.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/AcspNetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/AcspNetContext.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/AcspNetContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/AcspNetContextProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/DataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/DataCollector.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Environment.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/FileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/FileReader.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/HtmlWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/HtmlWrapper.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/IHtmlWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/IHtmlWrapper.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/IListsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/IListsGenerator.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/IMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/IMessageBox.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/ListsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/ListsGenerator.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/MessageBox.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Html/MessageBoxStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Html/MessageBoxStatus.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IAcspNetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IAcspNetContext.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IAcspNetContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IAcspNetContextProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IDataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IDataCollector.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IEnvironment.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IFileReader.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/ILanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/ILanguageManager.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/ILanguageManagerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/ILanguageManagerProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IRedirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IRedirector.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/IStringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/IStringTable.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/ITemplateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/ITemplateFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/LanguageManager.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/LanguageManagerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/LanguageManagerProvider.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/RedirectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/RedirectionType.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/Redirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/Redirector.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/StringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/StringTable.cs -------------------------------------------------------------------------------- /src/AcspNet/Modules/TemplateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Modules/TemplateFactory.cs -------------------------------------------------------------------------------- /src/AcspNet/ModulesAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ModulesAccessor.cs -------------------------------------------------------------------------------- /src/AcspNet/Owin/AcspNetOwinMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Owin/AcspNetOwinMiddleware.cs -------------------------------------------------------------------------------- /src/AcspNet/Owin/AppBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Owin/AppBuilderExtensions.cs -------------------------------------------------------------------------------- /src/AcspNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/Ajax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/Ajax.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/File.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/InlineTpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/InlineTpl.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/MessageBox.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/MessageBoxInline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/MessageBoxInline.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/Redirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/Redirect.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/StaticTpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/StaticTpl.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/Tpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/Tpl.cs -------------------------------------------------------------------------------- /src/AcspNet/Responses/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Responses/ViewModel.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/ControllerPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/ControllerPath.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/ControllerPathParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/ControllerPathParser.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/ControllerRouteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/ControllerRouteException.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/IControllerPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/IControllerPath.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/IControllerPathParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/IControllerPathParser.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/IRouteMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/IRouteMatchResult.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/IRouteMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/IRouteMatcher.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/PathItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/PathItem.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/PathParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/PathParameter.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/PathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/PathSegment.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/RouteMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/RouteMatchResult.cs -------------------------------------------------------------------------------- /src/AcspNet/Routing/RouteMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/Routing/RouteMatcher.cs -------------------------------------------------------------------------------- /src/AcspNet/SyncControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/SyncControllerBase.cs -------------------------------------------------------------------------------- /src/AcspNet/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/View.cs -------------------------------------------------------------------------------- /src/AcspNet/ViewAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/ViewAccessor.cs -------------------------------------------------------------------------------- /src/AcspNet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/AcspNet/packages.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Database/AcspNet.Examples.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Database/AcspNet.Examples.Database.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Database/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Database/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Domain/AcspNet.Examples.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Domain/AcspNet.Examples.Domain.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Katana/AcspNet.Examples.Katana.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Katana/AcspNet.Examples.Katana.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Katana/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Katana/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Katana/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Katana/Startup.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Katana/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Katana/Web.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Katana/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Katana/packages.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/AcspNet.Examples.Nowin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/AcspNet.Examples.Nowin.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/App.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/Program.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/Startup.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.Nowin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.Nowin/packages.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted.Tests/AcspNet.Examples.SelfHosted.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted.Tests/AcspNet.Examples.SelfHosted.Tests.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted.Tests/Controllers/Accounts/LogoutControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted.Tests/Controllers/Accounts/LogoutControllerTests.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted.Tests/Controllers/DefaultPageControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted.Tests/Controllers/DefaultPageControllerTests.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted.Tests/packages.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/AcspNet.Examples.SelfHosted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/AcspNet.Examples.SelfHosted.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/App.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/App_Data/Messages.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/App_Data/Messages.en.xml -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/App_Data/Titles.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/App_Data/Titles.en.xml -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.css.map -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrapValidator/bootstrapValidator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrapValidator/bootstrapValidator.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrapValidator/bootstrapValidator.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Content/bootstrapValidator/bootstrapValidator.min.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LoginController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LoginPageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LoginPageController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LogoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Accounts/LogoutController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/HttpErrors/Http404Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/HttpErrors/Http404Controller.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Shared/LoginPanelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Shared/LoginPanelController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Shared/NavbarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Shared/NavbarController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/Static/AboutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/Static/AboutController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Controllers/User/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Controllers/User/ProfileController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Images/Icon.png -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Models/Accounts/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Models/Accounts/LoginViewModel.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Program.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrapValidator/bootstrapValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrapValidator/bootstrapValidator.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrapValidator/bootstrapValidator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/bootstrapValidator/bootstrapValidator.min.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.intellisense.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Startup.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Colors.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Forms.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Forms.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Header.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Header.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Main.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Main.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/MessageBox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/MessageBox.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/MessageBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/MessageBox.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Navbar.css -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Navbar.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Styles/Variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Styles/Variables.scss -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Accounts/LoginPage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Accounts/LoginPage.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Accounts/LoginPage.tpl.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Accounts/LoginPage.tpl.en.xml -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/ErrorMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/ErrorMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InfoMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InfoMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineErrorMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineErrorMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineInfoMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineInfoMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineOkMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/InlineOkMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/OkMessageBox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/AcspNet/MessageBox/OkMessageBox.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Default.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Default.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/HttpErrors/Http404.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/HttpErrors/Http404.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Master.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Master.tpl.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Master.tpl.en.xml -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Navbar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Navbar.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Shared/LoginPanel/GuestPanel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Shared/LoginPanel/GuestPanel.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Shared/LoginPanel/LoggedUserPanel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Shared/LoginPanel/LoggedUserPanel.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/Static/About.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Templates/Static/About.tpl -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Templates/User/Profile.tpl: -------------------------------------------------------------------------------- 1 |
2 | Welcome to authorized user profile page! 3 |
-------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Views/Accounts/LoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Views/Accounts/LoginView.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/Views/Shared/LoggedUserPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/Views/Shared/LoggedUserPanelView.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.SelfHosted/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.SelfHosted/packages.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/AcspNet.Examples.WindowsService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/AcspNet.Examples.WindowsService.csproj -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/App.config -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Install.bat -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Program.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/ServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/ServiceInstaller.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Startup.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Templates/Master.tpl: -------------------------------------------------------------------------------- 1 | {MainContent} 2 | -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/Uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/Uninstall.bat -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/WebApplicationStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/WebApplicationStartup.cs -------------------------------------------------------------------------------- /src/Examples/AcspNet.Examples.WindowsService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i4004/AcspNet/HEAD/src/Examples/AcspNet.Examples.WindowsService/packages.config --------------------------------------------------------------------------------