ChangeLog 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570
  1. 2003-11-22 Ben Maurer <[email protected]>
  2. * SqlDataSource*: Implement almost everything. Data access is
  3. still missing.
  4. 2003-11-22 Ben Maurer <[email protected]>
  5. * Calendar.cs (SaveViewState):
  6. - We were allocating a 11 item array, we only used 10 items,
  7. so only allocate 10.
  8. - We only need to save the selected dates if there are any.
  9. * DataGrid.cs (SaveViewState):
  10. * DataGridColumn.cs (SaveViewState):
  11. * DataGridColumnCollection.cs (SaveViewState):
  12. - Only return the array if there is anything in it
  13. * Style.cs (SaveViewState):
  14. - Only save the bits if there were changes.
  15. * WebControl.cs (SaveViewState), (LoadViewState):
  16. - Don't save Enabled into the viewstate here, we already
  17. do it in the property. This just caused *EVERY* control
  18. to have a non-null state, taking up lots of extra room
  19. in the ViewState.
  20. - The style will always be created with this control's
  21. viewstate, so the style will always return null for the
  22. viewstate. As such, we do not need to store it. We can
  23. also reduce the triplet to a pair because of this.
  24. 2003-11-22 Jackson Harper <[email protected]>
  25. * ValidationSummary.cs: Fix number of messages and message array computation.
  26. 2003-11-21 Andreas Nahr <[email protected]>
  27. * Xml.cs: Corrected attribute
  28. * XmlBuilder.cs: Added
  29. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  30. * Xml.cs: class status based fixes.
  31. 2003-11-19 Jackson Harper <[email protected]>
  32. * HyperLink.cs: Use ResolveUrl instead of ResolveBaseUrl.
  33. 2003-11-19 Jackson Harper <[email protected]>
  34. * HyperLink.cs: Use ResolveBaseUrl so that ~/ is interpreted as
  35. teh applications base directory. This fixes bug #51092.
  36. 2003-11-18 Todd Berman <[email protected]>
  37. * ControlParameter.cs:
  38. * CookieParameter.cs:
  39. * FormParameter.cs:
  40. * QueryStringParameter.cs:
  41. * SessionParameter.cs: added public .ctor ()
  42. * Parameter.cs: added public .ctor (), internal SetOwnerCollection
  43. and handling, as well as internal ParameterValue for easy access.
  44. NOTE: ParameterValue doesnt respect TreatEmptyStringAsNull yet.
  45. * ParameterCollection.cs: implementation redux.
  46. 2003-11-18 Todd Berman <[email protected]>
  47. * ParameterCollection.cs: Implemented
  48. * Parameter.cs: Added _owner, SetOwnerCollection and proper handling.
  49. ToString () now matches asp.net
  50. 2003-11-17 Ben Maurer <[email protected]>
  51. * ControlParameter.cs:
  52. * CookieParameter.cs:
  53. * FormParameter.cs:
  54. * Parameter.cs:
  55. * QueryStringParameter.cs: New v2 files. Mostly
  56. implemented, still need a few methods.
  57. 2003-11-16 Gonzalo Paniagua Javier <[email protected]>
  58. * ListItem.cs: prevent nullrefs ni Get/SetAttribute. Thanks to Alon
  59. Gazit <[email protected]>.
  60. 2003-11-13 Gonzalo Paniagua Javier <[email protected]>
  61. * RadioButton.cs: fixed RenderInputTag for negative TabIndex values.
  62. Patch by Alon Gazit <[email protected]>.
  63. 2003-11-09 Ben Maurer <[email protected]>
  64. * DataBoundControl.cs: Implement
  65. * ListControl.cs: inherit from the above.
  66. * Repeater.cs, BaseDataList.cs: should reset whenever we databind.
  67. 2003-11-09 Ben Maurer <[email protected]>
  68. * BaseDataList.cs:
  69. * DataGrid.cs:
  70. * DataList.cs:
  71. * Repeater.cs: add v2 databinding stuff
  72. * XmlDataSource.cs: make it load the xml.
  73. 2003-11-09 Ben Maurer <[email protected]>
  74. * XmlDataSource.cs:
  75. * XmlDataSourceView.cs:
  76. * XmlHierarchicalDataSourceView.cs:
  77. * XmlHierarchicalEnumerable.cs:
  78. * XmlHierarchyData.cs: Implement
  79. 2003-11-08 Ben Maurer <[email protected]>
  80. * SiteMapDataSourceView.cs: Implement.
  81. 2003-11-07 Jackson Harper <[email protected]>
  82. * ImageButton.cs: This is a workaround for bug #49819. It appears
  83. that the .x and .y values are not being posted, and only the x
  84. value is being posted with the ctrl's id as the key.
  85. 2003-11-07 Jackson Harper <[email protected]>
  86. * DataGrid.cs (CreateControlHierarchy): Current page index is
  87. alolowed to equal page count. This prevents an exception being
  88. thrown when both are zero.
  89. 2003-11-06 Jackson Harper <[email protected]>
  90. * ValidationSummary.cs: Add Render method. Patch by Yaron Shkop.
  91. * BaseValidator.cs: Disable base control so the isValid flag is
  92. not reset.
  93. 2003-11-03 Jackson Harper <[email protected]>
  94. * TemplateColumn.cs: Use the same renderer for selected items as
  95. normal items. This fixes bug #49744.
  96. 2003-11-03 Jackson Harper <[email protected]>
  97. * DataList.cs:
  98. * WebControl.cs: Fix argument out of range exceptions on
  99. properties. Patch by Yaron Shkop.
  100. 2003-11-03 Jackson Harper <[email protected]>
  101. * TemplateColumn.cs: If the item is selected but there is no
  102. editItemTemplate use the itemTemplate. This matches MS behvoir.
  103. 2003-11-03 Jackson Harper <[email protected]>
  104. * Repeater.cs: Always set alternating items to the AlternatingItem
  105. type, when instantiating alternating items use the itemTemplate if
  106. the alternatingItem template is null. This matches MS behavoir and
  107. fixes bug #50157.
  108. 2003-11-03 Jackson Harper <[email protected]>
  109. * DataGridPagerStyle.cs: Name of view state attribute is
  110. PagerVisible not Visible. Call owner.OnPagerChanged when the pager
  111. visibility is changed. Patch by Yaron Shkop.
  112. 2003-11-03 Jackson Harper <[email protected]>
  113. * RepeatInfo.cs: When doing horizontal rendering use the repeat
  114. columns as the number of columns in a row. This fixes bug #49016.
  115. 2003-11-03 Jackson Harper <[email protected]>
  116. * PagedDataSource.cs (PageCount): Return page count of 1 if there
  117. paging is disabled. Patch by Yaron Shkop.
  118. * PagedDataSource.cs (CopyTo): Improve. Patch by Yaron Shkop.
  119. * TableStyle.cs (AddAttributesToRender): Render border style
  120. collapse. Patch by Yaron Shkop.
  121. * TableStyle.cs:
  122. * TableItemStyle.cs:
  123. * DataGridPagerStyle.cs: Call base copy and merge even if style is of
  124. the wrong type. Patch by Yaron Shkop.
  125. 2003-11-03 Jackson Harper <[email protected]>
  126. * BoundColumn.cs: Render readonly columns. Patch by Mohammad DAMT.
  127. 2003-11-02 Ben Maurer <[email protected]>
  128. * BulletStyle.cs:
  129. * BulletedListDisplayMode.cs:
  130. * BulletedListEventHandler.cs:
  131. * BulletedList.cs:
  132. * BulletedListEventArgs.cs: V2 controls (yay!)
  133. 2003-10-30 Jackson Harper <[email protected]>
  134. * Repeater.cs: Throw an exception if the datasource is set to
  135. something that does not implement either IListSource or
  136. IEnumerable. This fixes bug #50155.
  137. 2003-10-30 Jackson Harper <[email protected]>
  138. * DataGridPagerStyle.cs: Do not allow page button counts to be set
  139. to less then 1. Patch by Yaron Shkop. This fixes bug #50236.
  140. 2003-10-29 Jackson Harper <[email protected]>
  141. * ButtonColumn.cs: Format string and text to format were
  142. inversed. This fixes bug #50171.
  143. 2003-10-29 Jackson Harper <[email protected]>
  144. * DataGridColumn.cs: If an item style is set apply it to the
  145. cell. This fixes bug #50173.
  146. 2003-10-29 Ben Maurer <[email protected]>
  147. * HyperLinkColumn.cs: Patch by Yaron Shkop. Fixes #50234. Remove
  148. old debugging value.
  149. 2003-10-29 Jackson Harper <[email protected]>
  150. * PagedDataSource.cs:
  151. * DataGrid.cs: Patch by Mohammad DAMT. Do not go past the
  152. end of the last page. Fixes bug #5085.
  153. 2003-10-29 Jackson Harper <[email protected]>
  154. * CheckBox.cs: Do not change the status of a checkbox when there
  155. is no post data. This fixes bug #49091.
  156. * CheckBoxList.cs: Do not change the status of the checkboxes when
  157. there is no post data. This fixes bug #49093.
  158. 2003-10-26 Ben Maurer <[email protected]>
  159. * RadioButton.cs: Patch by Yaron Shkop. Enables disabling a
  160. RadioButton. Fixes #50132
  161. 2003-10-25 Ben Maurer <[email protected]>
  162. * PagedDataSource.cs: Patch by Ivo Haamer. Typo prevented
  163. paging from working. Fixes #48814.
  164. 2003-10-25 Ben Maurer <[email protected]>
  165. * DataGrid.cs: A few typos kept us from viewing datagrids
  166. that were based on customized collections.
  167. 2003-10-24 Ben Maurer <[email protected]>
  168. * DataGridCommandEventArgs.cs: typo, cmdSrc was becoming origionalArgs.
  169. 2003-10-23 Ben Maurer <[email protected]>
  170. * Calendar.cs: render the next month button so that aligns to the
  171. right.
  172. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  173. * BaseCompareValidator.cs: splitted Convert. Fixed bug #49927. The fix
  174. was just changing && by || after the first Match.
  175. 2003-10-23 Gonzalo Paniagua Javier <[email protected]>
  176. * Calendar.cs: apply header style in RenderHeader. Fixes bug #49144.
  177. Patch by Yaron Shkop.
  178. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  179. * DataGrid.cs: applied patch from Yaron Shkop ([email protected])
  180. that fixes bug #49744. Now the selection doesn't lose its data.
  181. 2003-10-21 Ben Maurer <[email protected]>
  182. * EditCommandColumn.cs: Implement; fix #49736
  183. 2003-10-21 Ben Maurer <[email protected]>
  184. * ButtonColumn.cs: Use the DataGridLinkButton, so that we inherit
  185. the forground color. bug #49738
  186. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  187. * Calendar.cs: fixed bug #49727.
  188. 2003-10-18 Ben Maurer <[email protected]>
  189. * TableStyle.cs: fix #49740.
  190. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  191. * SelectedDatesCollection.cs: fix by Yaron for bug #49698.
  192. * ValidationSummary.cs: fixes bug #49669.
  193. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  194. * Calendar.cs: apply the calendar style to the new Table, not to itself.
  195. Fixes #49406.
  196. * CheckBox.cs: render the hidden fields if AutoPostBack.
  197. * Style.cs: don't render empty width/height. Small improvement in
  198. CopyFrom.
  199. * Table.cs: fixed condition for border width.
  200. * TableStyle.cs:
  201. (CopyFrom): always call the base class to copy other attributes. Fixes
  202. bug #49408. Don't render empty 'rules' attribute.
  203. * WebControl.cs: track viewstate when enabled. Don't overwrite source
  204. control attributes in CopyBaseAttributes.
  205. * ChangeLog: fixed dates.
  206. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  207. * WebControl.cs : Attributes { get; } - Is Complete.
  208. * ValidationSummary.cs : AddAttributesToRender(HtmlTextWriter)
  209. - Completed.
  210. 2003-10-08 Gaurav Vaish <gvaish_mono AT lycos.com>
  211. * BaseValidator.cs : DetermineRenderUplevel() - Completed.
  212. : RegisterValidatorCommonScript()
  213. - More code, I need HELP!
  214. : RegisterValidatorDeclaration()
  215. - More code, I need HELP!
  216. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  217. * CheckBoxList.cs: don't lose state when enabling/disabling. See bug
  218. #48802.
  219. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  220. * Repeater.cs: fixed bug #48807. It needed to use a DummyDataSource and
  221. ClearViewState only called when no items.
  222. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  223. * RadioButtonList.cs: fix for bug #48874 by Yaron Shkop.
  224. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  225. * RadioButtonList.cs: fix for bug #48870 by Yaron Shkop.
  226. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  227. * DataList.cs: fixed bug #48217. Patch by [email protected] (Yaron
  228. Shkop).
  229. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  230. * AdRotator.cs: fixes bug #48691. Patch by [email protected] (Yaron
  231. Shkop).
  232. 2003-09-27 Gonzalo Paniagua Javier <[email protected]>
  233. * CheckBox.cs: render the 'disabled' attribute in the correct tag.
  234. * WebControl.cs: fixed Enabled property and save it in ViewState.
  235. Fixes bug #48802.
  236. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  237. * ListControl.cs: fixed bug #48668. Thanks to Yaron Shkop.
  238. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  239. * ListBox.cs: patch by [email protected] (Yaron Shkop) that fixes
  240. bug #48671.
  241. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  242. * FontInfo.cs: fixed Name property as suggested by Rich Alimi
  243. <[email protected]>.
  244. 2003-09-14 Gonzalo Paniagua Javier <[email protected]>
  245. * RegularExpressionValidator.cs: fix for EvaluateIsValid by Juraj
  246. Skripsky <[email protected]>
  247. 2003-09-13 Gonzalo Paniagua Javier <[email protected]>
  248. * BaseValidator.cs: patch by Juraj Skripsky ([email protected]) that
  249. fixes rendering of the end tag.
  250. 2003-08-31 Gonzalo Paniagua Javier <[email protected]>
  251. * Repeater.cs: fix for Items property provided by [email protected]
  252. (Yaron Shkop). Closes bug #48060.
  253. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  254. * CheckBox.cs: in LoadPostData, only return
  255. true when the new data is different from the one we had. Fixed
  256. conditions to save Checked state. Thanks to [email protected]
  257. (Yaron Shkop).
  258. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  259. * Style.cs: Font.Strikeout renders as 'line-through'. Fixes bug #47871.
  260. 2003-08-25 Gonzalo Paniagua Javier <[email protected]>
  261. * WebControl.cs: removed dangling ^M and unneeded fields. Keep track
  262. of Enable in ViewState. Fixes bug #47865.
  263. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  264. * Style.cs: the MARKED bit is not send set in ViewState unless something
  265. is changed. Fixed TrackViewState condition.
  266. * WebControl.cs: save the base ViewState *after* ControlStyle is done,
  267. because it uses the same ViewState as the control. Fixes bug #47725.
  268. 2003-08-16 Gonzalo Paniagua Javier <[email protected]>
  269. * HyperLinkColumn.cs: patch from David Pickens <[email protected]>
  270. that fixes databinding when only DataTextField or DataNavigateUrlField
  271. is set.
  272. 2003-08-14 Gonzalo Paniagua Javier <[email protected]>
  273. * ListControl.cs: patch sent by Yaacov Akiba Slama <[email protected]> on
  274. behalf of Yaron Shkop <[email protected]> that fixes selection of
  275. values before assigning a data source and other issues.
  276. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  277. * CheckBox.cs: save viewstate when needed and correctly handle post
  278. data. Fixes bug #47462.
  279. 2003-08-01 Andreas Nahr <[email protected]>
  280. * ButtonColumn.cs: Removed additional attributes
  281. * CheckBox.cs: Added attribute
  282. * DataGrid.cs: Added attributes
  283. * HyperLinkColumn.cs: Changed attributes, added lamespec
  284. * Style.cs: Removed attributes
  285. * TextBox.cs: Added/ removed attributes
  286. 2003-08-01 Andreas Nahr <[email protected]>
  287. * AdRotator.cs: Added all attributes
  288. * BaseDataList.cs: Added all attributes, added lamespec, removed additional attributes
  289. * BaseValidator.cs: Added all attributes
  290. * BoundColumn.cs: Added all attributes
  291. * Button.cs: Added all attributes
  292. * ButtonColumn.cs: Added all attributes, added lamespec
  293. * Calendar.cs: Added all attributes, added error checks, throws more exceptions
  294. * CheckBox.cs: Added all attributes
  295. * CheckBoxList.cs: Added all attributes
  296. * CompareValidator.cs: Added all attributes
  297. * CustomValidator.cs: Added all attributes
  298. * DataGrid.cs: Added all attributes, more verbose exceptions, fixed signature, removed additional attributes
  299. * DataGridColumn.cs: Added all attributes
  300. * DataGridColumnCollection.cs: Added all attributes
  301. * DataGridPagerStyle.cs: Added all attributes
  302. * DataGridTableInternal.cs: Made DataGridTableInternal internal
  303. * DataList.cs: Added all attributes, more verbose exceptions, removed non-existing member
  304. * DropDownList.cs: Added all attributes
  305. * FontInfo.cs: Added all attributes
  306. * HyperLink.cs: Added all attributes
  307. * HyperLinkColumn.cs: Added all attributes
  308. * Image.cs: Added all attributes
  309. * ImageButton.cs: Added all attributes
  310. * Label.cs: Added all attributes
  311. * LinkButton.cs: Added all attributes
  312. * ListBox.cs: Added all attributes, added error checks, throws more exceptions
  313. * ListControl.cs: Added all attributes
  314. * ListItem.cs: Added all attributes
  315. * ListItemCollection.cs: Added attribute
  316. * Literal.cs: Added all attributes
  317. * Panel.cs: Added all attributes
  318. * RadioButton.cs: Added all attributes
  319. * RadioButtonList.cs: Added all attributes, added error checks, throws more exceptions
  320. * RangeValidator.cs: Added all attributes
  321. * RegularExpressionValidator.cs: Added all attributes
  322. * Repeater.cs: Added all attributes
  323. 2003-07-30 Andreas Nahr <[email protected]>
  324. * RequiredFieldValidator.cs: Added all attributes
  325. * Style.cs: Added all attributes
  326. * Table.cs: Added all attributes
  327. * TableCell.cs: Added all attributes, added error checks, throws more exceptions
  328. * TableCellCollection.cs: Added attribute
  329. * TableRow.cs: Added all attributes
  330. * TableRowCollection: Added attribute
  331. * TableStyle.cs: Added all attributes, improved error messages
  332. * TemplateColumn.cs: Added all attributes
  333. * TextBox.cs: Added all attributes, added error checks, throws more exceptions
  334. * ValidationSummary.cs: Added all attributes
  335. * WebControl.cs: Added all attributes
  336. * Xml.cs: Added all attributes
  337. 2003-07-30 Gonzalo Paniagua Javier <[email protected]>
  338. * DataGrid.cs: fixed signature of ItemCreated and PageIndexChanged.
  339. * DataList.cs: fixed signature of ItemCreated and ItemDataBound.
  340. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  341. * CheckBoxList.cs: fixes bug reported on the list about the state of
  342. the CheckButtons not being preserved across posts.
  343. 2003-07-21 Gonzalo Paniagua Javier <[email protected]>
  344. * ListControl.cs: added SelectedValue property (1.1). Closes 46412.
  345. 2003-06-30 Gonzalo Paniagua Javier <[email protected]>
  346. * AdRotator.cs: fixed bug #44271 and a few others bugs. Mono-stylized.
  347. 2003-06-26 Gonzalo Paniagua Javier <[email protected]>
  348. * ListControl.cs: save viewstate data when any of the 3 values is not
  349. null. Fixed condition to save selection indices. Closes bug #45493.
  350. 2003-06-20 Gonzalo Paniagua Javier <[email protected]>
  351. * DataGrid.cs: fixed bug #43823.
  352. 2003-05-29 Gonzalo Paniagua Javier <[email protected]>
  353. * DataGrid.cs: fixed delegate type for SortCommand.
  354. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  355. * DataGridColumnCollection.cs: added missing return in RemoveAt.
  356. 2003-05-09 Gonzalo Paniagua Javier <[email protected]>
  357. * DataGridColumnCollection.cs: fixed LoadViewState for the columns.
  358. Don't save ViewState is the number of columns is 0.
  359. 2003-05-02 Gonzalo Paniagua Javier <[email protected]>
  360. * DataGrid.cs: get the right item Type for the property we're reading
  361. fromt the data source.
  362. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  363. * Label.cs:
  364. * TextBox.cs: added control builder attribute.
  365. 2003-03-29 Gonzalo Paniagua Javier <[email protected]>
  366. * DataGrid.cs: Fixed SaveViewState and type of ItemDataBound.
  367. 2003-03-17 George Kodinov <[email protected]>
  368. * Unit.cs: Called the correct method to get the Numeric locale for the
  369. double conversion
  370. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  371. * ButtonColumn.cs: fixed a couple of infinite loop problems and render
  372. correctly the header of the column.
  373. * DataGridTableInternal.cs: don't assign a default ID to this control.
  374. * LinkButton.cs: raise bubble event in OnCommand.
  375. * TableCellCollection.cs: fixed the index returned by Add.
  376. * TableRowCollection.cs: ditto.
  377. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  378. * Xml.cs: don't call MapPathSecure when setting DocumentSource.
  379. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  380. * RangeValidator.cs: fixed bug #37577. Thanks to Stephane Tombeur
  381. for reporting the bug and providing the fix.
  382. 2003-01-26 Gonzalo Paniagua Javier <[email protected]>
  383. * DataGrid.cs: AutoGenerateColumns defaults to true. Fixed
  384. CreateColumnSet. Set the owner of the column when auto generated.
  385. In PrepareControlHierarchyForItem, fixed for loop bound.
  386. * LinkButtonInternal.cs: fixed infinite recursion bug.
  387. Fixes bug #37124.
  388. 2003-01-22 Zdravko Tashev <[email protected]>
  389. * Xml.cs: a few fixes.
  390. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  391. * DataList.cs: handle the exception when adding new keys to
  392. DataKeysArray.
  393. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  394. * BaseDataList.cs: what can I say for this one? I spent so many time
  395. until I finally found this that I'm gonna miss this f....g bug... ;-).
  396. Farewell. Now we can get events from image buttons inside Data*.
  397. * DataList.cs: now the value stored in ViewState for item count is
  398. correct.
  399. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  400. * DataGrid.cs: default value for ShowHeaders is true. Fixed style for
  401. Header and Footer.
  402. * DataGridColumn.cs: added SetOwner method.
  403. * DataGridColumnCollection.cs: set the owner of the column when added.
  404. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  405. * BoundColumn.cs: typo.
  406. * DataGrid.cs: use 'as' instead of casting. Typo.
  407. * HyperLinkColumn.cs: call OnColumnChanged when any property change.
  408. Mono-stylized.
  409. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  410. * HyperLink.cs: fixes bug #36336.
  411. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  412. * DataList.cs: fixed IRepeatInfoUser.GetItemStyle.
  413. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  414. * BaseValidator.cs: return an empty string in GetControlValidationValue
  415. when GetValue returned null.
  416. * CompareValidator.cs: fixed EvaluateIsValid.
  417. * RegularExpressionValidator.cs: fixed EvaluateIsValid.
  418. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  419. * Xml.cs: use MapPathSecure to get the path of the document.
  420. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  421. * DataList.cs: fixed header & footer.
  422. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  423. * DataList.cs: for header and footer don't use data source.
  424. Instantiate in the DataListItem, not in the DataList.
  425. databind-template.aspx works now.
  426. 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
  427. * BaseDataList.cs:
  428. (Render): call RenderContents (), not base.RenderContents ().
  429. * DataList.cs: style.
  430. But I still haven't found what i'm looking for....
  431. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  432. * Calendar.cs: fixed loading/saving selected dates.
  433. * SelectedDatesCollection.cs: added internal function to get the
  434. underlying ArrayList.
  435. Calendar navigation works again. Selecting dates too.
  436. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  437. * DataList.cs: added a few attributes and fixed infinite recursion.
  438. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  439. * ListItemCollection.cs: fixed LoadViewState.
  440. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  441. * TableItemStyle.cs: TypeDescriptor.GetConverter seems to fail.
  442. Commented out some code until it works.
  443. 2002-10-29 Gaurav Vaish <[email protected]>
  444. * BaseCompareValidator.cs - Fixed operator bug in
  445. Compare(string, string, ...)
  446. * CompareValidator.cs - EvaluateIsValid() : Implemented.
  447. 2002-10-28 Gaurav Vaish <[email protected]>
  448. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  449. : Implemented.
  450. - All Properties : Now make use of ViewState.
  451. 2002-10-28 Gaurav Vaish <[email protected]>
  452. * BaseValidator.cs - Uncomment NotImplementedException.
  453. 2002-10-28 Gaurav Vaish <[email protected]>
  454. * BaseValidator.cs - Minor changes in TODO comments.
  455. 2002-10-28 Gaurav Vaish <[email protected]>
  456. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  457. the NotImplementedException being thrown.
  458. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  459. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  460. * DataGrid.cs - InitializePager(DataGridItem, int,
  461. PagedDataSource) : Implemented.
  462. 2002-10-28 Gaurav Vaish <[email protected]>
  463. * DataList.cs - PrepareControlHierarchy() : Implemented.
  464. 2002-10-28 Gaurav Vaish <[email protected]>
  465. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  466. - GetItem(ListItemType, int) : Removed TODO.
  467. - CreateControlHierarchy(bool) : Implemented.
  468. - CreateItem(int, ListItemType) : Implemented.
  469. - CreateItem(int, ListItemType,
  470. bool, object) : Implemented.
  471. - InitializeItem(DataItem) : Implemented.
  472. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  473. The ViewState["_!ItemCount"],
  474. ViewState["_!DataSource_ItemCount"]
  475. are shared by DataList and DataGrid, and hence
  476. should share the same name.
  477. - ResolveDataSource(object, string)
  478. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  479. ::GetResolvedDataSource(object, string).
  480. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  481. * DataGrid.cs: fixed compilation
  482. 2002-09-12 Gaurav Vaish <[email protected]>
  483. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  484. * DataGrid.cs - CreateControlHierarchy(bool)
  485. : working towards completion.
  486. - ResolveDataSource(object, string)
  487. : stubbed new method
  488. - CreateItem(....)
  489. : stubbed new method
  490. Well. It's almost done.
  491. * DataGridTableInternal.cs
  492. - Added new internal class.
  493. 2002-08-28 Gaurav Vaish <[email protected]>
  494. * DataSourceInternal.cs - Added new class (internal).
  495. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  496. * FontUnit.cs:
  497. * HorizontalAlign.cs:
  498. * Unit.cs:
  499. * VerticalAlign.cs: fixes based on class status page.
  500. * HorizontalAlignConverter.cs: implemented.
  501. * VerticalAlignConverter.cs: implemented.
  502. * FontUnitConverter.cs: implemented GetStandardValues ().
  503. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  504. 2002-08-19 Gaurav Vaish <[email protected]>
  505. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  506. 2002-08-19 Gaurav Vaish <[email protected]>
  507. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  508. 2002-08-19 Gaurav Vaish <[email protected]>
  509. * DataGrid.cs - Working on the undocumented protected
  510. method CreateColumnSet. AutoCreateColumns method
  511. stubbed. Left CreateControlHierarchy for the time
  512. being, looks like I'm going insane. ;-)
  513. 2002-08-19 Gaurav Vaish <[email protected]>
  514. * Button.cs - Steffen's OnCommand bug fix.
  515. 2002-08-12 Gaurav Vaish <[email protected]>
  516. * DataGrid.cs - Added protected method (skeleton)
  517. CreateColumnSet(PagedDataSource, bool)
  518. Still trying to know how will it be used
  519. and what for...
  520. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  521. * PagedDataSource.cs: fixed compilation.
  522. 2002-08-08 Gaurav Vaish <[email protected]>
  523. * DataGrid.cs - Added private method
  524. CreatePagedDataSource
  525. - Started work on
  526. CreateControlHierarchy(bool)
  527. * PagedDataSource.cs - Bug fixed.
  528. CurrentPageIndex is writable.
  529. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  530. * DataGrid.cs: fixed typo.
  531. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  532. 2002-08-06 Gaurav Vaish <[email protected]>
  533. * DataGridColumn.cs - Added internal methods to get the
  534. various styles (needed in DataGrid.cs)
  535. * DataGrid.cs - Completed the method
  536. PrepareControlHierarchy()
  537. 2002-08-06 Gaurav Vaish <[email protected]>
  538. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  539. - Added private method
  540. PrepareControlHierarchyForItem()
  541. 2002-08-05 Gaurav Vaish <[email protected]>
  542. * DataGrid.cs - Completed method
  543. OnBubbleEvent(object, EventArgs)
  544. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  545. * Xml.cs: implemented document/transform load.
  546. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  547. * Calendar.cs: added myself to the list of authors.
  548. * DropDownList.cs: fixed a few properties.
  549. * ListControl.cs: fixed SelectedIndex.
  550. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  551. * Calendar.cs: lots of fixes. Render days. Still left to persist
  552. selected days when changing month.
  553. * Unit.cs: fixed Percentage and Pixel.
  554. * WebControl.cs: a few properties are now using ControlStyle instead
  555. of ViewState to persist.
  556. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  557. * BaseValidator.cs: it works now.
  558. * DataGridColumn.cs: added attribute and made it abstract.
  559. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  560. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  561. * TextBox.cs: default for Wrap is true.
  562. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  563. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  564. * DropDownList.cs:
  565. (ToolTip): fixed.
  566. * ListItem.cs:
  567. (LoadViewState): fixed.
  568. * ListItemCollection.cs:
  569. (TrackViewState): use items instead of 'this' in foreach.
  570. * Style.cs:
  571. (LoadViewState): more checking of parameters.
  572. * WebControl.cs: implemented LoadViewState and SaveViewState.
  573. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  574. * ListItem.cs: there was no code to unset the flags!!!
  575. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  576. * FontUnit.cs: use a hashtable for mapping size name to value.
  577. * HyperLink.cs: fixed a bug and a typo.
  578. * Unit.cs: some fixes to internal constructor.
  579. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  580. * ListControl.cs: fixed a couple of range checks.
  581. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  582. an HtmlForm (p.e., Label).
  583. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  584. * AdRotator.cs:
  585. * Button.cs:
  586. * Calendar.cs:
  587. * CheckBox.cs:
  588. * CheckBoxList.cs:
  589. * DataList.cs:
  590. * DropDownList.cs:
  591. * HyperLink.cs:
  592. * HyperLinkColumn.cs:
  593. * Image.cs:
  594. * ImageButton.cs:
  595. * Label.cs:
  596. * LinkButton.cs:
  597. * ListBox.cs:
  598. * Panel.cs:
  599. * PlaceHolder.cs:
  600. * RadioButton.cs:
  601. * RadioButtonList.cs:
  602. * Table.cs:
  603. * TableRow.cs:
  604. * TextBox.cs:
  605. * WebControl.cs: removed attributes added by mistake (i used
  606. GetCustomAttributes (true), d'oh!).
  607. * DataListItem.cs: implemented RenderItem.
  608. * Repeater.cs: implemented CreateItem and InitializeItem.
  609. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  610. * BaseDataList.cs: a couple of fiex and added attributes.
  611. * DataGrid.cs: little fixes.
  612. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  613. * CheckBoxList.cs:
  614. * DataGrid.cs:
  615. * DataList.cs:
  616. * DropDownList.cs:
  617. * ListBox.cs:
  618. * PlaceHolder.cs:
  619. * RadioButton.cs:
  620. * RadioButtonList.cs:
  621. * TableRow.cs:
  622. * WebControl.cs:
  623. * Xml.cs: forgot to add using System.ComponentModel.
  624. * BaseValidator.cs: use explicitly
  625. System.ComponentModel.AttributeCollection as there is another class
  626. with the same name under System.Web.UI.
  627. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  628. * AdRotator.cs:
  629. * Button.cs:
  630. * Calendar.cs:
  631. * CheckBox.cs:
  632. * CheckBoxList.cs:
  633. * DataGrid.cs:
  634. * DataList.cs:
  635. * DropDownList.cs:
  636. * HyperLink.cs:
  637. * Image.cs:
  638. * ImageButton.cs:
  639. * Label.cs:
  640. * LinkButton.cs:
  641. * ListBox.cs:
  642. * Panel.cs:
  643. * PlaceHolder.cs:
  644. * RadioButton.cs:
  645. * RadioButtonList.cs:
  646. * Table.cs:
  647. * TableRow.cs:
  648. * TextBox.cs:
  649. * WebControl.cs:
  650. * Xml.cs: added/fixed all attributes used by xsp.
  651. * BaseValidator.cs: some fixes.
  652. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  653. * Table.cs:
  654. (AddAttributesToRender): correctly default to border=1.
  655. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  656. * AdRotator.cs:
  657. (LoadAdFile): make the dictionary null after every iteration.
  658. * LinkButton.cs:
  659. * ListControl.cs:
  660. * ListItem.cs: fixed warnings.
  661. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  662. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  663. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  664. * DataGridColumn.cs:
  665. * DataGridPagerStyle.cs:
  666. * DataList.cs:
  667. * DataListItem.cs:
  668. * Image.cs:
  669. * LinkButton.cs:
  670. * ListControl.cs:
  671. * ListItem.cs:
  672. * ListItemCollection.cs:
  673. * Repeater.cs:
  674. * ServerValidateEventArgs.cs:
  675. * Style.cs:
  676. * TableRow.cs:
  677. * WebControl.cs:
  678. * Xml.cs: more class status page based changes.
  679. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  680. * Button.cs:
  681. (.ctor): fixed to render the correct tag.
  682. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  683. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  684. * WebControl.cs:
  685. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  686. WebControl derived classes should be rendered inside a HtmlForm.
  687. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  688. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  689. processing methods.
  690. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  691. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  692. * RepeatInfo.cs: implemented DoHorizontalRendering.
  693. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  694. * System.Web.UI.WebControls/Repeater.cs:
  695. (Controls):
  696. (OnDataBinding): fixed stack overflow.
  697. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  698. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  699. * RepeatInfo.cs: implemented DoHorizontalRendering.
  700. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  701. * WebControl.cs:
  702. (CopyBaseAttributes): copy Attributes and don't throw exception.
  703. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  704. * ListBox.cs: mono-stylized.
  705. (AddAttributesToRender): call parent class method.
  706. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  707. * Style.cs: fixed IsEmpty and Width.
  708. * Table.cs: mono-stylized.
  709. (TableRowControlCollection.AddAt): fixed.
  710. (AddAttributesToRender): fixed.
  711. * TableCell.cs: mono-stylized.
  712. (.ctor): use PreventAutoID.
  713. (AddAttributesToRender): fixed.
  714. (AddParsedSubObject): fixed.
  715. * TableRow.cs: mono-stylized. Added
  716. ParseChildren attribute.
  717. * TableStyle.cs:
  718. (get_GridLine): fixed.
  719. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  720. * Panel.cs: fixed stack overflow.
  721. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  722. and SingleConverter.
  723. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  724. * RadioButton.cs: mono-stylized and some little fixes.
  725. * TextBox.cs: mono-stylized.
  726. (MaxLength): fixed typo.
  727. (AddAttributesToRender): don't render the text between the tags for
  728. SingleLine, use value attribute for it. Don't render the text for
  729. Password.
  730. (OnPreRender): don't throw exception and call base.OnPreRender.
  731. (Render): for MultiLine, render the text between the opening and
  732. closing tags encoded as HTML.
  733. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  734. * ImageButton.cs:
  735. (AddAttributesToRender): fixer another stack overflow.
  736. * WebControl.cs:
  737. (TagName): modified to use TagKey instead of tagKey as the property
  738. can be overriden.
  739. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  740. * LinkButton.cs: mono-stylized.
  741. (AddParsedSubObject):
  742. (RenderControls): little fixes.
  743. * WebControl.cs:
  744. (AddAttributesToRender): fixed usage of IEnumerator.
  745. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  746. * Literal.cs: beautified.
  747. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  748. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  749. * WebControl.cs: use Span as default tag when no other provided in
  750. constructor. That is what MS renders.
  751. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  752. * Button.cs:
  753. (AddAttributesToRender): fixed (classic) stack overflow.
  754. * CheckBox.cs: mono-stylized.
  755. (AutoPostBack): fixed stack overflow.
  756. (Render): fixed alignment issues. Also set the For attribute always
  757. for the label.
  758. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  759. * AdRotator.cs: GetData does not work as it should, but now it returns
  760. useful data (only the first ad in the file). Set the NavigateUrl
  761. property in the hyperlink if available.
  762. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  763. * Image.cs: added an attribute and fixed stack overflow.
  764. * WebControl.cs:
  765. (RenderBeginTag): fixed.
  766. (TagName): don't call Enum.IsDefined twice.
  767. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  768. * WebControl.cs: added attributes PersistChildrenAttribute and
  769. ParseChildrenAttribute.
  770. 2002-05-24 Duncan Mak <[email protected]>
  771. * DataGridItem.cs (SetItemType): Changed function signature to
  772. match 1.0 spec.
  773. * ListItemCollection.cs (this): Changes the visibility level of
  774. the indexer.
  775. * Repeater.cs (OnItemCommand):
  776. (OnItemCreated):
  777. (OnItemDataBound): Added necessary casts.
  778. 2002-05-07 Duncan Mak <[email protected]>
  779. * Button.cs (AddAttributesToRender):
  780. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  781. GetClientValidatedEvent method.
  782. 2002-03-27 Gaurav Vaish <[email protected]>
  783. * Removed extra methods, corrected access modifiers to several
  784. methods.
  785. 2002-03-26 Gaurav Vaish <[email protected]>
  786. * <SeveralFiles>.cs - Added some attributes
  787. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  788. methods. Will complete them later. Right now, busy with
  789. the attributes part.
  790. * RepeaterItem.cs - Completed.
  791. Oh God! Mercy! I will die applying attributes. I look at the missing
  792. part in the class-status - daemon! Kyrie eleison!
  793. 2002-03-19 Gaurav Vaish <[email protected]>
  794. Some bug fixes
  795. * AdRotator.cs - Added definition for Font.
  796. * BaseCompareValidator.cs - Added definition for Controls.
  797. * Calendar.cs - SelectMonthText definition corrected.
  798. * DataList.cs - Added definition for SeparatorTemplate.
  799. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  800. but to UI.WebControls.
  801. 2002-03-17 Gaurav Vaish <[email protected]>
  802. Finally, I have made it. Today I did a second build for the
  803. System.Web assembly. It compiled 195 classes today.
  804. I am waiting eagerly for the runtime to come up so that the objects
  805. may be tested to their last levels. Several of the methods are still
  806. under the tag of "TODO" throwing NotImplementedException. Well, I
  807. hope to remove them soon, but how far is this soon - even I don't
  808. know, though I am happy to make the build a success even before
  809. the vacations to come.
  810. 2002-03-07 Gaurav Vaish <[email protected]>
  811. Yesterday and today I tried to do some building of the aseembly,
  812. but was dumped with uncoutably infinite errors. ;-)
  813. I have put the copies of the recent errors on my home page, want
  814. to have a look at them? See:
  815. http://mastergaurav.virtualave.net/mono/
  816. I don't know what to do with these errors. Oh! The buggy me! How
  817. will I overcome myself. Hopefully, by when my vacations over, I
  818. should have made a repository where the build will not fail.
  819. 2002-03-05 Gaurav Vaish <[email protected]>
  820. I am now going to do a build that will include the
  821. System.Web.UI.WebControls namespace. Hoping that I will make it
  822. soon. My exams are coming near and I have to pack up soon.
  823. 2002-03-04 Gaurav Vaish <[email protected]>
  824. Comments:
  825. And with this, ie, today's work, all the objects mentioned in the
  826. namespace appear in the implementation. But it may not be worth
  827. trying to go for a build because of dependence of several of the
  828. internal methods that may clash with already available assembly
  829. System.Web.
  830. Also, the classes lack possible attributes, like those informing
  831. about child-controls etc. But I have to first create the attribute
  832. classes before I attach the attributes to the classes.
  833. * CustomValidator.cs - Completed. In process realized that
  834. I have to complete / rejuvinate BaseValidator class.
  835. * BaseValidator.cs - Complete rejuvination. Completed 80%
  836. of the job. All that is left is Render(HtmlTextWriter),
  837. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  838. RegisterValidatorDeclaration()
  839. * DataGridPagerStyle.cs - Completed. That adds one more missle
  840. in my artillery.
  841. * DataKeyCollection.cs - Completed. Petty small.
  842. * Repeater.cs - Work started off. This is a quite
  843. heavy class. Hooh!
  844. * DataGridItemEventArgs.cs,
  845. * DataGridShortCommandEventArgs.cs,
  846. * DataListItemEventArgs.cs,
  847. * MonthChangedEventArgs.cs,
  848. * RepeaterItemEventArgs.cs,
  849. * ServerValidateEventArgs.cs,
  850. * DataGridPageChangedEventArgs.cs
  851. - Damn, I marked them "*", while they
  852. did not exist.
  853. * Repeater.cs - Done all except for an undocumented
  854. method CreateControlHierarchy(bool). Though the method
  855. is quite clear by its name, but it will take some time
  856. for me to come with some material to flush in.
  857. 2002-03-03 Gaurav Vaish <[email protected]>
  858. * SelectedDatesCollection.cs - Completed.
  859. * PagedDataSource.cs - Completed. Pathetically nice class.
  860. * RegularExpressionValidator.cs
  861. - Completed. Ridiculously small and
  862. annoyinglyc crazy-driving class, basically the method
  863. EvaluateIsValid().
  864. * RangeValidator.cs - Completed.
  865. * DataGridColumn.cs - Completed.
  866. * EditCommandColumn.cs - All is complete except for the
  867. InitializeCell(TableCell, int, ListItemType) method.
  868. * DataListItem.cs - All done except for a longish method
  869. RenderItem(HtmlTextWriter, bool, bool)
  870. 2002-03-02 Gaurav Vaish <[email protected]>
  871. * RepeaterItemCollection.cs - Completed.
  872. I love *Collection classes. I am planning to make a
  873. program that will generate a *Collection class. It's so
  874. simple and the same. ;-)
  875. * DataGridColumnCollection.cs - Completed.
  876. ... except probably for *ColumnCollection classes, where
  877. you have to put in some more effort. Still, these class
  878. generation can be automated.
  879. * DataListItemCollection.cs - Completed.
  880. See, how easily, in less than a quarter of a minute, I
  881. completed this class - manually. Copy-Paste/Cut-Replace.
  882. 2002-02-21 Gaurav Vaish <[email protected]>
  883. * DataGrid.cs - Following methods implemented:
  884. TrackViewState(), LoadViewState(object), SaveViewState(),
  885. On* -- The event raisers.
  886. OnBubbleEvent(object, EventArgs) is still incomplete.
  887. * DataGridItem.cs - Initial Implementation
  888. * DataGridItemCollection.cs - Completed.
  889. 2002-02-08 Gaurav Vaish <[email protected]>
  890. * DataGrid.cs - Initial Implementation. Worked
  891. primarily with some properties.
  892. 2002-02-07 Gaurav Vaish <[email protected]>
  893. * ListBox.cs - Completed. Implemented
  894. LoadPostData(string, NameValueCollection)
  895. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  896. 2002-02-06 Gaurav Vaish <[email protected]>
  897. * ListBox.cs - Implemented the following:
  898. RaisePostDataChangedEvent()
  899. 2002-02-02 Gaurav Vaish <[email protected]>
  900. * ListBox.cs - Supports the following properties:
  901. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  902. ToolTip.
  903. Methods:
  904. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  905. RenderContents(HtmlTextWriter)
  906. 2002-02-01 Gaurav Vaish <[email protected]>
  907. * TargetConverter.cs - Completed
  908. * TemplateColumn.cs - Completed
  909. * DataList.cs - Corrected the get-er methods for the
  910. *Style objects. Corrected the get/set-er methods for ViewState
  911. related objects.
  912. Addded support for properties:
  913. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  914. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  915. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  916. SeparatorStyle, SeparatorItemTemplate.
  917. Events:
  918. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  919. ItemCreated, ItemDataBound, UpdateCommand.
  920. Methods:
  921. CreateControlStyle(), LoadViewState(object),
  922. SaveViewState(), TrackViewState
  923. Event handlers:
  924. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  925. OnEditCommand, OnItemCommand, OnItemCreated,
  926. OnItemDataBound, OnUpdateCommand
  927. Added dummy methods for some undocumented methods:
  928. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  929. CreateItem(int, ListItemType, bool, object),
  930. PrepareControlHierarchy(), InitializeItem(DataListItem)
  931. * ListBox.cs - Started working.
  932. 2002-01-31 Gaurav Vaish <[email protected]>
  933. * RepeaterInfo.cs - Initial Implementation. Done all
  934. except for RepeatDirection.Vertical
  935. * TableStyle.cs - Completed
  936. 2002-01-30 Gaurav Vaish <[email protected]>
  937. * DropDownList.cs - Completed
  938. * ListItemCollection.cs - Added method FindByValueInternal to
  939. assist in the derived classes.
  940. Discovered bug in FindByValue. Removed
  941. * UnitConverter.cs - Completed
  942. * PlaceHolder.cs - What can be simpler than this?
  943. * PlaceHolderControlBuilder.cs
  944. - Uh! Damn cool one.
  945. * RadioButtonList.cs - Initial Implementation. All is done
  946. except for the implementation of
  947. method IRepeatInfoUser.RenderItem(...)
  948. * ValidatedControlConverter.cs
  949. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  950. * ValidationSummary.cs - Initial Implementation.
  951. * WebColorConverter.cs - Initial Implementation
  952. 2002-01-27 Gaurav Vaish <[email protected]>
  953. * FontNamesConverter.cs - Completed
  954. * FontUnitConverter.cs - Partial Implementation
  955. * ListItemControlBuilder.cs - Completed
  956. 2002-01-27 Gaurav Vaish <[email protected]>
  957. * TextBox.cs - All done except *Render* methods
  958. * TextBoxControlBuilder.cs - Completed
  959. * Xml.cs - Partial Implementation
  960. 2002-01-26 Gaurav Vaish <[email protected]>
  961. * RadioButton.cs - Completed
  962. * TextBox.cs - Partial Implementation
  963. 2002-01-25 Gaurav Vaish <[email protected]>
  964. * Panel.cs - Completed
  965. * TableItemStyle.cs - Completed
  966. 2002-01-18 Gaurav Vaish <[email protected]>
  967. * TableCellCollection.cs - Completed
  968. * TableRowCollection.cs - Completed
  969. * TableHeaderCell.cs - Completed
  970. * TableRow.cs - Completed
  971. 2002-01-09 Gaurav Vaish <[email protected]>
  972. * TableCellControlBuilder.cs - Completed
  973. * Table.cs - Completed
  974. * TableCell.cs - Completed
  975. 2002-01-07 Gaurav Vaish <[email protected]>
  976. * CheckBoxList.cs - Completed
  977. * ButtonColumn.cs - Completed
  978. * Button.cs - Completed
  979. 2001-12-28 Gaurav Vaish <[email protected]>
  980. * HyperLink.cs - Completed
  981. * Image.cs - Completed
  982. * ImageButton.cs - Completed
  983. * Label.cs - Completed
  984. * LabelControlBuilder.cs - Completed
  985. * LinkButton.cs - Completed
  986. * LinkButtonControlBuilder.cs - Completed
  987. * Literal.cs - Completed
  988. * LieteralControlBuilder.cs - Completed
  989. * FontUnit.cs - Completed
  990. 2001-12-27 Gaurav Vaish <[email protected]>
  991. * Calendar.cs - Completed the functions of Render*,
  992. ViewStates (Track/View/Save),
  993. RaisePostBackEvent.
  994. Left: RenderAllDays (partially)
  995. 2001-12-21 Gaurav Vaish <[email protected]>
  996. * Calendar.cs - Added some more functions
  997. * Style.cs - Completed
  998. * ListItem.cs - Completed
  999. * ListItemCollection.cs - Completed
  1000. Made the first successful build of System.Web.dll that included
  1001. System.Web.UI.WebControls!
  1002. 2001-12-20 Gaurav Vaish <[email protected]>
  1003. FontInfo.cs - Complete revamp. Completed
  1004. 2001-12-19 Gaurav Vaish <[email protected]>
  1005. ListItemCollection.cs - Completed
  1006. ListItem.cs - Initial Implementation
  1007. Style.cs - Initial Implementation
  1008. Right now I am in a total mood to do a successful build. Creating so many
  1009. classes, completing classes in System.Web System.Web.UI namespaces.
  1010. 2001-12-18 Gaurav Vaish <[email protected]>
  1011. TODO - Properly added
  1012. CheckBox.cs - Completed
  1013. BaseDataList.cs - Completed
  1014. DayRenderEventArgs.cs - Completed
  1015. RepeaterItem.cs - Initial implementation
  1016. 2001-12-17 Gaurav Vaish <[email protected]>
  1017. BaseCompareValidator.cs - Completed
  1018. AdRotator.cs - Completed
  1019. 2001-12-15 Gaurav Vaish <[email protected]>
  1020. CommandEventArgs.cs - Completed
  1021. DataGridCommandEventArgs.cs - Completed
  1022. RepeaterCommandEventArgs.cs - Completed
  1023. DataListCommandEventArgs.cs - Completed
  1024. CompareValidator.cs - Partial Implementation
  1025. 2001-12-02 Gaurav Vaish <[email protected]>
  1026. CheckBoxList.cs - Partial Implementation.
  1027. All except "Render"
  1028. 2001-12-01 Gaurav Vaish <[email protected]>
  1029. ListControl.cs - Completed
  1030. 2001-11-30 Gaurav Vaish <[email protected]>
  1031. CheckBox.cs - Completed
  1032. ListControl.cs - Initial Implementation
  1033. CheckBoxList.cs - Started with it, but first needed
  1034. ListControl. Left it.
  1035. 2001-11-29 Gaurav Vaish <[email protected]>
  1036. CalendarDay.cs - Making a note that this
  1037. has been implemented
  1038. Calendar.cs - Making a note that have made some changes.
  1039. Unimplmented functions throw
  1040. NotImplementedException
  1041. CheckBox.cs - Can now "Render" and "LoadPostData"
  1042. 2001-11-08 Gaurav Vaish <[email protected]>
  1043. WebControl.cs - Total Revamp, Partial Implementation
  1044. AdRotator.cs - Able to load files
  1045. AdCreatedEventArgs.cs - Implemented
  1046. 2001-11-05 Gaurav Vaish <[email protected]>
  1047. Calendar.cs - Initial Implementation
  1048. ButtonColumn.cs - Initial Implementation
  1049. Button.cs - Initial Implementation
  1050. BoundColumn.cs - Initial Implementation
  1051. BaseCompareValidator.cs - Minor Changes
  1052. DataList.cs, BaseValidator.cs, BaseDataList.cs
  1053. - Added more functions, other changes
  1054. 2001-10-28 Gaurav Vaish <[email protected]>
  1055. WebControl.cs - Initial Implementation
  1056. DataList.cs - Initial Implementation
  1057. BaseValidator.cs - Initial Implementation
  1058. BaseDataList.cs - Initial Implementation
  1059. 2001-10-27 Gaurav Vaish <[email protected]>
  1060. AdCreatedEventArgs.cs - Initial Implementation
  1061. AdCratedEventHandler.cs - Implemented
  1062. AdRotator.cs - Initial Implementation
  1063. BorderStyle.cs - Implemented
  1064. ButtonColumnStyle.cs - Implemented
  1065. CalendarSelectionMode.cs - Implemented
  1066. DayNameFormat.cs - Implemented
  1067. FirstDayOfWeek - Implemented
  1068. FontInfo.cs - Partial Implementation
  1069. FontSize.cs - Implemented
  1070. GridLines.cs - Implemented
  1071. HorizontalAlign.cs - Implemented
  1072. HyperLink.cs - Initial Implementation
  1073. ImageAlign.cs - Implemented
  1074. IRepeatInfoUser.cs - Implemented
  1075. ListItemType.cs - Implemented
  1076. ListSelectionMode.cs - Implemented
  1077. NextPrevFormat.cs - Implemented
  1078. PagerMode.cs - Implemented
  1079. PagerPosition.cs - Implemented
  1080. RepeatDirection.cs - Implemented
  1081. RepeatLayout.cs - Implemented
  1082. TextAlign.cs - Implemented
  1083. TextBoxMode.cs - Implemented
  1084. TitleFormat.cs - Implemented
  1085. UnitType.cs - Implemented
  1086. ValidationCompareOperator.cs
  1087. - Implemented
  1088. ValidationDataType.cs - Implemented
  1089. ValidationSummaryDisplayMode.cs
  1090. - Implemented
  1091. ValidatorDisplay.cs - Implemented
  1092. VerticalAlign.cs - Implemented
  1093. // File Created 2001-11-13