ChangeLog 11 KB

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