[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Web / System.Web / ChangeLog
index e21fe7a840a7ac188c6600eb404a6c00a7349ced..320e428260ba29f14c83dae1eecd1e422c90bd54 100644 (file)
@@ -1,3 +1,47 @@
+2010-07-21  Miguel de Icaza  <miguel@novell.com>
+
+       * HttpApplication.cs, HttpRuntime.cs, HttpApplicationFactory.cs:
+       Prepare for the runtime change that will terminate threadpool
+       threads when exception are not caught.
+
+2010-06-27  Marek Habersack  <mhabersack@novell.com>
+
+       * HttpUtility.cs: if IHtmlString instance is passed to HtmlEncode
+       (object), use IHtmlString.ToHtmlString () to return the value
+       without encoding it.
+
+2010-06-02  Marek Habersack  <mhabersack@novell.com>
+
+       * DefaultHttpHandler.cs: implemented, so that static file requests
+       work again in 4.0
+
+2010-06-01  Marek Habersack  <mhabersack@novell.com>
+
+       * HttpUtility.cs: moved chunks of code to the new
+       System.Web.Util.HttpEncoder class.
+
+       * HttpResponseHeader.cs: encode header names and values using
+       HttpEncoder.
+
+       * HttpRequest.cs: added internal method Validate, to validate the
+       request in 4.0 profile.
+
+       * HttpHeaderCollection.cs: added. A helper class to encode header
+       names/values on add.
+
+       * HttpApplication.cs: Pipeline () validates request by calling
+       HttpRequest.Validate in the 4.0 profile.
+
+2010-05-17  Marek Habersack  <mhabersack@novell.com>
+
+       * HttpApplicationFactory.cs: pre-application start methods must be
+       called even before App_Code is compiled.
+
+2010-05-16  Marek Habersack  <mhabersack@novell.com>
+
+       * HttpApplicationFactory.cs: let BuildManager know when it's safe
+       to cache referenced assemblies.
+
 2010-05-15  Marek Habersack  <mhabersack@novell.com>
 
        * HttpResponse.cs: added internal Context property