ChangeLog 13 KB

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