ChangeLog 10 KB

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