ChangeLog 13 KB

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