Commit Graph

40898 Commits

Author SHA1 Message Date
Hao Kung 8796f7e78a Merge from release 2015-06-17 11:19:41 -07:00
ASP.NET Push Bot f1581e6651 ⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: AspNet/kvm@4bc5e73335
2015-06-17 11:12:56 -07:00
ASP.NET Push Bot 0af9976cdf ⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: AspNet/kvm@d9713eef08
2015-06-17 10:41:00 -07:00
ASP.NET Push Bot 7752d21199 ⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: AspNet/kvm@85653d8038
2015-06-17 09:47:56 -07:00
Doug Bunting 27283ec098 Make `string`-based expression evaluations behave consistently
- #1485, #1487
 - handle `TemplateInfo.HtmlFieldPrefix` in `ViewDataEvaluator.Eval()`
  - attempt lookup in the `ViewDataDictionary` using full name then evaluate
    relative `expression` against `viewData.Model`
  - handle `null` or empty `expression` special case in this method (remove `throw`s)
 - always pass relative `expression` name into `Eval()`
  - remove `null` or empty `expression` handling from higher-level code
  - in a couple of cases, special-case returned `ViewDataInfo`
- #2662
 - remove incorrect guard from `DefaultHtmlGenerator.GenerateRadioButtion()`
- add doc comments for the core methods that have changed
- enable unit tests skipped due to one of above bugs
 - fix one (yeah, just one) other test with incorrect expectations
- remove functional test comments about the above bugs and update expectations

nits:
- move some comments describing `ViewDataEvaluator` methods above the methods
2015-06-16 21:54:56 -07:00
Hisham Abdullah Bin Ateya 113fa6d545 Remove "I" from "ApplicationBuilderExtensions" 2015-06-16 20:37:07 -07:00
Hisham Abdullah Bin Ateya 1e3b462210 Remove unnecessary parantheses 2015-06-16 19:49:02 -07:00
Doug Bunting 8b5931d758 Add `Encode()` and `Raw()` overrides to `IHtmlHelper<TModel>`
- #2392
- `dynamic` does not work correctly when inherited from a base `interface`
2015-06-16 18:48:07 -07:00
Chris R af6a17710b #310 Refactor IRequestIdentifierFeature. 2015-06-16 16:26:37 -07:00
Chris R cdf8072c83 #127 Target net451 and use Marshal.SizeOf<T>. 2015-06-16 15:59:30 -07:00
Hao Kung 1ed2ebcd96 Rename shouldLockout => lockoutOnFailure 2015-06-16 14:39:26 -07:00
Ajay Bhargav Baaskaran 7172608722 Using LogVerbose instead of LogInformation 2015-06-16 14:33:05 -07:00
Chris R f9ed27c3a0 React to removal of ErrorPageOptions.ShowAll. 2015-06-16 12:09:18 -07:00
Chris R fc3c63f9b5 React to the removal of ErrorPageOptions.ShowAll. 2015-06-16 12:00:30 -07:00
Hao Kung ff473d6fc8 React to identity rename 2015-06-16 11:41:04 -07:00
Ajay Bhargav Baaskaran 4fe3fbabf0 React to aspnet/Diagnostics#142 changes 2015-06-16 11:27:33 -07:00
ASP.NET Push Bot 9e016963bf ⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: AspNet/kvm@88ca356370
2015-06-16 11:03:35 -07:00
Chris R 9e547d5a9d Remove extra bracket from error page view. 2015-06-16 10:25:54 -07:00
Ajay Bhargav Baaskaran 69e051dab7 Removed Cors.Core dependency from Mvc.Core 2015-06-16 10:25:27 -07:00
Ajay Bhargav Baaskaran fcdbd17e58 Removed Diagnostics.Abstractions dependency from Mvc.Razor 2015-06-16 10:25:26 -07:00
Ajay Bhargav Baaskaran 6fd8465402 Removed unnecessary cors dependency 2015-06-16 10:25:25 -07:00
Henk Mollema 72d8c12ca3 Removed unused resource string 2015-06-16 09:51:11 -07:00
Henk Mollema 0da9e2bec5 Remove ErrorPageOptions properties except SourceCodeLineCount
- Removed all properties except `SourceCodeLineCount`
- Updated ErroPageMiddleware (including some minor code-style changes)
- Updated CompilationErrorPage.cshtml and ErrorPage.cshtml
- Added `run` command to PageGenerator project.json to execute from command line
- Include cookies on error page
- Removed showSource parameter
- Remove unused exception parameter
2015-06-16 09:51:10 -07:00
Arthur Vickers 100cb7a049 React to EF name changes. 2015-06-16 09:15:21 -07:00
Arthur Vickers ccdedc704d React to EntityOptions -> DbContextOptions rename 2015-06-15 23:01:16 -07:00
Chris R a668f4e1c0 React to HttpResponse.HeadersSent rename. 2015-06-15 18:29:20 -07:00
Chris R 1639ee07e7 React to HttpResponse.HeadersSent rename. 2015-06-15 17:49:20 -07:00
Victor Hurdugaci 00b2daa068 Fix argument parsing for fast build 2015-06-15 16:05:18 -07:00
Glenn Condron 8794e3a795 Merge pull request #658 from henkmollema/use-AddMvcWithDefaultRoute
Use AddMvcWithDefaultRoute()
2015-06-15 12:33:53 -07:00
ASP.NET Push Bot 1c09412505 ⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
Source: AspNet/kvm@21ce03f48a
2015-06-15 12:31:03 -07:00
Chris R 736e6bee2b #233 Create the wwwroot directory if it doesn't exist. 2015-06-15 11:11:08 -07:00
Stephen Halter 1592459a0b Dispose Listeners if they fail to start 2015-06-15 10:08:03 -07:00
Stephen Halter a992c78548 Dispatch user defined callback so it can't block the event loop 2015-06-15 10:07:58 -07:00
Stephen Halter adc0310491 Ensure all handles still get released after graceful shutdown 2015-06-15 09:43:01 -07:00
Stephen Halter 31057f65bc Gracefully shutdown even when there are open connections 2015-06-15 09:41:33 -07:00
Doug Bunting 296ec7736e Go one less step when resolving `[ModelMetadataType]`
- #2610
- make MVC 6's attribute consistent with data annotation's `[MetadataType]`, used in MVC 5
2015-06-14 18:02:10 -07:00
Thomas L. Kjeldsen a89847f357 Merge remote-tracking branch 'upstream/dev' into dev 2015-06-15 00:06:07 +02:00
Thomas L. Kjeldsen a68f2c17df Merge pull request #1 from moander/dev
Avoid full rebuild every time.
2015-06-14 23:31:15 +02:00
Victor Hurdugaci f377542e38 Build projects in one go 2015-06-13 14:42:16 -07:00
moander 037ba1d500 Avoid full rebuild every time.
I found this in a comment somewhere and tested it. It runs much smoother than the original one, but someone more experienced should review the change because I'm not sure what happends if the project contains bower/nmp config and so on.
2015-06-13 08:34:32 +00:00
anurse d8310239b1 Merge branch 'release' into dev 2015-06-13 00:16:47 -07:00
anurse d436955e02 Switch to xunit.runner.aspnet 2015-06-13 00:13:52 -07:00
anurse f581863445 move System.Reflection dependency to dnxcore50 in tests 2015-06-12 23:43:46 -07:00
Glenn Condron 7613b7ee81 Merge pull request #587 from glen-84/patch-1
Fix variable names in dnvminstall.ps1
2015-06-12 19:19:54 -07:00
Glenn Condron 17b2eb1060 Merge pull request #505 from MRdNk/fixosxreadme
Update README.md: To include OSX instructions to add `source dnvm.sh` to bashrc - to use in bash
2015-06-12 19:07:10 -07:00
Stephen Halter 5c6a53c491 Dispose Listeners if they fail to start 2015-06-12 17:02:31 -07:00
Stephen Halter 7e125faa73 Dispatch user defined callback so it can't block the event loop 2015-06-12 17:02:27 -07:00
Chris R e9d406e2f7 React to OnSendingHeaders rename. 2015-06-12 15:58:15 -07:00
Chris R ab3cc8bcc7 React to OnSendingHeaders rename. 2015-06-12 15:53:07 -07:00
Chris R ef4ab17700 React to OnSendingHeaders rename. 2015-06-12 15:48:45 -07:00