ChangeLog 11 KB

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