ChangeLog 13 KB

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