1. 04 Apr, 2017 3 commits
    • Andy Wilkinson's avatar
      Don't forward to welcome page that won't exist due to custom mapping · b280e309
      Andy Wilkinson authored
      Previously, WelcomePageHandlerMapping would forward to index.html.
      This assumed that the static path pattern was always /**. If it had
      been customised to, for example, /foo/**, then the forward would still
      be to index.html and a 404 would result as the page is actually
      available at /foo/index.html.
      
      At first glance, it would appear that the forward should be made to
      foo/index.html. However, as it's a forward rather than a redirect,
      any relative URLs in the index.html page would then be resolved using
      / whereas they should be resolved using /foo/. This could be addressed
      by using a redirect rather than a forward, but we don't want to do
      that as it's more invasive and would require a roundtrip back to the
      client. Instead, this commit simply stops performing the forward when
      the static path pattern is not /**.
      
      Closes gh-8788
      b280e309
    • Andy Wilkinson's avatar
      4b1e5e9c
    • Andy Wilkinson's avatar
      Add .editorconfig to improve formatting when viewing on GitHub · 43f34546
      Andy Wilkinson authored
      Closes gh-8497
      43f34546
  2. 28 Mar, 2017 5 commits
  3. 26 Mar, 2017 2 commits
  4. 24 Mar, 2017 17 commits
  5. 17 Mar, 2017 3 commits
  6. 16 Mar, 2017 1 commit
  7. 15 Mar, 2017 4 commits
  8. 14 Mar, 2017 1 commit
  9. 13 Mar, 2017 1 commit
  10. 12 Mar, 2017 1 commit
  11. 10 Mar, 2017 2 commits