ChangeLog 11 KB

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