This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.web> | |
| <!-- For IIS 5 and 6, and the Visual Studio Development Server --> | |
| <httpHandlers> | |
| <add path="*" verb="*" | |
| type="MvcErrorHandling.MvcHelpers.CustomHttpNotFoundHandler"/> | |
| </httpHandlers> | |
| </system.web> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <error statusCode="404" subStatusCode="8" path="404.htm" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| routes.MapRoute( | |
| "Default", | |
| "{controller}/{action}/{id}", | |
| new {controller = "Home", action = "Index", id = UrlParameter.Optional}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // To allow IIS to execute "/notfound" when requesting something which is disallowed, | |
| // such as /bin or /app_data. | |
| RouteTable.Routes.MapRoute( | |
| "NotFound", | |
| "notfound", | |
| new { controller = "NotFound", action = "NotFound" }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RouteTable.Routes.MapRoute( | |
| "NotFound-Catch-All", | |
| "{*any}", | |
| new { controller = "NotFound", action = "NotFound" }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.web> | |
| <httpRuntime relaxedUrlToFileSystemMapping="true"/> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <httpErrors errorMode="Custom"> | |
| <error statusCode="404" subStatusCode="-1" | |
| path="/notfound" responseMode="ExecuteURL" /> | |
| </httpErrors> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.web> | |
| <!-- For IIS 6 --> | |
| <httpHandlers> | |
| <add path="*" verb="*" | |
| type="NotFoundMvc.NotFoundHandler"/> | |
| </httpHandlers> | |
| </system.web> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Globalization; | |
| using Common.Logging; | |
| using Quartz; | |
| using Quartz.Spi; | |
| using StructureMap; | |
| using LogManager = Common.Logging.LogManager; | |
| namespace Scheduler | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // NOTE: This declaration file is now available on DefinitelyTyped: `npm install @types/xstyled__system` | |
| // As a result, this gist is no longer being maintained. | |
| /* eslint-disable @typescript-eslint/class-name-casing */ | |
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| // Note: This is an early draft; there may be issues and a few typings use any. | |
| // Acknowledgements: | |
| // - The `styled-system` typings on DefinitelyTyped: |