2
0

ChangeLog 31 KB

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