ChangeLog 44 KB

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