Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-07Added copyright headers and License.txtbradwilson
2012-04-07Responding to customer and partner feedback re: the Anti-XSRF helpers.levib
What's new: - Programmatic configuration over various Anti-XSRF behaviors: -> The name of the cookie to use. -> Whether SSL is required. -> Ability to provide a nonce or other "custom data". - The exception message is now a little less cryptic. It tells you exactly what check failed (e.g. the cookie 'foo' was missing, the token was meant for a different user, etc.). - The system tries to detect if the current identity is degenerate (e.g. authenticated but without a name) and fails safe. The exception message specifies how to resolve the problem. (This check can be suppressed via config if necessary.) - Ability to get the cookie and form token strings directly if you want more manual control. - Built-in support for OpenID and Azure ACS (WIF). - For most consumers, the token size is smaller. Breaks: - The salt / domain / path parameters are all obsolete as error. The customer can achieve the same effect by using the <httpCookies> configuration element or calling the AntiForgery.* APIs that are string-based. - Not compatible with MVC 1 / 2 / 3. However, this system makes it easier to recover gracefully when an old token is submitted. CR: marcind; bradwils SR: naziml
2012-04-03added PATCH (issue #3) and OPTIONS (issue #6) as a valid HttpVerb and ↵Khalid Abuhakmeh
created corresponding filter attributes.
2012-04-03Added HttpHeadAttribute to MVC as a fix for issue #5Nick Berardi
2012-03-28Add HTML5 input type support for telphone, url, dates, times, numbers and email.Miguel de Icaza
This fixes workitem #2: http://aspnetwebstack.codeplex.com/workitem/2 * src/System.Web.Mvc/Html/DefaultEditorTemplates.cs (CreateHtmlAttributes): Parametrize input to take an optional inputType string. (PhoneNumberInputTemplate, UrlInputTemplate, HtmlInputTemplateHelper, HtmlInputTemplateHelper, DateTimeInputTemplate, DateInputTemplate, TimeInputTemplate, NumberInputTemplate, HtmlInputTemplateHelper): New HTLP5 helper methods. * src/System.Web.Mvc/Html/TemplateHelpers.cs: (_defaultEditorActions): register the new actions. * test/System.Web.Mvc.Test/Html/Test/DefaultEditorTemplatesTest.cs: Add unit tests for the new template helper methods.
2012-03-28386159/386164: Review all double-check locksbradwilson
2012-03-27383115/383116: Faster model binding prefix handlingbradwilson
2012-03-21Removed System.Web.Http.Commonbradwilson
2012-03-17Added ValueProviderUtilTest to Web API, and re-enabled disabled ↵bradwilson
ValueProviderUtilTest tests from MVC
2012-03-11Initial revision.bradwilson