ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. 2005-08-29 Chris Toshok <[email protected]>
  2. * HtmlInputSubmit.cs: new implementation.
  3. * HtmlInputReset.cs (ValidationGroup): implement
  4. * HtmlInputButton.cs (ValidationGroup): implement.
  5. 2005-08-29 Chris Toshok <[email protected]>
  6. * HtmlButton.cs: Fix some 2.0 Page/ClientScript obsolete warnings.
  7. * HtmlForm.cs: same.
  8. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  9. * HtmlAnchor.cs: no need for the resolvedHRef field, as it might be set
  10. but not used. Call ResolveUrl when rendering the attributes instead.
  11. 2005-08-28 Chris Toshok <[email protected]>
  12. * HtmlHeadBuilder.cs: this is public.
  13. * HtmlSelectBuilder.cs: in 2.0 this is public.
  14. * HtmlInputButton.cs: fix boilerplate.
  15. * HtmlInputImage.cs (RaisePostBackEvent): add missing argument.
  16. (IPostBackEventHandler.RaisePostBackEvent): in 2.0, call
  17. Page.Validation(ValidationGroup).
  18. 2005-08-28 Chris Toshok <[email protected]>
  19. * HtmlInputReset.cs: mostly complete implementation.
  20. 2005-08-28 Chris Toshok <[email protected]>
  21. * HtmlInputPassword.cs: doh, make this NET_2_0 only.
  22. 2005-08-28 Chris Toshok <[email protected]>
  23. * HtmlInputPassword.cs: implement.
  24. 2005-08-28 Chris Toshok <[email protected]>
  25. * HtmlImage.cs: corcompare fixes.
  26. * HtmlInputCheckBox.cs: same.
  27. 2005-08-27 Chris Toshok <[email protected]>
  28. * HtmlControl.cs (GetAttribute, SetAttribute): implement.
  29. 2005-08-27 Chris Toshok <[email protected]>
  30. * HtmlForm.cs (DefaultButton, DefaultFocus): implement properties.
  31. (OnPreRender): figure out (hackishly) if we're uplevel rendering.
  32. If we have a default button/focus control set, register webform.js
  33. as a client script block, and emit some JS to focus the control.
  34. (RenderAttributes): verify that the DefaultButton attribute points
  35. to a valid IButtonControl implementing control. Also remove the
  36. defaultfocus/defaultbutton attributes before calling
  37. base.RenderAttributes.
  38. 2005-08-27 Kornél Pál <[email protected]>
  39. * HtmlTableCell.cs: Fixed to use Consts.
  40. 2005-08-26 Chris Toshok <[email protected]>
  41. * HtmlButton.cs (ValidationGroup): implement.
  42. (RaisePostBackEvent): gross #ifdef-iry to make sure we only have
  43. one body of the actual RaisePostBackEvent code. Also, call
  44. Page.Validate(ValidationGroup) in the 2.0 case.
  45. 2005-08-25 Miguel de Icaza <[email protected]>
  46. * HtmlHead.cs: Implement constructor, pass the tag.
  47. 2005-08-25 Sebastien Pouliot <[email protected]>
  48. * HtmlHead.cs: Fixed base class (to HtmlGenericControl).
  49. 2005-08-25 Chris Toshok <[email protected]>
  50. * HtmlForm.cs (CreateControlCollection, OnPreRender,
  51. RenderControl): implement naively, just calling base.Method.
  52. 2005-08-25 Chris Toshok <[email protected]>
  53. * HtmlForm.cs (RenderAttributes): don't strip off the stuff after
  54. the last '/' when rendering the action. Fixes comments in
  55. nGallery.
  56. 2005-08-24 Chris Toshok <[email protected]>
  57. * HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  58. HtmlInputImage.cs, HtmlForm.cs, HtmlInputCheckBox.cs,
  59. HtmlInputHidden.cs, HtmlButton.cs, HtmlSelect.cs, HtmlControl.cs:
  60. Add MonoTODO's for all NotImplementedException's.
  61. 2005-08-18 Dick Porter <[email protected]>
  62. * HtmlTable.cs, HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  63. HtmlInputImage.cs, HtmlForm.cs, HtmlInputText.cs,
  64. HtmlInputCheckBox.cs, HtmlAnchor.cs, HtmlInputRadioButton.cs,
  65. HtmlButton.cs, HtmlInputHidden.cs, HtmlTextArea.cs,
  66. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlTitle.cs,
  67. HtmlContainerControl.cs: 2.0 API fixes and stubs and attribute fixes
  68. 2005-08-15 Sebastien Pouliot <[email protected]>
  69. * HtmlInputRadioButton.cs, HtmlInputText.cs, HtmlTextArea.cs: Renamed
  70. Load method (bad choice) to DefaultLoadPostData.
  71. 2005-08-15 Sebastien Pouliot <[email protected]>
  72. * HtmlAnchor.cs: Fixed protected RaisePostBackEvent in 2.0.
  73. * HtmlInputRadioButton.cs: Fixed Value property and LoadPostData
  74. method. Fixed support for protected LoadPostData and
  75. RaisePostDataChangedEvent in 2.0 (recursion).
  76. * HtmlInputText.cs: Fixed LoadPostData. Fixed support for protected
  77. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  78. * HtmlTextArea.cs: Fixed LoadPostData. Fixed support for protected
  79. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  80. 2005-08-15 Sebastien Pouliot <[email protected]>
  81. * HtmlTableCell.cs: Added "string" [TypeConverter] attribute to NoWrap
  82. for 2.0 profile. The class seems to be internal and not (yet?)
  83. implemented.
  84. 2005-08-13 Sebastien Pouliot <[email protected]>
  85. * HtmlAnchor.cs: Add Localizable attribute to 2.0 profile.
  86. * HtmlEmptyTagControlBuilder.cs: New. ControlBuilder required for
  87. (at least) HtmlInputControl in 2.0 profile.
  88. * HtmlInputControl.cs: Use a new ControlBuilder class for 2.0 profile.
  89. * HtmlInputText.cs: Fix DefaultValue attribute for 2.0 profile.
  90. 2005-08-09 Dick Porter <[email protected]>
  91. * HtmlSelect.cs: Clear databindings when adding a new one; cope
  92. with assorted combinations of empty text and value fields; write
  93. <option> tags manually to match ms HTML output. All fix nunit
  94. tests.
  95. 2005-08-08 Sebastien Pouliot <[email protected]>
  96. * HtmlInputControl.cs: Remove code to handle password (wrong place)
  97. and fixed type handling for 2.0.
  98. * HtmlInputText.cs: Added code to remove (only in 1.x) the value when
  99. the type == password. Tests indicates that the value is present for
  100. 2.0.
  101. 2005-08-05 Dick Porter <[email protected]>
  102. * HtmlSelect.cs: Fix databinding when one or other of Name and
  103. Value aren't supplied (thanks to Peter for the patch); Make
  104. <option> indenting match ms output.
  105. 2005-07-30 Ben Maurer <[email protected]>
  106. * HtmlForm.cs: Make sure we actually put the "?" in the url
  107. 2005-07-29 Dick Porter <[email protected]>
  108. * HtmlForm.cs: Simplify the rendering code by using QueryStringRaw
  109. instead of building the query string by hand
  110. 2005-07-27 Dick Porter <[email protected]>
  111. * HtmlInputCheckBox.cs: New implementation
  112. 2005-07-26 Peter Dennis Bartok <[email protected]>
  113. * HtmlSelect.cs: Added missing attributes
  114. 2005-07-26 Dick Porter <[email protected]>
  115. * HtmlSelect.cs: New implementation
  116. 2005-07-26 Miguel de Icaza <[email protected]>
  117. * HtmlForm.cs: It is possible to have keys with no values in the
  118. query string, do not try to process those on the foreach loop.
  119. The question is: what should happen if I only get the key?
  120. Example: file_with_a_form.aspx?a
  121. 2005-07-25 Peter Dennis Bartok <[email protected]>
  122. * HtmlForml.cs: Implemented UniqueID (new in sp1)
  123. * HtmlButton.cs, HtmlInputButton.cs, HtmlInputImage.cs: Attribute fixes
  124. 2005-07-24 Dick Porter <[email protected]>
  125. * HtmlForm.cs: Add the trailing query string to the form action;
  126. fixes bug shown in Test/standalone/htmlform/qs_postback.aspx
  127. 2005-07-22 Dick Porter <[email protected]>
  128. * HtmlInputFile.cs: Add assembly attributes
  129. 2005-07-21 Dick Porter <[email protected]>
  130. * HtmlImage.cs: The src attribute needs to be a relative URL;
  131. close the HTML element when rendering attributes, to match the MS
  132. impl.
  133. * HtmlForm.cs: Added assembly attributes; don't render ID twice;
  134. don't render enctype and target if they are empty strings;
  135. implement a Render overload to keep corcompare quiet.
  136. 2005-07-20 Chris Toshok <[email protected]>
  137. * HtmlForm.cs (RenderAttributes): if there are submit statements,
  138. we need to render those.
  139. * HtmlInputImage.cs: same.
  140. * HtmlInputButton.cs: hook up the client validation stuff.
  141. * HtmlButton.cs: same, except a lot more complicated due to
  142. postback handling.
  143. 2005-07-19 Dick Porter <[email protected]>
  144. * HtmlImage.cs: Added attributes; use Int32.Parse instead of
  145. Convert.ToInt32
  146. 2005-07-18 Sebastien Pouliot <[email protected]>
  147. * HtmlInputControl.cs: Fix Type when using ctor(null). Now use
  148. ControlID for Name (and not ID). Added ControlBuilder attribute.
  149. * HtmlTable.cs: Simplify check when adding controls.
  150. * HtmlTableRow.cs: Simplify check when adding controls.
  151. 2005-07-18 Jackson Harper <[email protected]>
  152. * HtmlInputHidden.cs: Use Events Add/Remove. Add DefaultEvent
  153. attribute.
  154. 2005-07-15 Jackson Harper <[email protected]>
  155. * HtmlInputImage.cs: Use Events Add/Remove. Remove uneeded
  156. constant. Update fetching from viewstate code to use new
  157. convenience method.
  158. 2005-07-15 Jackson Harper <[email protected]>
  159. * HtmlInputButton.cs: Add DefaultEventAttribute.
  160. 2005-07-15 Sebastien Pouliot <[email protected]>
  161. * HtmlInputControl.cs: Removed internal property (no more required to
  162. compile).
  163. * HtmlInputRadioButton.cs: Optimized events.
  164. * HtmlInputText.cs: Optimized events.
  165. * HtmlTable.cs: Added CultureInfo.InvariantCulture when parsing
  166. strings to integers.
  167. * HtmlTableCell.cs: Added CultureInfo.InvariantCulture when parsing
  168. strings to integers.
  169. * HtmlTextArea.cs: Optimized events.
  170. 2005-07-15 Sebastien Pouliot <[email protected]>
  171. * HtmlAnchor.cs: Added URL resolution (doesn't get me the expected
  172. result) and fixed compatibility for a weird behaviour of the HRef
  173. attribute handling. Optimized events.
  174. 2005-07-14 Jackson Harper <[email protected]>
  175. * HtmlInputButton.cs: Use Events Add/Remove. Remove Causesvalidation
  176. string constant. Use new method for accessing ViewState
  177. data. Don't remove value from the view state if it is the default.
  178. 2005-07-14 Jackson Harper <[email protected]>
  179. * HtmlButton.cs: Use Events Add/Remove. Remove Causesvalidation
  180. string constant. Use new method for accessing ViewState
  181. data. Don't remove value from the view state if it is the default.
  182. 2005-07-14 Dick Porter <[email protected]>
  183. * HtmlInputFile.cs: New implementation
  184. 2005-07-14 Jackson Harper <[email protected]>
  185. * HtmlInputControl.cs: Use ClientID for input controls name.
  186. 2005-07-14 Dick Porter <[email protected]>
  187. * HtmlForm.cs: New Implementation
  188. 2005-07-13 Sebastien Pouliot <[email protected]>
  189. * HtmlTable.cs: Added missing attributes.
  190. * HtmlTableCell.cs: Added missing attributes except for ControlBuilder
  191. as the builder's type isn't public.
  192. * HtmlInputControl.cs: Added missing attributes.
  193. * HtmlInputText.cs: Added missing attributes.
  194. * HtmlInputRadioButton.cs: Added missing attributes.
  195. * HtmlAnchor.cs: Added missing attributes.
  196. * HtmlTextArea.cs: Added missing attributes.
  197. * HtmlTableRow.cs: Added missing attributes.
  198. 2005-07-12 Sebastien Pouliot <[email protected]>
  199. * HtmlAnchor.cs: Added DefaultValue attributes.
  200. * HtmlInputControl.cs: Added DefaultValue attributes.
  201. * HtmlInputRadioButton.cs: Added DefaultValue attributes.
  202. * HtmlInputText.cs: Added DefaultValue attributes. Added method
  203. RenderAttributes in 1.1 profile.
  204. * HtmlTable.cs: Fix DefaultValue to "".
  205. * HtmlTextArea.cs: Added DefaultValue attributes.
  206. 2005-07-12 Sebastien Pouliot <[email protected]>
  207. * HtmlTableCell.cs: Added DefaultValue attributes.
  208. * HtmlTable.cs: Added DefaultValue and ParseChildren attributes.
  209. * HtmlTableRowCollection.cs: Reworked collection to share data with
  210. HtmlTable.Controls.
  211. * HtmlTableCellCollection.cs: Reworked collection to share data with
  212. HtmlTableRow.Controls.
  213. * HtmlTableRow.cs: Added DefaultValue and ParseChildren attributes.
  214. 2005-07-09 Sebastien Pouliot <[email protected]>
  215. * HtmlTableRowCollection.cs: Fixed property name to IsReadOnly.
  216. 2005-07-08 Sebastien Pouliot <[email protected]>
  217. * HtmlTextArea.cs: Use CultureInfo.InvariantCulture in ToString ().
  218. 2005-07-08 Sebastien Pouliot <[email protected]>
  219. * HtmlContainerControl.cs: Fixed removal of attribute/viewstate for
  220. "innerhtml".
  221. * HtmlTextArea.cs: New implementation.
  222. 2005-07-07 Jackson Harper <[email protected]>
  223. * HtmlInputImage.cs: New implementation.
  224. 2005-07-07 Sebastien Pouliot <[email protected]>
  225. * HtmlAnchor.cs: protected RaisePostBackEvent is in 2.0 only.
  226. * HtmlInputControl.cs: New implementation.
  227. * HtmlInputRadioButton.cs: New implementation.
  228. * HtmlInputText.cs: New implementation.
  229. 2005-07-07 Jackson Harper <[email protected]>
  230. * HtmlInputHidden.cs: New implementation.
  231. 2005-07-07 Jackson Harper <[email protected]>
  232. * HtmlAnchor.cs: Call base OnPreRender from override.
  233. 2005-07-07 Jackson Harper <[email protected]>
  234. * HtmlInputButton.cs: New implementation.
  235. 2005-07-07 Dick Porter <[email protected]>
  236. * HtmlImage.cs: New implementation
  237. 2005-07-07 Sebastien Pouliot <[email protected]>
  238. * HtmlAnchor.cs: Fixed to remove attributes properly.
  239. * HtmlTable.cs: New implementation.
  240. * HtmlTableCell.cs: New implementation.
  241. * HtmlTableCellCollection.cs: New implementation.
  242. * HtmlTableRow.cs: New implementation.
  243. * HtmlTableRowCollection.cs: New implementation.
  244. 2005-07-06 Jackson Harper <[email protected]>
  245. * HtmlButton.cs: New implementation.
  246. 2005-07-06 Sebastien Pouliot <[email protected]>
  247. * HtmlAnchor.cs: New implementation.
  248. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  249. * HtmlTableCell.cs:
  250. * HtmlControl.cs: updates for 1.1 SP1.
  251. 2005-05-20 Gonzalo Paniagua Javier <[email protected]>
  252. * HtmlInputFile.cs: fixed typo in the setter for MaxLength. Closes bug
  253. number 74989.
  254. 2005-05-06 Lluis Sanchez Gual <[email protected]>
  255. * HtmlHead.cs: Fix warning.
  256. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  257. * HtmlForm.cs: Use the new WriteSubmitStatements method from
  258. Page.ClientScript.
  259. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  260. * HtmlInputButton.cs, HtmlAnchor.cs, HtmlButton.cs: Don't use
  261. Page.GetPostBackClientEvent since it is deprecated in 2.0.
  262. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  263. * HtmlForm.cs: Register the form in the page, so the page knows
  264. which is the main form.
  265. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  266. * HtmlHead.cs: Method name fix.
  267. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  268. * HtmlForm.cs: submitStatements holds Hashtables.
  269. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  270. * HtmlHead.cs: Implemented.
  271. * HtmlHeadBuilder.cs: Implemented.
  272. * HtmlTitle.cs: Implemented.
  273. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  274. * HtmlForm.cs: MakeRelative() can be null. Thanks to Denis Gervaille.
  275. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  276. * HtmlForm.cs: fixed the Action property when running a different
  277. page than the one requested (Transfer). Closes bug #69318.
  278. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  279. * HtmlForm.cs: Add submit statements from the new Page.ClientScript
  280. property.
  281. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  282. * HtmlForm.cs: disabled smartnavigation as we have no scripts to support
  283. it and failed when the browser was IE.
  284. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  285. * HtmlForm.cs: default value for Enctype is "".
  286. * HtmlInputFile.cs: if no one set the encoding type for the HtmlForm,
  287. we set it to "multipart/form-data". Fixes bug #58359.
  288. 2004-01-15 Alon Gazit <[email protected]>
  289. * HtmlForm.cs: The property name always return the value of the
  290. property UniqueID.
  291. 2003-12-28 Alon Gazit <[email protected]>
  292. * HtmlSelect.cs: fix typo in LoadPostData().
  293. 2003-12-29 Alon Gazit <[email protected]>
  294. * HtmlInputButton.cs: update the implementation of RenderAttributes().
  295. Change the if statement that determines if the onclick script is
  296. rendered.
  297. 2003-12-28 Alon Gazit <[email protected]>
  298. * HtmlSelect.cs: add parentheses to if statement.
  299. Currently the else statement refers to the inner if statement.
  300. 2003-12-28 Alon Gazit <[email protected]>
  301. * HtmlSelect.cs: fix upper bound of for statement.
  302. 2003-12-19 Jackson Harper <[email protected]>
  303. * HtmlInputFile.cs: Do not set value when loading post data.
  304. 2003-12-14 Alon Gazit <[email protected]>
  305. * HtmlInputButton.cs: The problem was in RenderAttributes().
  306. Before adding the script to the HTML, the number of Validators should
  307. be checked. fixes bug #52158.
  308. 2003-12-07 Alon Gazit <[email protected]>
  309. * HtmlTableCell.cs: fixing a typo in NoWrap property.
  310. 2003-12-04 Jackson Harper <[email protected]>
  311. * HtmlInputRadioButton.cs: Lookup name in postadata and compare to
  312. value. This is because radio button groups are created by setting
  313. the name to the same value with each button, then on postback the
  314. value of the name is the id of the selected radio button.
  315. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  316. * HtmlContainerControl.cs: encode/decode InnerText. Fixes bug #51653.
  317. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  318. * HtmlSelect.cs: with the new LosFormatter, we get array types right, so
  319. remove the code used to workaround that.
  320. 2003-12-01 Jackson Harper <[email protected]>
  321. * HtmlControl.cs: Fix disabled property. Patch by Alon Gazit
  322. <[email protected]>.
  323. 2003-11-25 Gonzalo Paniagua Javier <[email protected]>
  324. * HtmlSelect.cs: don't add items without data. Patch by Alon Gazit
  325. <[email protected]>. Fixes bug #51377.
  326. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  327. * HtmlInputRadioButton.cs: initialize event indexer. Patch by Alon Gazit
  328. <[email protected]>.
  329. 2003-10-29 Jackson Harper <[email protected]>
  330. * HtmlControl.cs: Make disabled an attribute of the control so it
  331. is rendered. This is a slightly modifed version of a patch
  332. by Yaron Shkop. Fixes bug #50160.
  333. 2003-10-16 Gonzalo Paniagua Javier <[email protected]>
  334. * HtmlTextArea.cs: fixed infinite recursion.
  335. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  336. * HtmlForm.cs: render the onsubmit attribute.
  337. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  338. * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
  339. need to pass true here. Fixes bug #47918.
  340. 2003-07-17 Andreas Nahr <[email protected]>
  341. * HtmlContainerControl.cs: Added attributes
  342. * HtmlControl.cs: Added attributes
  343. * HtmlInputControl.cs: Fixed public signature
  344. * HtmlInputRadioButton.cs: Fixed public signature
  345. * HtmlSelect.cs: Added missing attribute
  346. * HtmlTable.cs: Added missing attribute
  347. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  348. * HtmlSelect.cs: fixed bug #44894.
  349. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  350. * HtmlImage.cs:
  351. * HtmlInputControl.cs:
  352. * HtmlSelect.cs: added control builder attribute.
  353. * HtmlSelectBuilder.cs: builder for HtmlSelect.
  354. * HtmlControlBuilder.cs: common builder for all HtmlControls.
  355. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  356. * HtmlControl.cs: _tagName is now internal.
  357. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  358. name.
  359. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  360. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  361. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  362. * HtmlInputButton.cs: fixed bug #35677.
  363. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  364. * HtmlInputControl.cs: fixed bug #35673.
  365. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  366. * HtmlInputText.cs: fixed bug #35670.
  367. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  368. * HtmlSelect.cs: fixed LoadViewstate.
  369. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  370. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  371. events.
  372. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  373. * HtmlAnchor.cs:
  374. * HtmlButton.cs:
  375. * HtmlContainerControl.cs:
  376. * HtmlControl.cs:
  377. * HtmlForm.cs:
  378. * HtmlGenericControl.cs:
  379. * HtmlImage.cs:
  380. * HtmlInputButton.cs:
  381. * HtmlInputCheckBox.cs:
  382. * HtmlInputControl.cs:
  383. * HtmlInputFile.cs:
  384. * HtmlInputHidden.cs:
  385. * HtmlInputImage.cs:
  386. * HtmlInputRadioButton.cs:
  387. * HtmlInputText.cs:
  388. * HtmlSelect.cs:
  389. * HtmlTable.cs:
  390. * HtmlTableCell.cs:
  391. * HtmlTableRow.cs:
  392. * HtmlTextArea.cs: added almost all missing attributes.
  393. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  394. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  395. if not style values are lost between postbacks.
  396. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  397. * HtmlAnchor.cs:
  398. * HtmlButton.cs:
  399. * HtmlInputButton.cs:
  400. * HtmlInputCheckBox.cs:
  401. * HtmlInputHidden.cs:
  402. * HtmlInputImage.cs:
  403. * HtmlInputText.cs:
  404. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  405. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  406. instead of maintaining some flags and strings. Implemented
  407. LoadViewState.
  408. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  409. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  410. and Value.
  411. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  412. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  413. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  414. * HtmlInputText.cs: added attribute.
  415. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  416. * HtmlForm.cs: don't render action attribute.
  417. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  418. * HtmlContainerControl.cs:
  419. (CreateControlCollection): added. All containers must have a non-empty
  420. control collection.
  421. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  422. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  423. * System.Web.UI.HtmlControls/HtmlButton.cs:
  424. * System.Web.UI.HtmlControls/HtmlControl.cs:
  425. * System.Web.UI.HtmlControls/HtmlForm.cs:
  426. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  427. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  428. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  429. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  430. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  431. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  432. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  433. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  434. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  435. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  436. * System.Web.UI.HtmlControls/HtmlTable.cs:
  437. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  438. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  439. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  440. Fixes based on class status page:
  441. - Add attributes (DefaultEvent, ParseChildren).
  442. - Fix declarations.
  443. - Explicitly implement some interfaces (IPostBackDataHandler
  444. and IPostBackEventHandler).
  445. - Implemented some missing methods.
  446. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  447. * HtmlForm.cs:
  448. (RenderChildren): use OnFormRender and OnFormPostRender.
  449. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  450. * HtmlSelect.cs:
  451. (RenderAttributes): new -> override and fixes stack overflow.
  452. (RenderChildren): only 1 option can be selected at any given time
  453. except when Multiple property is true.
  454. (Multiple): the attribute value is either "true" or "false", not
  455. "multiple".
  456. * HtmlTable.cs:
  457. (Add):
  458. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  459. * HtmlTableCell.cs:
  460. (RenderEndTag): new -> override.
  461. * HtmlTableRow.cs:
  462. (RenderChildren): fixed another stack overflow.
  463. (RenderEndTag): new -> override.
  464. * HtmlTextArea.cs:
  465. (RenderAttributes): new -> override.
  466. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  467. * HtmlInputHidden.cs: fixed constructor.
  468. * HtmlInputRadioButton.cs:
  469. (RenderAttributes): fixed stack overflow.
  470. (Name):
  471. (RenderedName): new -> override.
  472. (Value): new property.
  473. * HtmlInputText.cs:
  474. (RenderAttributes): fixed the same kind of stack overflow and make
  475. string comparison case insensitive.
  476. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  477. * HtmlForm.cs: fixed name of Enctype property and render enctype
  478. enctype attribute.
  479. * HtmlInputControl.cs: tag type is "input", not "type".
  480. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  481. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  482. defined in MS docs.
  483. * HtmlForm.cs: Render output when no IE browser.
  484. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  485. though now it always use the other .ctor.
  486. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  487. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  488. * HtmlButton.cs: RenderAttributes is an override, not new.
  489. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  490. * HtmlControl.cs: added Render method to render the tag and its
  491. attributes. Works for container and non-containers.
  492. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  493. Height property.
  494. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  495. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  496. instead of Page.Server to encode InnerText.
  497. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  498. * HtmlAnchor.cs:
  499. (RenderAttributes): new -> override and fixed little bug that made
  500. it cause an stack overflow.
  501. * HtmlContainerControl.cs: reformatted and added tag and attributes
  502. rendering.
  503. * HtmlGenericControl.cs: removed TagName, which is already in
  504. HtmlControl.
  505. * HtmlTable.cs:
  506. (RenderEndTag): new -> override.
  507. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  508. * System.Web.UI.HtmlControls/HtmlForm.cs:
  509. (RenderAttributes): changed new by override.
  510. (Name): allow setting the property.
  511. 2002-05-10 Duncan Mak <[email protected]>
  512. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  513. the right type, HtmlTableCell instead of HtmlTableRow.
  514. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  515. won't compile.
  516. * HtmlForm.cs (RenderAttributes):
  517. (RenderChildren): Commented out code that doesn't compile.
  518. 2002-05-07 Duncan Mak <[email protected]>
  519. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  520. clashing with the method defined in the parent class.
  521. (OnDataBinding): Added missing casts.
  522. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  523. 'this' to IAttributeAccessor before calling interface method.
  524. Also renamed some calls to reflect changes in the API.
  525. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  526. fixed a typo.
  527. 2001-09-03 Leen Toelen <[email protected]>
  528. * HtmlAnchor.cs: Initial implementation.
  529. * HtmlTextArea.cs: Initial implementation.
  530. 2001-08-22 Bob Smith <[email protected]>
  531. * HtmlContainerControl.cs: Initial implementation.
  532. * HtmlControl.cs: Initial implementation.
  533. * HtmlGenericControl.cs: Initial implementation.