ChangeLog 12 KB

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