ChangeLog 11 KB

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