Moved ProviderCollectionTest.cs from System assembly to System.Configuration.
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / ChangeLog
index fd1b9cd0d7027e1e7012172f107704ccf9854a41..0b1e1b3ebe35c6a1f3a26d25f80ef6ee7c4e1ffe 100644 (file)
@@ -1,3 +1,133 @@
+2008-08-29  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlHead.cs: call base.OnInit ()
+       If Page is null, throw an exception.
+
+2008-07-25  Dean Brettle <dean@brettle.com>
+
+       * HtmlControl.cs (PreProcessRelativeReference), 
+       HtmlForm.cs (RenderAttributes), HtmlInputButton (RenderAttributes),
+       HtmlInputRadioButton (RenderAttributes), HtmlSelect (RenderChildren):
+       Encode attributes that could contain HTML special chars.
+       
+       * HtmlSelect (RenderChildren): HTML-encode option text.
+
+2008-06-30  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlForm.cs: hush the warnings
+
+2008-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * HtmlAnchor.cs: Do not render empty name, target or title attribute.
+       Removed extra check for target attribute in RenderAttributes. Use
+       string.Empty instead of "", and check string's Length instead of
+       comparison with "" or string.Empty. Minor code formatting.
+
+2008-06-04  Juraj Skripksy  <js@hotfeet.ch>
+
+       * HtmlAnchor.cs (Render): Add missing call to
+       ClientScriptManager.RegisterForEventValidation. Fixes bug #397142.
+
+2008-06-04  Juraj Skripsky  <js@hotfeet.ch>
+
+       * HtmlAnchor.cs: Do not render an empty href attribute.
+       Fixes bug #397046.
+
+2008-02-13  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * HtmlForm.cs: fixed action attribute in RenderAttributes under
+       TARGET_JVM
+
+2008-02-06  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlMeta.cs: render XHTML compliant tag if not in the Legacy
+       mode. Fixes bug #354425
+
+2008-01-17 Igor Zelmanovich  <igorz@mainsoft.com>
+
+       * HtmlSelect.cs: refactoring. 
+
+2008-01-17 Igor Zelmanovich  <igorz@mainsoft.com>
+
+       * HtmlSelect.cs: fix databinding (only 2.0), state management. 
+
+2008-01-14  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * HtmlSelect.cs: Fix infinite recursion (only in 2.0) found using 
+       Gendarme.
+
+2007-01-07 Igor Zelmanovich  <igorz@mainsoft.com>
+
+       * HtmlForm.cs: refactoring.
+
+2007-12-13  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlForm.cs, HtmlButton.cs: speed optimization - use String.Concat
+       instead of String.Format in some cases.
+
+2007-11-07  Juraj Skripsky  <js@hotfeet.ch>
+
+       * HtmlForm.cs (RenderAttributes): Render ClientID of DefaultButton.
+       Fixes bug #339426 for master pages.
+
+2007-11-06  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlForm.cs: a small DetermineRenderUplevel optimization - the
+       result is now cached in a nullable boolean variable.
+       Render the 'onkeypress' attribute if DefaultButton is used. Fixes
+       bug #339426.
+
+2007-08-27  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlForm.cs: make sure the ID is set before HtmlControls renders
+       the attributes. Fixes bug #82596
+
+2007-08-05  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * HtmlHead.cs: refactoring, used AddAttribute overload without encoding
+       on known attribute values
+
+2007-07-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
+
+       * HtmlControl.cs: fixed PreProcessRelativeReference, should be used
+       ResolveClientUrl
+
+2007-07-16  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlHeadBuilder.cs: the <meta> tag should be supported as well.
+
+       * HtmlTitle.cs: if the tag has any children, or the render method
+       delegate has been defined, render the children. Output the
+       contents of Text otherwise. Fixes bug #82102
+
+2007-05-08  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlInputButton.cs: button of type 'reset' does not invoke
+       OnServerClick event.
+       'reset' buttons clear all the controls in the form to their
+       default values.
+
+2007-05-04  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlAnchor.cs: use ResolveClientUrl when generating
+       attributes. Necessary if the control is in a master page which is
+       in a different directory than the current page.
+
+2007-05-01  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlForm.cs: do not use User-Agent directly, we must take
+       ClientTarget into account.
+
+2007-04-27  Marek Habersack  <mhabersack@novell.com>
+
+       * HtmlHeadBuilder.cs: support <link> tags - we need to map virtual
+       paths that might happen in them.
+
+2007-04-18  Igor Zelmanovich  <igorz@mainsoft.com>
+
+       * HtmlForm.cs: for TARGET_J2EE: 
+       used Page.Request.Browser to determine RenderUplevel
+
 2007-04-17  Marek Habersack  <mhabersack@novell.com>
 
        * HtmlForm.cs: use the new uplevel browser detection code.