ChangeLog 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361
  1. 2008-01-17 Igor Zelmanovich <[email protected]>
  2. * HtmlSelect.cs: refactoring.
  3. 2008-01-17 Igor Zelmanovich <[email protected]>
  4. * HtmlSelect.cs: fix databinding (only 2.0), state management.
  5. 2008-01-14 Sebastien Pouliot <[email protected]>
  6. * HtmlSelect.cs: Fix infinite recursion (only in 2.0) found using
  7. Gendarme.
  8. 2007-01-07 Igor Zelmanovich <[email protected]>
  9. * HtmlForm.cs: refactoring.
  10. 2007-12-13 Marek Habersack <[email protected]>
  11. * HtmlForm.cs, HtmlButton.cs: speed optimization - use String.Concat
  12. instead of String.Format in some cases.
  13. 2007-11-07 Juraj Skripsky <[email protected]>
  14. * HtmlForm.cs (RenderAttributes): Render ClientID of DefaultButton.
  15. Fixes bug #339426 for master pages.
  16. 2007-11-06 Marek Habersack <[email protected]>
  17. * HtmlForm.cs: a small DetermineRenderUplevel optimization - the
  18. result is now cached in a nullable boolean variable.
  19. Render the 'onkeypress' attribute if DefaultButton is used. Fixes
  20. bug #339426.
  21. 2007-08-27 Marek Habersack <[email protected]>
  22. * HtmlForm.cs: make sure the ID is set before HtmlControls renders
  23. the attributes. Fixes bug #82596
  24. 2007-08-05 Vladimir Krasnov <[email protected]>
  25. * HtmlHead.cs: refactoring, used AddAttribute overload without encoding
  26. on known attribute values
  27. 2007-07-31 Vladimir Krasnov <[email protected]>
  28. * HtmlControl.cs: fixed PreProcessRelativeReference, should be used
  29. ResolveClientUrl
  30. 2007-07-16 Marek Habersack <[email protected]>
  31. * HtmlHeadBuilder.cs: the <meta> tag should be supported as well.
  32. * HtmlTitle.cs: if the tag has any children, or the render method
  33. delegate has been defined, render the children. Output the
  34. contents of Text otherwise. Fixes bug #82102
  35. 2007-05-08 Marek Habersack <[email protected]>
  36. * HtmlInputButton.cs: button of type 'reset' does not invoke
  37. OnServerClick event.
  38. 'reset' buttons clear all the controls in the form to their
  39. default values.
  40. 2007-05-04 Marek Habersack <[email protected]>
  41. * HtmlAnchor.cs: use ResolveClientUrl when generating
  42. attributes. Necessary if the control is in a master page which is
  43. in a different directory than the current page.
  44. 2007-05-01 Marek Habersack <[email protected]>
  45. * HtmlForm.cs: do not use User-Agent directly, we must take
  46. ClientTarget into account.
  47. 2007-04-27 Marek Habersack <[email protected]>
  48. * HtmlHeadBuilder.cs: support <link> tags - we need to map virtual
  49. paths that might happen in them.
  50. 2007-04-18 Igor Zelmanovich <[email protected]>
  51. * HtmlForm.cs: for TARGET_J2EE:
  52. used Page.Request.Browser to determine RenderUplevel
  53. 2007-04-17 Marek Habersack <[email protected]>
  54. * HtmlForm.cs: use the new uplevel browser detection code.
  55. 2007-04-11 Marek Habersack <[email protected]>
  56. * HtmlInputHidden.cs:
  57. * HtmlSelect.cs:
  58. * HtmlInputText.cs:
  59. * HtmlSelect.cs:
  60. * HtmlInputText.cs:
  61. * HtmlInputImage.cs:
  62. * HtmlInputFile.cs:
  63. * HtmlInputCheckBox.cs:
  64. * HtmlInputRadioButton.cs:
  65. * HtmlInputImage.cs: do not register the control for post back
  66. processing or if it's disabled.
  67. 2007-04-06 Marek Habersack <[email protected]>
  68. * HtmlForm.cs: render the 'name' attribute only when in non-xhtml
  69. compliant mode.
  70. 2007-02-19 Igor Zelmanovich <[email protected]>
  71. * HtmlInputCheckBox.cs:
  72. * HtmlInputControl.cs:
  73. * HtmlInputHidden.cs:
  74. * HtmlInputRadioButton.cs:
  75. * HtmlInputText.cs:
  76. * HtmlSelect.cs:
  77. * HtmlTextArea.cs:
  78. fixed: Form.SubmitDisabledControls feature:
  79. not all HtmlInputControl need to be reenabled on client.
  80. 2007-02-18 Eyal Alaluf <[email protected]>
  81. * HtmlForm.cs: Under TARGET_J2EE use Page.RenderResponse instead of
  82. GetRenderResponse.
  83. 2007-01-20 Miguel de Icaza <[email protected]>
  84. * HtmlHead.cs: comment out unused code, in particular metadata is
  85. commented out because nothing could have triggered its creation.
  86. * HtmlButton.cs: Move declaration of `csm' inside the 1.1 case.
  87. 2007-01-16 Vladimir Krasnov <[email protected]>
  88. * HtmlLink.cs: fixed RenderAttributes, href should be resolved
  89. 2007-01-14 Eyal Alaluf <[email protected]>
  90. * HtmlForm.cs, HtmlAnchor.cs: Added J2EE Portal support for TARGET_J2EE.
  91. 2007-01-14 Eyal Alaluf <[email protected]>
  92. * HtmlInputImage.cs: to handle correctly relative URLs to the image.
  93. 2007-01-07 Igor Zelmanovich <[email protected]>
  94. * HtmlInputRadioButton.cs: fixed: LoadPostData.
  95. 2007-01-07 Igor Zelmanovich <[email protected]>
  96. * HtmlImputImage.cs: fixed: OnServerClick.
  97. 2006-12-27 Gonzalo Paniagua Javier <[email protected]>
  98. * HtmlForm.cs: ignore user provided 'onsubmit' for HtmlForm. See
  99. bug #76974.
  100. 2006-11-27 Igor Zelmanovich <[email protected]>
  101. * HtmlForm.cs: refactoring: Registering of client scripts
  102. moved to Page.
  103. 2006-11-17 Marek Habersack <[email protected]>
  104. * HtmlInputHidden.cs: Added support for event validation.
  105. * HtmlInputCheckBox.cs: Added support for event validation.
  106. * HtmlInputImage.cs: Added support for event validation.
  107. * HtmlInputButton.cs: Added support for event validation.
  108. * HtmlSelect.cs: Added support for event validation.
  109. * HtmlTextArea.cs: Added support for event validation.
  110. * HtmlButton.cs: Added support for event validation.
  111. * HtmlInputRadioButton.cs: Added support for event validation.
  112. * HtmlInputText.cs: Added support for event validation.
  113. 2006-11-13 Igor Zelmanovich <[email protected]>
  114. * HtmlContainerControl.cs: fixed: InnerHtml property
  115. 2006-09-18 Igor Zelmanovich <[email protected]>
  116. * HtmlHead.cs:
  117. HtmlTitle control is created if it was not declared in .aspx
  118. 2006-09-17 Igor Zelmanovich <[email protected]>
  119. * HtmlButton.cs:
  120. make rendering of the onclick attribute to consider ValidationGroup property
  121. 2006-09-17 Igor Zelmanovich <[email protected]>
  122. * HtmlInputImage.cs:
  123. make rendering of the onclick attribute to consider ValidationGroup property
  124. 2006-09-17 Igor Zelmanovich <[email protected]>
  125. * HtmlInputButton.cs:
  126. make rendering of the onclick attribute to consider ValidationGroup property
  127. 2006-09-17 Igor Zelmanovich <[email protected]>
  128. * HtmlAnchor.cs:
  129. implemented CausesValidation and ValidationGroup properties
  130. 2006-09-10 Vladimir Krasnov <[email protected]>
  131. * HtmlInputFile.cs: fixed Value property
  132. 2006-08-23 Gonzalo Paniagua Javier <[email protected]>
  133. * HtmlTextArea.cs: encode the value in 1.x too. Patch by Dean Brettle.
  134. 2006-08-08 Vladimir Krasnov <[email protected]>
  135. * HtmlTable.cs:
  136. * HtmlTableRow.cs: fixed ParseChildren attribute to be compliant
  137. to .net
  138. 2006-07-12 Andrew Skiba <[email protected]>
  139. * HtmlInputControl.cs: remove obsolete #if NET_2_0
  140. 2006-06-06 Juraj Skripsky <[email protected]>
  141. * HtmlForm.cs (RenderAttributes): Sync with changes to HttpRequest.
  142. Fixes bug #78591.
  143. 2006-04-21 Gonzalo Paniagua Javier <[email protected]>
  144. * HtmlTextArea.cs: Value is HtmlEncoded/Decoded in 2.0. Fixes
  145. bug #78074.
  146. 2006-04-21 Gonzalo Paniagua Javier <[email protected]>
  147. * HtmlInputRadioButton.cs: Value returns the ID only when there's no
  148. "value" set. Fixes bug #78101.
  149. 2006-03-19 Vladimir Krasnov <[email protected]>
  150. * HtmlAnchor.cs: fixed RenderAttributes, if target attribute is empty
  151. it shouldn't be rendered
  152. * HtmlForm.cs: fixed Method, default method "post" should be added if
  153. its value null or empty string
  154. * HtmlInputImage.cs: fixed SetAtt, it removes attributes if it has null
  155. value, the fix is to remove attributes with empty string value too
  156. 2006-02-23 Chris Toshok <[email protected]>
  157. * HtmlButton.cs: fix corcompare output.
  158. * HtmlInputButton.cs: same.
  159. * HtmlInputImage.cs: same.
  160. * HtmlInputReset.cs: same.
  161. 2006-01-22 Chris Toshok <[email protected]>
  162. * HtmlInputButton.cs:
  163. s/GetPostBackClientEvent/GetPostBackEventReference.
  164. 2005-12-01 Gonzalo Paniagua Javier <[email protected]>
  165. * HtmlTableRow.cs: Cells is virtual in latest 1.1.
  166. 2005-11-30 Gonzalo Paniagua Javier <[email protected]>
  167. * HtmlTableRow.cs: fixed the same problem in bug #76815 but this time
  168. for cells.
  169. * HtmlTable.cs: moved WriteLine around.
  170. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  171. * HtmlForm.cs: more class-status fixes.
  172. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  173. * HtmlTextArea.cs: 'Name' is the UniqueID. Fixes bug #76802.
  174. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  175. * HtmlTable.cs: use the base class RenderChildren, as '_rows'
  176. might not be the actual collection being used. Fixes bug #76815.
  177. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  178. * HtmlInputFile.cs: if no one else set the encoding type for the
  179. containing form and there's a HtmlInputFile, set Enctype to
  180. 'multipart/form-data'. Fixes bug #76837.
  181. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  182. * HtmlInputButton.cs: render the onclick attribute only when the
  183. button is a 'submit' and no validators or when the button is a
  184. 'button' and there's a registered ServerClick event. Fixes bug #76781.
  185. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  186. * HtmlForm.cs: register the form and require viewstate hidden field to
  187. be rendered in Render() even if OnInit is not called.
  188. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  189. * HtmlHead.cs: fix the 2.0 build.
  190. 2005-09-22 Gonzalo Paniagua Javier <[email protected]>
  191. * HtmlForm.cs: when transfering from one page to another and using
  192. cookieless session, we were doing pretty bad. Now, if the current path
  193. and the original are the same, we just use the filename. Otherwise
  194. we make the action location be relative to the original URL.
  195. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  196. * HtmlInputButton.cs: render the onclick for doing a postback even when
  197. there are no validators.
  198. 2005-09-19 Sebastien Pouliot <[email protected]>
  199. * HtmlInputPassword.cs: Removed ctor(string) as it's not in 2.0 RC.
  200. 2005-09-19 Sebastien Pouliot <[email protected]>
  201. * HtmlAnchor.cs: Added [SupportsEventValidation] on class and
  202. [UrlProperty] on HRef property for 2.0.
  203. * HtmlButton.cs: Added [SupportsEventValidation] for 2.0.
  204. * HtmlHead.cs: Remove IPageHeader interface.
  205. * HtmlImage.cs: Added [UrlProperty] on Src property for 2.0.
  206. * HtmlInputButton.cs: Added [SupportsEventValidation] for 2.0.
  207. * HtmlInputCheckBox.cs: Added [SupportsEventValidation] for 2.0.
  208. * HtmlInputHidden.cs: Added [SupportsEventValidation] for 2.0.
  209. * HtmlInputImage.cs: Added [SupportsEventValidation] on class and
  210. [UrlProperty] on Src property for 2.0.
  211. * HtmlInputPassword.cs: Added [SupportsEventValidation].
  212. * HtmlInputRadioButton.cs: Added [SupportsEventValidation] for 2.0.
  213. * HtmlInputReset.cs: Added [SupportsEventValidation].
  214. * HtmlInputSubmit.cs: Added [SupportsEventValidation].
  215. * HtmlInputText.cs: Added [SupportsEventValidation] on class and
  216. re-enabled RenderAttribute for 2.0.
  217. * HtmlLink.cs: Added [UrlProperty] on HRef property for 2.0.
  218. * HtmlSelect.cs: Added [SupportsEventValidation] for 2.0.
  219. * HtmlTextArea.cs: Added [SupportsEventValidation] for 2.0.
  220. 2005-09-18 Chris Toshok <[email protected]>
  221. * HtmlButton.cs (RenderAttribute): make sure to use WriteAttribute
  222. instead of AddAttribute when dealing with "onclick."
  223. 2005-09-14 Sebastien Pouliot <[email protected]>
  224. * HtmlHead.cs: Fixed parameter orders for CreateStyleRule.
  225. 2005-09-11 Chris Toshok <[email protected]>
  226. * HtmlInputFile.cs (set_Value): add a message to the
  227. NotSupportedException.
  228. * HtmlInputControl.cs (RenderAttributes): add Page != null to the
  229. checks before we register our control with the
  230. __enabledControlArray JS array.
  231. 2005-09-09 Chris Toshok <[email protected]>
  232. * HtmlInputButton.cs (CausesValidation): this is stored in
  233. Attributes, not ViewState.
  234. (ValidationGroup): same.
  235. (RenderAttributes): remove CausesValidation from the list of
  236. Attributes before calling base.RenderAttributes. Don't, however,
  237. remove ValidationGroup, to replicate an MS bug.
  238. 2005-09-07 Chris Toshok <[email protected]>
  239. * HtmlForm.cs (DefaultFocus): not stored in Attributes either.
  240. (Name): not sure about this property.. the getter apparently just
  241. returns UniqueID, and the setter does nothing that I can figure
  242. out.
  243. (RenderAttributes): don't bother to remove "name", since it's not
  244. in the attributes anyway.
  245. 2005-09-07 Gonzalo Paniagua Javier <[email protected]>
  246. * HtmlInputControl.cs: use the Name property instead of the ClientID.
  247. The 'name' attribute rendered contains colons if inside a
  248. NamingContainer.
  249. 2005-09-07 Chris Toshok <[email protected]>
  250. * HtmlInputCheckBox.cs (Checked): uncomment the
  251. MinimizableAttributeTypeConverter attribute.
  252. * HtmlControl.cs (Disabled): uncomment the
  253. MinimizableAttributeTypeConverter attribute.
  254. * HtmlForm.cs (SubmitDisabledControls): remove the MonoTODO.
  255. * HtmlTableCell.cs (NoWrap): uncomment the
  256. MinimizableAttributeTypeConverter attribute.
  257. * HtmlLink.cs (Href): remove the MonoTODO.
  258. * HtmlMeta.cs (Name): remove the MonoTODO.
  259. (Scheme): same.
  260. (Render): add (pretty bogus, really..) implementation. not sure
  261. why we need this one.
  262. 2005-09-06 Chris Toshok <[email protected]>
  263. * HtmlInputControl.cs (RenderAttributes): Check Page.Form for
  264. null.
  265. 2005-09-06 Chris Toshok <[email protected]>
  266. * HtmlInputControl.cs (RenderAttributes): use ClientID instead of
  267. ID.
  268. 2005-09-06 Chris Toshok <[email protected]>
  269. * HtmlHead.cs (AddParsedSubObject): nuke, not in corcompare.
  270. (AddedControl): move the HtmlTitle logic here.
  271. (RemovedControl): clear out the title if that was the control that
  272. was removed.
  273. * HtmlLink.cs: new implementation.
  274. * HtmlMeta.cs: new implementation.
  275. 2005-09-06 Chris Toshok <[email protected]>
  276. * HtmlInputControl.cs (RenderAttributes): add ourselves to the
  277. __enabledControlArray JS array if we're currently enabled and the
  278. form is set to SubmitDisabledControls.
  279. * HtmlForm.cs (OnInit): call Page.RegisterForm here.
  280. (DetermineRenderUplevel): split this out of OnPreRender and make
  281. it internal so HtmlInputControl can call it.
  282. (OnPreRender): add handling for SubmitDisabledControls.
  283. 2005-09-05 Chris Toshok <[email protected]>
  284. * HtmlForm.cs (DefaultButton): this isn't stored as an Attribute,
  285. or in the ViewState. where then?
  286. (DefaultFocus): this one is stored in the ViewState, not as an
  287. Attribute.
  288. (SubmitDisabledControls): implement just as a boolean flag, not in
  289. the viewstate or attributes.
  290. (RenderAttributes): defaultfocus and defaultbutton are no longer
  291. in Attributes.
  292. 2005-09-04 Chris Toshok <[email protected]>
  293. * HtmlInputButton: Fix the 2.0/1.0 postback stuff the right way.
  294. * HtmlInputCheckBox: Fix the 2.0/1.0 postback stuff the right way.
  295. * HtmlInputFile.cs: Fix the 2.0/1.0 postback stuff the right way.
  296. * HtmlInputHidden.cs: Fix the 2.0/1.0 postback stuff the right
  297. way, and in OnPreRender, call Page.RegisterRequiresPostback.
  298. * HtmlInputImage.cs: Fix the 2.0/1.0 postback stuff the right way,
  299. and in OnPreRender, call Page.RegisterRequiresPostback.
  300. * HtmlInputRadioButton.cs (OnPreRender): call
  301. Page.RegisterRequiresPostback.
  302. * HtmlInputText.cs: Fix the 2.0/1.0 postback stuff the right way.
  303. Also, in OnPreRender, call Page.RegisterRequiresPostback.
  304. * HtmlTextArea.cs (OnPreRender): call
  305. Page.RegisterRequiresPostback.
  306. 2005-09-02 Chris Toshok <[email protected]>
  307. * HtmlSelect.cs: implement 2.0 DataSourceID data binding.
  308. 2005-09-02 Chris Toshok <[email protected]>
  309. * HtmlInputReset.cs (ValidationGroup): remove the MonoTODO.
  310. * htmlinputimage.cs: implement the 2.0 versions of loadpostdata,
  311. raisepostdatachangedevent, and raisepostbackevent.
  312. (validationgroup): implement.
  313. * htmlinputcheckbox.cs: implement the 2.0 versions of loadpostdata
  314. and raisepostdatachangedevent.
  315. * HtmlInputHidden.cs: implement the 2.0 versions of LoadPostData
  316. and RaisePostDataChangedEvent.
  317. * HtmlInputButton.cs (RaisePostBackEventInternal): split out the
  318. body of both RaisePostBackEvent impl's here, and fix it up so we
  319. use the property Page.Validate call in 2.0.
  320. (RaisePostBackEvent): call RaisePostBackEventInternal.
  321. (IPostBackEventHandler.RaisePostBackEvent): same.
  322. * HtmlImage.cs (Align): the test case shows that we don't need to
  323. validate input.
  324. 2005-09-01 Sebastien Pouliot <[email protected]>
  325. * HtmlTableCell.cs, HtmlTableRowCollection.cs, HtmlInputFile.cs,
  326. HtmlHead.cs, HtmlInputReset.cs, HtmlForm.cs, HtmlInputText.cs,
  327. HtmlHeadBuilder.cs, HtmlInputRadioButton.cs, HtmlAnchor.cs,
  328. HtmlButton.cs, HtmlTextArea.cs, HtmlGenericControl.cs,
  329. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlImage.cs,
  330. HtmlSelectBuilder.cs, HtmlTable.cs, HtmlInputButton.cs,
  331. HtmlInputImage.cs, HtmlTableCellCollection.cs, HtmlInputCheckBox.cs,
  332. HtmlInputHidden.cs, HtmlTitle.cs, HtmlInputPassword.cs,
  333. HtmlContainerControl.cs, HtmlInputSubmit.cs: Add missing security
  334. attributes AspNetHostingPermission for Minimal level on all classes
  335. (LinkDemand) and for non-sealed classes (InheritanceDemand).
  336. 2005-08-29 Chris Toshok <[email protected]>
  337. * System.Web.UI.HtmlControls/HtmlTableCell.cs,
  338. System.Web.UI.HtmlControls/HtmlInputFile.cs,
  339. System.Web.UI.HtmlControls/HtmlForm.cs,
  340. System.Web.UI.HtmlControls/HtmlInputText.cs,
  341. System.Web.UI.HtmlControls/HtmlInputRadioButton.cs,
  342. System.Web.UI.HtmlControls/HtmlAnchor.cs,
  343. System.Web.UI.HtmlControls/HtmlButton.cs,
  344. System.Web.UI.HtmlControls/HtmlTextArea.cs,
  345. System.Web.UI.HtmlControls/HtmlGenericControl.cs,
  346. System.Web.UI.HtmlControls/HtmlSelect.cs,
  347. System.Web.UI.HtmlControls/HtmlTableRow.cs,
  348. System.Web.UI.HtmlControls/HtmlControl.cs,
  349. System.Web.UI.HtmlControls/HtmlImage.cs,
  350. System.Web.UI.HtmlControls/HtmlTable.cs,
  351. System.Web.UI.HtmlControls/HtmlInputButton.cs,
  352. System.Web.UI.HtmlControls/HtmlInputControl.cs,
  353. System.Web.UI.HtmlControls/HtmlInputImage.cs,
  354. System.Web.UI.HtmlControls/HtmlInputCheckBox.cs,
  355. System.Web.UI.HtmlControls/HtmlInputHidden.cs,
  356. System.Web.UI/Control.cs: Add WebSysDescription/WebCategory
  357. attributes.
  358. 2005-08-29 Chris Toshok <[email protected]>
  359. * HtmlInputSubmit.cs: new implementation.
  360. * HtmlInputReset.cs (ValidationGroup): implement
  361. * HtmlInputButton.cs (ValidationGroup): implement.
  362. 2005-08-29 Chris Toshok <[email protected]>
  363. * HtmlButton.cs: Fix some 2.0 Page/ClientScript obsolete warnings.
  364. * HtmlForm.cs: same.
  365. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  366. * HtmlAnchor.cs: no need for the resolvedHRef field, as it might be set
  367. but not used. Call ResolveUrl when rendering the attributes instead.
  368. 2005-08-28 Chris Toshok <[email protected]>
  369. * HtmlHeadBuilder.cs: this is public.
  370. * HtmlSelectBuilder.cs: in 2.0 this is public.
  371. * HtmlInputButton.cs: fix boilerplate.
  372. * HtmlInputImage.cs (RaisePostBackEvent): add missing argument.
  373. (IPostBackEventHandler.RaisePostBackEvent): in 2.0, call
  374. Page.Validation(ValidationGroup).
  375. 2005-08-28 Chris Toshok <[email protected]>
  376. * HtmlInputReset.cs: mostly complete implementation.
  377. 2005-08-28 Chris Toshok <[email protected]>
  378. * HtmlInputPassword.cs: doh, make this NET_2_0 only.
  379. 2005-08-28 Chris Toshok <[email protected]>
  380. * HtmlInputPassword.cs: implement.
  381. 2005-08-28 Chris Toshok <[email protected]>
  382. * HtmlImage.cs: corcompare fixes.
  383. * HtmlInputCheckBox.cs: same.
  384. 2005-08-27 Chris Toshok <[email protected]>
  385. * HtmlControl.cs (GetAttribute, SetAttribute): implement.
  386. 2005-08-27 Chris Toshok <[email protected]>
  387. * HtmlForm.cs (DefaultButton, DefaultFocus): implement properties.
  388. (OnPreRender): figure out (hackishly) if we're uplevel rendering.
  389. If we have a default button/focus control set, register webform.js
  390. as a client script block, and emit some JS to focus the control.
  391. (RenderAttributes): verify that the DefaultButton attribute points
  392. to a valid IButtonControl implementing control. Also remove the
  393. defaultfocus/defaultbutton attributes before calling
  394. base.RenderAttributes.
  395. 2005-08-27 Kornél Pál <[email protected]>
  396. * HtmlTableCell.cs: Fixed to use Consts.
  397. 2005-08-26 Chris Toshok <[email protected]>
  398. * HtmlButton.cs (ValidationGroup): implement.
  399. (RaisePostBackEvent): gross #ifdef-iry to make sure we only have
  400. one body of the actual RaisePostBackEvent code. Also, call
  401. Page.Validate(ValidationGroup) in the 2.0 case.
  402. 2005-08-25 Miguel de Icaza <[email protected]>
  403. * HtmlHead.cs: Implement constructor, pass the tag.
  404. 2005-08-25 Sebastien Pouliot <[email protected]>
  405. * HtmlHead.cs: Fixed base class (to HtmlGenericControl).
  406. 2005-08-25 Chris Toshok <[email protected]>
  407. * HtmlForm.cs (CreateControlCollection, OnPreRender,
  408. RenderControl): implement naively, just calling base.Method.
  409. 2005-08-25 Chris Toshok <[email protected]>
  410. * HtmlForm.cs (RenderAttributes): don't strip off the stuff after
  411. the last '/' when rendering the action. Fixes comments in
  412. nGallery.
  413. 2005-08-24 Chris Toshok <[email protected]>
  414. * HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  415. HtmlInputImage.cs, HtmlForm.cs, HtmlInputCheckBox.cs,
  416. HtmlInputHidden.cs, HtmlButton.cs, HtmlSelect.cs, HtmlControl.cs:
  417. Add MonoTODO's for all NotImplementedException's.
  418. 2005-08-18 Dick Porter <[email protected]>
  419. * HtmlTable.cs, HtmlInputButton.cs, HtmlInputFile.cs, HtmlHead.cs,
  420. HtmlInputImage.cs, HtmlForm.cs, HtmlInputText.cs,
  421. HtmlInputCheckBox.cs, HtmlAnchor.cs, HtmlInputRadioButton.cs,
  422. HtmlButton.cs, HtmlInputHidden.cs, HtmlTextArea.cs,
  423. HtmlTableRow.cs, HtmlSelect.cs, HtmlControl.cs, HtmlTitle.cs,
  424. HtmlContainerControl.cs: 2.0 API fixes and stubs and attribute fixes
  425. 2005-08-15 Sebastien Pouliot <[email protected]>
  426. * HtmlInputRadioButton.cs, HtmlInputText.cs, HtmlTextArea.cs: Renamed
  427. Load method (bad choice) to DefaultLoadPostData.
  428. 2005-08-15 Sebastien Pouliot <[email protected]>
  429. * HtmlAnchor.cs: Fixed protected RaisePostBackEvent in 2.0.
  430. * HtmlInputRadioButton.cs: Fixed Value property and LoadPostData
  431. method. Fixed support for protected LoadPostData and
  432. RaisePostDataChangedEvent in 2.0 (recursion).
  433. * HtmlInputText.cs: Fixed LoadPostData. Fixed support for protected
  434. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  435. * HtmlTextArea.cs: Fixed LoadPostData. Fixed support for protected
  436. LoadPostData and RaisePostDataChangedEvent in 2.0 (recursion).
  437. 2005-08-15 Sebastien Pouliot <[email protected]>
  438. * HtmlTableCell.cs: Added "string" [TypeConverter] attribute to NoWrap
  439. for 2.0 profile. The class seems to be internal and not (yet?)
  440. implemented.
  441. 2005-08-13 Sebastien Pouliot <[email protected]>
  442. * HtmlAnchor.cs: Add Localizable attribute to 2.0 profile.
  443. * HtmlEmptyTagControlBuilder.cs: New. ControlBuilder required for
  444. (at least) HtmlInputControl in 2.0 profile.
  445. * HtmlInputControl.cs: Use a new ControlBuilder class for 2.0 profile.
  446. * HtmlInputText.cs: Fix DefaultValue attribute for 2.0 profile.
  447. 2005-08-09 Dick Porter <[email protected]>
  448. * HtmlSelect.cs: Clear databindings when adding a new one; cope
  449. with assorted combinations of empty text and value fields; write
  450. <option> tags manually to match ms HTML output. All fix nunit
  451. tests.
  452. 2005-08-08 Sebastien Pouliot <[email protected]>
  453. * HtmlInputControl.cs: Remove code to handle password (wrong place)
  454. and fixed type handling for 2.0.
  455. * HtmlInputText.cs: Added code to remove (only in 1.x) the value when
  456. the type == password. Tests indicates that the value is present for
  457. 2.0.
  458. 2005-08-05 Dick Porter <[email protected]>
  459. * HtmlSelect.cs: Fix databinding when one or other of Name and
  460. Value aren't supplied (thanks to Peter for the patch); Make
  461. <option> indenting match ms output.
  462. 2005-07-30 Ben Maurer <[email protected]>
  463. * HtmlForm.cs: Make sure we actually put the "?" in the url
  464. 2005-07-29 Dick Porter <[email protected]>
  465. * HtmlForm.cs: Simplify the rendering code by using QueryStringRaw
  466. instead of building the query string by hand
  467. 2005-07-27 Dick Porter <[email protected]>
  468. * HtmlInputCheckBox.cs: New implementation
  469. 2005-07-26 Peter Dennis Bartok <[email protected]>
  470. * HtmlSelect.cs: Added missing attributes
  471. 2005-07-26 Dick Porter <[email protected]>
  472. * HtmlSelect.cs: New implementation
  473. 2005-07-26 Miguel de Icaza <[email protected]>
  474. * HtmlForm.cs: It is possible to have keys with no values in the
  475. query string, do not try to process those on the foreach loop.
  476. The question is: what should happen if I only get the key?
  477. Example: file_with_a_form.aspx?a
  478. 2005-07-25 Peter Dennis Bartok <[email protected]>
  479. * HtmlForml.cs: Implemented UniqueID (new in sp1)
  480. * HtmlButton.cs, HtmlInputButton.cs, HtmlInputImage.cs: Attribute fixes
  481. 2005-07-24 Dick Porter <[email protected]>
  482. * HtmlForm.cs: Add the trailing query string to the form action;
  483. fixes bug shown in Test/standalone/htmlform/qs_postback.aspx
  484. 2005-07-22 Dick Porter <[email protected]>
  485. * HtmlInputFile.cs: Add assembly attributes
  486. 2005-07-21 Dick Porter <[email protected]>
  487. * HtmlImage.cs: The src attribute needs to be a relative URL;
  488. close the HTML element when rendering attributes, to match the MS
  489. impl.
  490. * HtmlForm.cs: Added assembly attributes; don't render ID twice;
  491. don't render enctype and target if they are empty strings;
  492. implement a Render overload to keep corcompare quiet.
  493. 2005-07-20 Chris Toshok <[email protected]>
  494. * HtmlForm.cs (RenderAttributes): if there are submit statements,
  495. we need to render those.
  496. * HtmlInputImage.cs: same.
  497. * HtmlInputButton.cs: hook up the client validation stuff.
  498. * HtmlButton.cs: same, except a lot more complicated due to
  499. postback handling.
  500. 2005-07-19 Dick Porter <[email protected]>
  501. * HtmlImage.cs: Added attributes; use Int32.Parse instead of
  502. Convert.ToInt32
  503. 2005-07-18 Sebastien Pouliot <[email protected]>
  504. * HtmlInputControl.cs: Fix Type when using ctor(null). Now use
  505. ControlID for Name (and not ID). Added ControlBuilder attribute.
  506. * HtmlTable.cs: Simplify check when adding controls.
  507. * HtmlTableRow.cs: Simplify check when adding controls.
  508. 2005-07-18 Jackson Harper <[email protected]>
  509. * HtmlInputHidden.cs: Use Events Add/Remove. Add DefaultEvent
  510. attribute.
  511. 2005-07-15 Jackson Harper <[email protected]>
  512. * HtmlInputImage.cs: Use Events Add/Remove. Remove uneeded
  513. constant. Update fetching from viewstate code to use new
  514. convenience method.
  515. 2005-07-15 Jackson Harper <[email protected]>
  516. * HtmlInputButton.cs: Add DefaultEventAttribute.
  517. 2005-07-15 Sebastien Pouliot <[email protected]>
  518. * HtmlInputControl.cs: Removed internal property (no more required to
  519. compile).
  520. * HtmlInputRadioButton.cs: Optimized events.
  521. * HtmlInputText.cs: Optimized events.
  522. * HtmlTable.cs: Added CultureInfo.InvariantCulture when parsing
  523. strings to integers.
  524. * HtmlTableCell.cs: Added CultureInfo.InvariantCulture when parsing
  525. strings to integers.
  526. * HtmlTextArea.cs: Optimized events.
  527. 2005-07-15 Sebastien Pouliot <[email protected]>
  528. * HtmlAnchor.cs: Added URL resolution (doesn't get me the expected
  529. result) and fixed compatibility for a weird behaviour of the HRef
  530. attribute handling. Optimized events.
  531. 2005-07-14 Jackson Harper <[email protected]>
  532. * HtmlInputButton.cs: Use Events Add/Remove. Remove Causesvalidation
  533. string constant. Use new method for accessing ViewState
  534. data. Don't remove value from the view state if it is the default.
  535. 2005-07-14 Jackson Harper <[email protected]>
  536. * HtmlButton.cs: Use Events Add/Remove. Remove Causesvalidation
  537. string constant. Use new method for accessing ViewState
  538. data. Don't remove value from the view state if it is the default.
  539. 2005-07-14 Dick Porter <[email protected]>
  540. * HtmlInputFile.cs: New implementation
  541. 2005-07-14 Jackson Harper <[email protected]>
  542. * HtmlInputControl.cs: Use ClientID for input controls name.
  543. 2005-07-14 Dick Porter <[email protected]>
  544. * HtmlForm.cs: New Implementation
  545. 2005-07-13 Sebastien Pouliot <[email protected]>
  546. * HtmlTable.cs: Added missing attributes.
  547. * HtmlTableCell.cs: Added missing attributes except for ControlBuilder
  548. as the builder's type isn't public.
  549. * HtmlInputControl.cs: Added missing attributes.
  550. * HtmlInputText.cs: Added missing attributes.
  551. * HtmlInputRadioButton.cs: Added missing attributes.
  552. * HtmlAnchor.cs: Added missing attributes.
  553. * HtmlTextArea.cs: Added missing attributes.
  554. * HtmlTableRow.cs: Added missing attributes.
  555. 2005-07-12 Sebastien Pouliot <[email protected]>
  556. * HtmlAnchor.cs: Added DefaultValue attributes.
  557. * HtmlInputControl.cs: Added DefaultValue attributes.
  558. * HtmlInputRadioButton.cs: Added DefaultValue attributes.
  559. * HtmlInputText.cs: Added DefaultValue attributes. Added method
  560. RenderAttributes in 1.1 profile.
  561. * HtmlTable.cs: Fix DefaultValue to "".
  562. * HtmlTextArea.cs: Added DefaultValue attributes.
  563. 2005-07-12 Sebastien Pouliot <[email protected]>
  564. * HtmlTableCell.cs: Added DefaultValue attributes.
  565. * HtmlTable.cs: Added DefaultValue and ParseChildren attributes.
  566. * HtmlTableRowCollection.cs: Reworked collection to share data with
  567. HtmlTable.Controls.
  568. * HtmlTableCellCollection.cs: Reworked collection to share data with
  569. HtmlTableRow.Controls.
  570. * HtmlTableRow.cs: Added DefaultValue and ParseChildren attributes.
  571. 2005-07-09 Sebastien Pouliot <[email protected]>
  572. * HtmlTableRowCollection.cs: Fixed property name to IsReadOnly.
  573. 2005-07-08 Sebastien Pouliot <[email protected]>
  574. * HtmlTextArea.cs: Use CultureInfo.InvariantCulture in ToString ().
  575. 2005-07-08 Sebastien Pouliot <[email protected]>
  576. * HtmlContainerControl.cs: Fixed removal of attribute/viewstate for
  577. "innerhtml".
  578. * HtmlTextArea.cs: New implementation.
  579. 2005-07-07 Jackson Harper <[email protected]>
  580. * HtmlInputImage.cs: New implementation.
  581. 2005-07-07 Sebastien Pouliot <[email protected]>
  582. * HtmlAnchor.cs: protected RaisePostBackEvent is in 2.0 only.
  583. * HtmlInputControl.cs: New implementation.
  584. * HtmlInputRadioButton.cs: New implementation.
  585. * HtmlInputText.cs: New implementation.
  586. 2005-07-07 Jackson Harper <[email protected]>
  587. * HtmlInputHidden.cs: New implementation.
  588. 2005-07-07 Jackson Harper <[email protected]>
  589. * HtmlAnchor.cs: Call base OnPreRender from override.
  590. 2005-07-07 Jackson Harper <[email protected]>
  591. * HtmlInputButton.cs: New implementation.
  592. 2005-07-07 Dick Porter <[email protected]>
  593. * HtmlImage.cs: New implementation
  594. 2005-07-07 Sebastien Pouliot <[email protected]>
  595. * HtmlAnchor.cs: Fixed to remove attributes properly.
  596. * HtmlTable.cs: New implementation.
  597. * HtmlTableCell.cs: New implementation.
  598. * HtmlTableCellCollection.cs: New implementation.
  599. * HtmlTableRow.cs: New implementation.
  600. * HtmlTableRowCollection.cs: New implementation.
  601. 2005-07-06 Jackson Harper <[email protected]>
  602. * HtmlButton.cs: New implementation.
  603. 2005-07-06 Sebastien Pouliot <[email protected]>
  604. * HtmlAnchor.cs: New implementation.
  605. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  606. * HtmlTableCell.cs:
  607. * HtmlControl.cs: updates for 1.1 SP1.
  608. 2005-05-20 Gonzalo Paniagua Javier <[email protected]>
  609. * HtmlInputFile.cs: fixed typo in the setter for MaxLength. Closes bug
  610. number 74989.
  611. 2005-05-06 Lluis Sanchez Gual <[email protected]>
  612. * HtmlHead.cs: Fix warning.
  613. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  614. * HtmlForm.cs: Use the new WriteSubmitStatements method from
  615. Page.ClientScript.
  616. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  617. * HtmlInputButton.cs, HtmlAnchor.cs, HtmlButton.cs: Don't use
  618. Page.GetPostBackClientEvent since it is deprecated in 2.0.
  619. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  620. * HtmlForm.cs: Register the form in the page, so the page knows
  621. which is the main form.
  622. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  623. * HtmlHead.cs: Method name fix.
  624. 2005-01-20 Gonzalo Paniagua Javier <[email protected]>
  625. * HtmlForm.cs: submitStatements holds Hashtables.
  626. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  627. * HtmlHead.cs: Implemented.
  628. * HtmlHeadBuilder.cs: Implemented.
  629. * HtmlTitle.cs: Implemented.
  630. 2004-12-15 Gonzalo Paniagua Javier <[email protected]>
  631. * HtmlForm.cs: MakeRelative() can be null. Thanks to Denis Gervaille.
  632. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  633. * HtmlForm.cs: fixed the Action property when running a different
  634. page than the one requested (Transfer). Closes bug #69318.
  635. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  636. * HtmlForm.cs: Add submit statements from the new Page.ClientScript
  637. property.
  638. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  639. * HtmlForm.cs: disabled smartnavigation as we have no scripts to support
  640. it and failed when the browser was IE.
  641. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  642. * HtmlForm.cs: default value for Enctype is "".
  643. * HtmlInputFile.cs: if no one set the encoding type for the HtmlForm,
  644. we set it to "multipart/form-data". Fixes bug #58359.
  645. 2004-01-15 Alon Gazit <[email protected]>
  646. * HtmlForm.cs: The property name always return the value of the
  647. property UniqueID.
  648. 2003-12-28 Alon Gazit <[email protected]>
  649. * HtmlSelect.cs: fix typo in LoadPostData().
  650. 2003-12-29 Alon Gazit <[email protected]>
  651. * HtmlInputButton.cs: update the implementation of RenderAttributes().
  652. Change the if statement that determines if the onclick script is
  653. rendered.
  654. 2003-12-28 Alon Gazit <[email protected]>
  655. * HtmlSelect.cs: add parentheses to if statement.
  656. Currently the else statement refers to the inner if statement.
  657. 2003-12-28 Alon Gazit <[email protected]>
  658. * HtmlSelect.cs: fix upper bound of for statement.
  659. 2003-12-19 Jackson Harper <[email protected]>
  660. * HtmlInputFile.cs: Do not set value when loading post data.
  661. 2003-12-14 Alon Gazit <[email protected]>
  662. * HtmlInputButton.cs: The problem was in RenderAttributes().
  663. Before adding the script to the HTML, the number of Validators should
  664. be checked. fixes bug #52158.
  665. 2003-12-07 Alon Gazit <[email protected]>
  666. * HtmlTableCell.cs: fixing a typo in NoWrap property.
  667. 2003-12-04 Jackson Harper <[email protected]>
  668. * HtmlInputRadioButton.cs: Lookup name in postadata and compare to
  669. value. This is because radio button groups are created by setting
  670. the name to the same value with each button, then on postback the
  671. value of the name is the id of the selected radio button.
  672. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  673. * HtmlContainerControl.cs: encode/decode InnerText. Fixes bug #51653.
  674. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  675. * HtmlSelect.cs: with the new LosFormatter, we get array types right, so
  676. remove the code used to workaround that.
  677. 2003-12-01 Jackson Harper <[email protected]>
  678. * HtmlControl.cs: Fix disabled property. Patch by Alon Gazit
  679. <[email protected]>.
  680. 2003-11-25 Gonzalo Paniagua Javier <[email protected]>
  681. * HtmlSelect.cs: don't add items without data. Patch by Alon Gazit
  682. <[email protected]>. Fixes bug #51377.
  683. 2003-11-24 Gonzalo Paniagua Javier <[email protected]>
  684. * HtmlInputRadioButton.cs: initialize event indexer. Patch by Alon Gazit
  685. <[email protected]>.
  686. 2003-10-29 Jackson Harper <[email protected]>
  687. * HtmlControl.cs: Make disabled an attribute of the control so it
  688. is rendered. This is a slightly modifed version of a patch
  689. by Yaron Shkop. Fixes bug #50160.
  690. 2003-10-16 Gonzalo Paniagua Javier <[email protected]>
  691. * HtmlTextArea.cs: fixed infinite recursion.
  692. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  693. * HtmlForm.cs: render the onsubmit attribute.
  694. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  695. * HtmlGenericControl.cs: ConstructorNeedsTag defaults to false so we
  696. need to pass true here. Fixes bug #47918.
  697. 2003-07-17 Andreas Nahr <[email protected]>
  698. * HtmlContainerControl.cs: Added attributes
  699. * HtmlControl.cs: Added attributes
  700. * HtmlInputControl.cs: Fixed public signature
  701. * HtmlInputRadioButton.cs: Fixed public signature
  702. * HtmlSelect.cs: Added missing attribute
  703. * HtmlTable.cs: Added missing attribute
  704. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  705. * HtmlSelect.cs: fixed bug #44894.
  706. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  707. * HtmlImage.cs:
  708. * HtmlInputControl.cs:
  709. * HtmlSelect.cs: added control builder attribute.
  710. * HtmlSelectBuilder.cs: builder for HtmlSelect.
  711. * HtmlControlBuilder.cs: common builder for all HtmlControls.
  712. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  713. * HtmlControl.cs: _tagName is now internal.
  714. * HtmlGenericControl.cs: use the field in HtmlControl to keep the tag
  715. name.
  716. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  717. * System.Web.UI.HtmlControls/HtmlForm.cs: render 'action' attribute.
  718. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  719. * HtmlInputButton.cs: fixed bug #35677.
  720. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  721. * HtmlInputControl.cs: fixed bug #35673.
  722. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  723. * HtmlInputText.cs: fixed bug #35670.
  724. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  725. * HtmlSelect.cs: fixed LoadViewstate.
  726. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  727. * HtmlButton.cs: make it do a POST if the button has any ServerClick
  728. events.
  729. 2002-09-23 Gonzalo Paniagua Javier <[email protected]>
  730. * HtmlAnchor.cs:
  731. * HtmlButton.cs:
  732. * HtmlContainerControl.cs:
  733. * HtmlControl.cs:
  734. * HtmlForm.cs:
  735. * HtmlGenericControl.cs:
  736. * HtmlImage.cs:
  737. * HtmlInputButton.cs:
  738. * HtmlInputCheckBox.cs:
  739. * HtmlInputControl.cs:
  740. * HtmlInputFile.cs:
  741. * HtmlInputHidden.cs:
  742. * HtmlInputImage.cs:
  743. * HtmlInputRadioButton.cs:
  744. * HtmlInputText.cs:
  745. * HtmlSelect.cs:
  746. * HtmlTable.cs:
  747. * HtmlTableCell.cs:
  748. * HtmlTableRow.cs:
  749. * HtmlTextArea.cs: added almost all missing attributes.
  750. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  751. * HtmlControl.cs: the attributes must use ViewState as its StateBag,
  752. if not style values are lost between postbacks.
  753. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  754. * HtmlAnchor.cs:
  755. * HtmlButton.cs:
  756. * HtmlInputButton.cs:
  757. * HtmlInputCheckBox.cs:
  758. * HtmlInputHidden.cs:
  759. * HtmlInputImage.cs:
  760. * HtmlInputText.cs:
  761. * HtmlTextArea.cs: Initialize EventHandlerList indexer.
  762. * HtmlContainerControl.cs: almost rewritten to use a LiteralControl
  763. instead of maintaining some flags and strings. Implemented
  764. LoadViewState.
  765. * HtmlControl.cs: fixed constructor and added ViewStateIgnoreCase.
  766. * HtmlSelect.cs: fixed TrackViewState, SaveViewState, SelectedIndices
  767. and Value.
  768. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  769. * HtmlGenericControl.cs: fixed TagName signature and get/set.
  770. * HtmlInputImage.cs: added attribute and fixed signature of ServerClick.
  771. * HtmlInputText.cs: added attribute.
  772. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  773. * HtmlForm.cs: don't render action attribute.
  774. 2002-07-04 Gonzalo Paniagua Javier <[email protected]>
  775. * HtmlContainerControl.cs:
  776. (CreateControlCollection): added. All containers must have a non-empty
  777. control collection.
  778. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  779. * System.Web.UI.HtmlControls/HtmlAnchor.cs:
  780. * System.Web.UI.HtmlControls/HtmlButton.cs:
  781. * System.Web.UI.HtmlControls/HtmlControl.cs:
  782. * System.Web.UI.HtmlControls/HtmlForm.cs:
  783. * System.Web.UI.HtmlControls/HtmlGenericControl.cs:
  784. * System.Web.UI.HtmlControls/HtmlInputButton.cs:
  785. * System.Web.UI.HtmlControls/HtmlInputCheckBox.cs:
  786. * System.Web.UI.HtmlControls/HtmlInputControl.cs:
  787. * System.Web.UI.HtmlControls/HtmlInputFile.cs:
  788. * System.Web.UI.HtmlControls/HtmlInputHidden.cs:
  789. * System.Web.UI.HtmlControls/HtmlInputImage.cs:
  790. * System.Web.UI.HtmlControls/HtmlInputRadioButton.cs:
  791. * System.Web.UI.HtmlControls/HtmlInputText.cs:
  792. * System.Web.UI.HtmlControls/HtmlSelect.cs:
  793. * System.Web.UI.HtmlControls/HtmlTable.cs:
  794. * System.Web.UI.HtmlControls/HtmlTableCell.cs:
  795. * System.Web.UI.HtmlControls/HtmlTableRow.cs:
  796. * System.Web.UI.HtmlControls/HtmlTextArea.cs:
  797. Fixes based on class status page:
  798. - Add attributes (DefaultEvent, ParseChildren).
  799. - Fix declarations.
  800. - Explicitly implement some interfaces (IPostBackDataHandler
  801. and IPostBackEventHandler).
  802. - Implemented some missing methods.
  803. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  804. * HtmlForm.cs:
  805. (RenderChildren): use OnFormRender and OnFormPostRender.
  806. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  807. * HtmlSelect.cs:
  808. (RenderAttributes): new -> override and fixes stack overflow.
  809. (RenderChildren): only 1 option can be selected at any given time
  810. except when Multiple property is true.
  811. (Multiple): the attribute value is either "true" or "false", not
  812. "multiple".
  813. * HtmlTable.cs:
  814. (Add):
  815. (AddAt): allow HtmlTableRow as children, not HtmlTableCell.
  816. * HtmlTableCell.cs:
  817. (RenderEndTag): new -> override.
  818. * HtmlTableRow.cs:
  819. (RenderChildren): fixed another stack overflow.
  820. (RenderEndTag): new -> override.
  821. * HtmlTextArea.cs:
  822. (RenderAttributes): new -> override.
  823. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  824. * HtmlInputHidden.cs: fixed constructor.
  825. * HtmlInputRadioButton.cs:
  826. (RenderAttributes): fixed stack overflow.
  827. (Name):
  828. (RenderedName): new -> override.
  829. (Value): new property.
  830. * HtmlInputText.cs:
  831. (RenderAttributes): fixed the same kind of stack overflow and make
  832. string comparison case insensitive.
  833. 2002-06-07 Gonzalo Paniagua Javier <[email protected]>
  834. * HtmlForm.cs: fixed name of Enctype property and render enctype
  835. enctype attribute.
  836. * HtmlInputControl.cs: tag type is "input", not "type".
  837. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  838. * HtmlControl.cs: Render contents moved to new RenderBeginTag method,
  839. defined in MS docs.
  840. * HtmlForm.cs: Render output when no IE browser.
  841. * HtmlInputButton.cs: added constructor without arguments. Xsp used it,
  842. though now it always use the other .ctor.
  843. * HtmlInputControl.cs: cosmetic changes and implemented set_Name.
  844. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  845. * HtmlButton.cs: RenderAttributes is an override, not new.
  846. * HtmlContainerControl.cs: use the new Render method in HtmlControl.
  847. * HtmlControl.cs: added Render method to render the tag and its
  848. attributes. Works for container and non-containers.
  849. * HtmlImage.cs: RenderAttributes don't need to be new. Implemented
  850. Height property.
  851. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  852. * HtmlContainerControl.cs: some formatting and use HttpUtility.Encode
  853. instead of Page.Server to encode InnerText.
  854. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  855. * HtmlAnchor.cs:
  856. (RenderAttributes): new -> override and fixed little bug that made
  857. it cause an stack overflow.
  858. * HtmlContainerControl.cs: reformatted and added tag and attributes
  859. rendering.
  860. * HtmlGenericControl.cs: removed TagName, which is already in
  861. HtmlControl.
  862. * HtmlTable.cs:
  863. (RenderEndTag): new -> override.
  864. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  865. * System.Web.UI.HtmlControls/HtmlForm.cs:
  866. (RenderAttributes): changed new by override.
  867. (Name): allow setting the property.
  868. 2002-05-10 Duncan Mak <[email protected]>
  869. * HtmlTableCellCollection.cs (this): Updated the indexer to return
  870. the right type, HtmlTableCell instead of HtmlTableRow.
  871. * HtmlInputImage.cs (OnServerClick): Commented out parts that
  872. won't compile.
  873. * HtmlForm.cs (RenderAttributes):
  874. (RenderChildren): Commented out code that doesn't compile.
  875. 2002-05-07 Duncan Mak <[email protected]>
  876. * HtmlSelect.cs (TrackViewState): Added 'new' keyword to avoid
  877. clashing with the method defined in the parent class.
  878. (OnDataBinding): Added missing casts.
  879. * HtmlForm.cs (Render): Fixed call too SetAttribute, need to cast
  880. 'this' to IAttributeAccessor before calling interface method.
  881. Also renamed some calls to reflect changes in the API.
  882. * HtmlControl.cs (WriteOnClickAttribute): Made it not static and
  883. fixed a typo.
  884. 2001-09-03 Leen Toelen <[email protected]>
  885. * HtmlAnchor.cs: Initial implementation.
  886. * HtmlTextArea.cs: Initial implementation.
  887. 2001-08-22 Bob Smith <[email protected]>
  888. * HtmlContainerControl.cs: Initial implementation.
  889. * HtmlControl.cs: Initial implementation.
  890. * HtmlGenericControl.cs: Initial implementation.