ChangeLog 30 KB

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