ChangeLog 10 KB

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