ChangeLog 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlForm.cs: don't render action attribute.
  3. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  4. * HtmlContainerControl.cs:
  5. (CreateControlCollection): added. All containers must have a non-empty
  6. control collection.
  7. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  8. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  9. * System.Web.UI.HtmlControls/HtmlButton.cs:
  10. * System.Web.UI.HtmlControls/HtmlControl.cs:
  11. * System.Web.UI.HtmlControls/HtmlForm.cs:
  12. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  13. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  14. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  15. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  16. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  17. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  18. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  19. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  20. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  21. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  22. * System.Web.UI.HtmlControls/HtmlTable.cs:
  23. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  24. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  25. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  26. Fixes based on class status page:
  27. - Add attributes (DefaultEvent, ParseChildren).
  28. - Fix declarations.
  29. - Explicitly implement some interfaces (IPostBackDataHandler
  30. and IPostBackEventHandler).
  31. - Implemented some missing methods.
  32. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  33. * HtmlForm.cs:
  34. (RenderChildren): use OnFormRender and OnFormPostRender.
  35. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  36. * HtmlSelect.cs:
  37. (RenderAttributes): new -> override and fixes stack overflow.
  38. (RenderChildren): only 1 option can be selected at any given time
  39. except when Multiple property is true.
  40. (Multiple): the attribute value is either "true" or "false", not
  41. "multiple".
  42. * HtmlTable.cs:
  43. (Add):
  44. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  45. * HtmlTableCell.cs:
  46. (RenderEndTag): new -> override.
  47. * HtmlTableRow.cs:
  48. (RenderChildren): fixed another stack overflow.
  49. (RenderEndTag): new -> override.
  50. * HtmlTextArea.cs:
  51. (RenderAttributes): new -> override.
  52. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  53. * HtmlInputHidden.cs: fixed constructor.
  54. * HtmlInputRadioButton.cs:
  55. (RenderAttributes): fixed stack overflow.
  56. (Name):
  57. (RenderedName): new -> override.
  58. (Value): new property.
  59. * HtmlInputText.cs:
  60. (RenderAttributes): fixed the same kind of stack overflow and make
  61. string comparison case insensitive.
  62. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  63. * HtmlForm.cs: fixed name of Enctype property and render enctype
  64. enctype attribute.
  65. * HtmlInputControl.cs: tag type is "input", not "type".
  66. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  67. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  68. defined in MS docs.
  69. * HtmlForm.cs: Render output when no IE browser.
  70. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  71. though now it always use the other .ctor.
  72. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  73. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  74. * HtmlButton.cs: RenderAttributes is an override, not new.
  75. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  76. * HtmlControl.cs: added Render method to render the tag and its
  77. attributes. Works for container and non-containers.
  78. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  79. Height property.
  80. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  81. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  82. instead of Page.Server to encode InnerText.
  83. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  84. * HtmlAnchor.cs:
  85. (RenderAttributes): new -> override and fixed little bug that made
  86. it cause an stack overflow.
  87. * HtmlContainerControl.cs: reformatted and added tag and attributes
  88. rendering.
  89. * HtmlGenericControl.cs: removed TagName, which is already in
  90. HtmlControl.
  91. * HtmlTable.cs:
  92. (RenderEndTag): new -> override.
  93. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  94. * System.Web.UI.HtmlControls/HtmlForm.cs:
  95. (RenderAttributes): changed new by override.
  96. (Name): allow setting the property.
  97. 2002-05-10 Duncan Mak <[email protected]>
  98. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  99. the right type, HtmlTableCell instead of HtmlTableRow.
  100. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  101. won't compile.
  102. * HtmlForm.cs (RenderAttributes):
  103. (RenderChildren): Commented out code that doesn't compile.
  104. 2002-05-07 Duncan Mak <[email protected]>
  105. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  106. clashing with the method defined in the parent class.
  107. (OnDataBinding): Added missing casts.
  108. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  109. 'this' to IAttributeAccessor before calling interface method.
  110. Also renamed some calls to reflect changes in the API.
  111. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  112. fixed a typo.
  113. 2001-09-03 Leen Toelen <[email protected]>
  114. * HtmlAnchor.cs: Initial implementation.
  115. * HtmlTextArea.cs: Initial implementation.
  116. 2001-08-22 Bob Smith <[email protected]>
  117. * HtmlContainerControl.cs: Initial implementation.
  118. * HtmlControl.cs: Initial implementation.
  119. * HtmlGenericControl.cs: Initial implementation.