* ObjectStateFormatter.cs: Merged TARGET_JVM parts in
[mono.git] / mcs / class / System.Web / System.Web.UI / ChangeLog
index ec2a58eed6360e9c4fd28d39f0de3725980b0d6e..7089e5cb38d11d77d1146742de03240a5208f074 100644 (file)
@@ -1,3 +1,84 @@
+2006-01-09  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * ObjectStateFormatter.cs: Merged TARGET_JVM parts in 
+       TypeFormatter.Read, TypeFormatter.Write from /main/5
+
+2006-01-09  Konstantin Triger <kostat@mainsoft.com>
+
+       * Page.cs: make ProcessRequest virtual under TARGET_JVM.
+
+2006-01-04  Chris Toshok  <toshok@ximian.com>
+
+       * TemplateParser.cs (.ctor): kinda gross, but handle the
+       AddAssembliesInBin case here.
+       
+       * SimpleWebHandlerParser.cs (.ctor): same.
+
+2006-01-04  Chris Toshok  <toshok@ximian.com>
+
+       * SimpleWebHandlerParser.cs: Remove the declaration of
+       compilationConfig in the CONFIGURATION_2_0 case.  it's
+       unnecessary.
+       (.ctor): ifdef out the AddAssembliesInBin call in the
+       CONFIGURATION_2_0 case.  need to revisit this.
+       (CompilationConfig): add a CONFIGURATION_2_0 version.
+
+       * BaseParser.cs: Remove the declaration of compilationConfig in
+       the CONFIGURATION_2_0 case.  it's unnecessary.
+
+2005-12-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * Control.cs: use _controls instead of the property wherever possible.
+
+2005-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * Control.cs: use the _controls field instead of the Controls property.
+       Fixes bug #76919.
+
+2005-11-30  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * KeyedList.cs: Fixed for IOrderedDictionary change in 2.0 final.
+       Now internal.
+       * KeyedListEnumerator.cs: Now internal.
+
+2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * ControlCollection.cs: allow 'null' in Remove.
+
+2005-11-28  Chris Toshok  <toshok@ximian.com>
+
+       * Page.cs (GetFormatter): CONFIGURATION_2_0 work.
+
+       * TemplateParser.cs (..ctor): CONFIGURATION_2_0 work.
+       (PagesConfig): add a CONFIGURATION_2_0 version that returns a
+       PagesSection.
+
+       * PageParser.cs (ProcessMainAttributes): CONFIGURATION_2_0 work.
+
+       * BaseParser.cs (CompilationConfig): add a CONFIGURATION_2_0
+       version that returns a CompilationSection.
+
+2005-11-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * SimpleWebHandlerParser.cs: removed 'codebehind' related stuff.
+
+2005-11-09  Chris Toshok  <toshok@ximian.com>
+
+       * ViewStateEncryptionMode.cs: new 2.0 enum.
+
+2005-11-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * TemplateParser.cs: fixes #76423. Not tested properly.
+
+2005-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * Page.cs: call LoadViewStateRecursive when the Form collection has
+       not been used by a different page (GetTypeHashCode). This fixes problems
+       when calling Server.Transfer while preserving Form and QueryString,
+       as the page we transfer to used the view state stored in the Form, which
+       contained the serialized data for the page calling Server.Transfer
+       instead.
+
 2005-10-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * Page.cs: add/remove the error before/after invoking OnError.