2
0

ChangeLog 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2. * HtmlForm.cs: render the onsubmit attribute.
  3. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  4. * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
  5. need to pass true here. Fixes bug #47918.
  6. 2003-07-17 Andreas Nahr <[email protected]>
  7. * HtmlContainerControl.cs: Added attributes
  8. * HtmlControl.cs: Added attributes
  9. * HtmlInputControl.cs: Fixed public signature
  10. * HtmlInputRadioButton.cs: Fixed public signature
  11. * HtmlSelect.cs: Added missing attribute
  12. * HtmlTable.cs: Added missing attribute
  13. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  14. * HtmlSelect.cs: fixed bug #44894.
  15. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  16. * HtmlImage.cs:
  17. * HtmlInputControl.cs:
  18. * HtmlSelect.cs: added control builder attribute.
  19. * HtmlSelectBuilder.cs: builder for HtmlSelect.
  20. * HtmlControlBuilder.cs: common builder for all HtmlControls.
  21. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  22. * HtmlControl.cs: _tagName is now internal.
  23. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  24. name.
  25. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  26. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  27. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  28. * HtmlInputButton.cs: fixed bug #35677.
  29. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  30. * HtmlInputControl.cs: fixed bug #35673.
  31. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  32. * HtmlInputText.cs: fixed bug #35670.
  33. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  34. * HtmlSelect.cs: fixed LoadViewstate.
  35. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  36. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  37. events.
  38. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  39. * HtmlAnchor.cs:
  40. * HtmlButton.cs:
  41. * HtmlContainerControl.cs:
  42. * HtmlControl.cs:
  43. * HtmlForm.cs:
  44. * HtmlGenericControl.cs:
  45. * HtmlImage.cs:
  46. * HtmlInputButton.cs:
  47. * HtmlInputCheckBox.cs:
  48. * HtmlInputControl.cs:
  49. * HtmlInputFile.cs:
  50. * HtmlInputHidden.cs:
  51. * HtmlInputImage.cs:
  52. * HtmlInputRadioButton.cs:
  53. * HtmlInputText.cs:
  54. * HtmlSelect.cs:
  55. * HtmlTable.cs:
  56. * HtmlTableCell.cs:
  57. * HtmlTableRow.cs:
  58. * HtmlTextArea.cs: added almost all missing attributes.
  59. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  60. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  61. if not style values are lost between postbacks.
  62. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  63. * HtmlAnchor.cs:
  64. * HtmlButton.cs:
  65. * HtmlInputButton.cs:
  66. * HtmlInputCheckBox.cs:
  67. * HtmlInputHidden.cs:
  68. * HtmlInputImage.cs:
  69. * HtmlInputText.cs:
  70. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  71. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  72. instead of maintaining some flags and strings. Implemented
  73. LoadViewState.
  74. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  75. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  76. and Value.
  77. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  78. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  79. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  80. * HtmlInputText.cs: added attribute.
  81. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  82. * HtmlForm.cs: don't render action attribute.
  83. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  84. * HtmlContainerControl.cs:
  85. (CreateControlCollection): added. All containers must have a non-empty
  86. control collection.
  87. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  88. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  89. * System.Web.UI.HtmlControls/HtmlButton.cs:
  90. * System.Web.UI.HtmlControls/HtmlControl.cs:
  91. * System.Web.UI.HtmlControls/HtmlForm.cs:
  92. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  93. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  94. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  95. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  96. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  97. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  98. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  99. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  100. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  101. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  102. * System.Web.UI.HtmlControls/HtmlTable.cs:
  103. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  104. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  105. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  106. Fixes based on class status page:
  107. - Add attributes (DefaultEvent, ParseChildren).
  108. - Fix declarations.
  109. - Explicitly implement some interfaces (IPostBackDataHandler
  110. and IPostBackEventHandler).
  111. - Implemented some missing methods.
  112. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  113. * HtmlForm.cs:
  114. (RenderChildren): use OnFormRender and OnFormPostRender.
  115. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  116. * HtmlSelect.cs:
  117. (RenderAttributes): new -> override and fixes stack overflow.
  118. (RenderChildren): only 1 option can be selected at any given time
  119. except when Multiple property is true.
  120. (Multiple): the attribute value is either "true" or "false", not
  121. "multiple".
  122. * HtmlTable.cs:
  123. (Add):
  124. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  125. * HtmlTableCell.cs:
  126. (RenderEndTag): new -> override.
  127. * HtmlTableRow.cs:
  128. (RenderChildren): fixed another stack overflow.
  129. (RenderEndTag): new -> override.
  130. * HtmlTextArea.cs:
  131. (RenderAttributes): new -> override.
  132. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  133. * HtmlInputHidden.cs: fixed constructor.
  134. * HtmlInputRadioButton.cs:
  135. (RenderAttributes): fixed stack overflow.
  136. (Name):
  137. (RenderedName): new -> override.
  138. (Value): new property.
  139. * HtmlInputText.cs:
  140. (RenderAttributes): fixed the same kind of stack overflow and make
  141. string comparison case insensitive.
  142. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  143. * HtmlForm.cs: fixed name of Enctype property and render enctype
  144. enctype attribute.
  145. * HtmlInputControl.cs: tag type is "input", not "type".
  146. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  147. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  148. defined in MS docs.
  149. * HtmlForm.cs: Render output when no IE browser.
  150. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  151. though now it always use the other .ctor.
  152. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  153. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  154. * HtmlButton.cs: RenderAttributes is an override, not new.
  155. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  156. * HtmlControl.cs: added Render method to render the tag and its
  157. attributes. Works for container and non-containers.
  158. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  159. Height property.
  160. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  161. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  162. instead of Page.Server to encode InnerText.
  163. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  164. * HtmlAnchor.cs:
  165. (RenderAttributes): new -> override and fixed little bug that made
  166. it cause an stack overflow.
  167. * HtmlContainerControl.cs: reformatted and added tag and attributes
  168. rendering.
  169. * HtmlGenericControl.cs: removed TagName, which is already in
  170. HtmlControl.
  171. * HtmlTable.cs:
  172. (RenderEndTag): new -> override.
  173. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  174. * System.Web.UI.HtmlControls/HtmlForm.cs:
  175. (RenderAttributes): changed new by override.
  176. (Name): allow setting the property.
  177. 2002-05-10 Duncan Mak <[email protected]>
  178. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  179. the right type, HtmlTableCell instead of HtmlTableRow.
  180. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  181. won't compile.
  182. * HtmlForm.cs (RenderAttributes):
  183. (RenderChildren): Commented out code that doesn't compile.
  184. 2002-05-07 Duncan Mak <[email protected]>
  185. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  186. clashing with the method defined in the parent class.
  187. (OnDataBinding): Added missing casts.
  188. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  189. 'this' to IAttributeAccessor before calling interface method.
  190. Also renamed some calls to reflect changes in the API.
  191. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  192. fixed a typo.
  193. 2001-09-03 Leen Toelen <[email protected]>
  194. * HtmlAnchor.cs: Initial implementation.
  195. * HtmlTextArea.cs: Initial implementation.
  196. 2001-08-22 Bob Smith <[email protected]>
  197. * HtmlContainerControl.cs: Initial implementation.
  198. * HtmlControl.cs: Initial implementation.
  199. * HtmlGenericControl.cs: Initial implementation.