ChangeLog 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888
  1. 2002-10-28 Gaurav Vaish <[email protected]>
  2. * BoundColumn.cs - InitializeCell(TableCell, int, ListItemType)
  3. : Implemented.
  4. - All Properties : Now make use of ViewState.
  5. 2002-10-28 Gaurav Vaish <[email protected]>
  6. * BaseValidator.cs - Uncomment NotImplementedException.
  7. 2002-10-28 Gaurav Vaish <[email protected]>
  8. * BaseValidator.cs - Minor changes in TODO comments.
  9. 2002-10-28 Gaurav Vaish <[email protected]>
  10. * BaseValidator.cs - DetermineRenderUpLevel() : Uncomment
  11. the NotImplementedException being thrown.
  12. * DataGridPagerStyle.cs - Mode { set; } : Implemented.
  13. * DataGridLinkButton.cs - Added new class (private) : Implemented.
  14. * DataGrid.cs - InitializePager(DataGridItem, int,
  15. PagedDataSource) : Implemented.
  16. 2002-10-28 Gaurav Vaish <[email protected]>
  17. * DataList.cs - PrepareControlHierarchy() : Implemented.
  18. 2002-10-28 Gaurav Vaish <[email protected]>
  19. * DataList.cs - RenderContents(HtmlTextWriter) : Implemented.
  20. - GetItem(ListItemType, int) : Removed TODO.
  21. - CreateControlHierarchy(bool) : Implemented.
  22. - CreateItem(int, ListItemType) : Implemented.
  23. - CreateItem(int, ListItemType,
  24. bool, object) : Implemented.
  25. - InitializeItem(DataItem) : Implemented.
  26. * DataGrid.cs - CreateControlHierarchy(bool) : Bug fix.
  27. The ViewState["_!ItemCount"],
  28. ViewState["_!DataSource_ItemCount"]
  29. are shared by DataList and DataGrid, and hence
  30. should share the same name.
  31. - ResolveDataSource(object, string)
  32. : Removed. Use System.Web.UI.Utils.DataSourceHelper
  33. ::GetResolvedDataSource(object, string).
  34. 2002-09-12 Gonzalo Paniagua Javier <[email protected]>
  35. * DataGrid.cs: fixed compilation
  36. 2002-09-12 Gaurav Vaish <[email protected]>
  37. * PagedDataSource.cs - FirstIndexInPage : Fixed bug.
  38. * DataGrid.cs - CreateControlHierarchy(bool)
  39. : working towards completion.
  40. - ResolveDataSource(object, string)
  41. : stubbed new method
  42. - CreateItem(....)
  43. : stubbed new method
  44. Well. It's almost done.
  45. * DataGridTableInternal.cs
  46. - Added new internal class.
  47. 2002-08-28 Gaurav Vaish <[email protected]>
  48. * DataSourceInternal.cs - Added new class (internal).
  49. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  50. * FontUnit.cs:
  51. * HorizontalAlign.cs:
  52. * Unit.cs:
  53. * VerticalAlign.cs: fixes based on class status page.
  54. * HorizontalAlignConverter.cs: implemented.
  55. * VerticalAlignConverter.cs: implemented.
  56. * FontUnitConverter.cs: implemented GetStandardValues ().
  57. * WebColorConverter.cs: implemented ConvertFrom () and ConvertTo ().
  58. 2002-08-19 Gaurav Vaish <[email protected]>
  59. * DataGrid.cs - AutoCreateColumns: Bug fixes.
  60. 2002-08-19 Gaurav Vaish <[email protected]>
  61. * DataGrid.cs - AutoCreateColumns: completed, hopefully!
  62. 2002-08-19 Gaurav Vaish <[email protected]>
  63. * DataGrid.cs - Working on the undocumented protected
  64. method CreateColumnSet. AutoCreateColumns method
  65. stubbed. Left CreateControlHierarchy for the time
  66. being, looks like I'm going insane. ;-)
  67. 2002-08-19 Gaurav Vaish <[email protected]>
  68. * Button.cs - Steffen's OnCommand bug fix.
  69. 2002-08-12 Gaurav Vaish <[email protected]>
  70. * DataGrid.cs - Added protected method (skeleton)
  71. CreateColumnSet(PagedDataSource, bool)
  72. Still trying to know how will it be used
  73. and what for...
  74. 2002-08-10 Gonzalo Paniagua Javier <[email protected]>
  75. * PagedDataSource.cs: fixed compilation.
  76. 2002-08-08 Gaurav Vaish <[email protected]>
  77. * DataGrid.cs - Added private method
  78. CreatePagedDataSource
  79. - Started work on
  80. CreateControlHierarchy(bool)
  81. * PagedDataSource.cs - Bug fixed.
  82. CurrentPageIndex is writable.
  83. 2002-08-07 Gonzalo Paniagua Javier <[email protected]>
  84. * DataGrid.cs: fixed typo.
  85. * DataGridPagerStyle.cs: added IsPagerOnTop and IsPagerOnBottom.
  86. 2002-08-06 Gaurav Vaish <[email protected]>
  87. * DataGridColumn.cs - Added internal methods to get the
  88. various styles (needed in DataGrid.cs)
  89. * DataGrid.cs - Completed the method
  90. PrepareControlHierarchy()
  91. 2002-08-06 Gaurav Vaish <[email protected]>
  92. * DataGrid.cs - Wokring on PrepareControlHierarchy()
  93. - Added private method
  94. PrepareControlHierarchyForItem()
  95. 2002-08-05 Gaurav Vaish <[email protected]>
  96. * DataGrid.cs - Completed method
  97. OnBubbleEvent(object, EventArgs)
  98. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  99. * Xml.cs: implemented document/transform load.
  100. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  101. * Calendar.cs: added myself to the list of authors.
  102. * DropDownList.cs: fixed a few properties.
  103. * ListControl.cs: fixed SelectedIndex.
  104. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  105. * Calendar.cs: lots of fixes. Render days. Still left to persist
  106. selected days when changing month.
  107. * Unit.cs: fixed Percentage and Pixel.
  108. * WebControl.cs: a few properties are now using ControlStyle instead
  109. of ViewState to persist.
  110. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  111. * BaseValidator.cs: it works now.
  112. * DataGridColumn.cs: added attribute and made it abstract.
  113. * RequiredFieldValidator.cs: fixed return value in EvaluateIsValid.
  114. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  115. * TextBox.cs: default for Wrap is true.
  116. (OnPreRender): don't save Text if there are no listeners on TextChanged.
  117. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  118. * DropDownList.cs:
  119. (ToolTip): fixed.
  120. * ListItem.cs:
  121. (LoadViewState): fixed.
  122. * ListItemCollection.cs:
  123. (TrackViewState): use items instead of 'this' in foreach.
  124. * Style.cs:
  125. (LoadViewState): more checking of parameters.
  126. * WebControl.cs: implemented LoadViewState and SaveViewState.
  127. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  128. * ListItem.cs: there was no code to unset the flags!!!
  129. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  130. * FontUnit.cs: use a hashtable for mapping size name to value.
  131. * HyperLink.cs: fixed a bug and a typo.
  132. * Unit.cs: some fixes to internal constructor.
  133. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  134. * ListControl.cs: fixed a couple of range checks.
  135. * WebControl.cs: MS lies! Not all WebControls must be rendered inside
  136. an HtmlForm (p.e., Label).
  137. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  138. * AdRotator.cs:
  139. * Button.cs:
  140. * Calendar.cs:
  141. * CheckBox.cs:
  142. * CheckBoxList.cs:
  143. * DataList.cs:
  144. * DropDownList.cs:
  145. * HyperLink.cs:
  146. * HyperLinkColumn.cs:
  147. * Image.cs:
  148. * ImageButton.cs:
  149. * Label.cs:
  150. * LinkButton.cs:
  151. * ListBox.cs:
  152. * Panel.cs:
  153. * PlaceHolder.cs:
  154. * RadioButton.cs:
  155. * RadioButtonList.cs:
  156. * Table.cs:
  157. * TableRow.cs:
  158. * TextBox.cs:
  159. * WebControl.cs: removed attributes added by mistake (i used
  160. GetCustomAttributes (true), d'oh!).
  161. * DataListItem.cs: implemented RenderItem.
  162. * Repeater.cs: implemented CreateItem and InitializeItem.
  163. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  164. * BaseDataList.cs: a couple of fiex and added attributes.
  165. * DataGrid.cs: little fixes.
  166. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  167. * CheckBoxList.cs:
  168. * DataGrid.cs:
  169. * DataList.cs:
  170. * DropDownList.cs:
  171. * ListBox.cs:
  172. * PlaceHolder.cs:
  173. * RadioButton.cs:
  174. * RadioButtonList.cs:
  175. * TableRow.cs:
  176. * WebControl.cs:
  177. * Xml.cs: forgot to add using System.ComponentModel.
  178. * BaseValidator.cs: use explicitly
  179. System.ComponentModel.AttributeCollection as there is another class
  180. with the same name under System.Web.UI.
  181. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  182. * AdRotator.cs:
  183. * Button.cs:
  184. * Calendar.cs:
  185. * CheckBox.cs:
  186. * CheckBoxList.cs:
  187. * DataGrid.cs:
  188. * DataList.cs:
  189. * DropDownList.cs:
  190. * HyperLink.cs:
  191. * Image.cs:
  192. * ImageButton.cs:
  193. * Label.cs:
  194. * LinkButton.cs:
  195. * ListBox.cs:
  196. * Panel.cs:
  197. * PlaceHolder.cs:
  198. * RadioButton.cs:
  199. * RadioButtonList.cs:
  200. * Table.cs:
  201. * TableRow.cs:
  202. * TextBox.cs:
  203. * WebControl.cs:
  204. * Xml.cs: added/fixed all attributes used by xsp.
  205. * BaseValidator.cs: some fixes.
  206. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  207. * Table.cs:
  208. (AddAttributesToRender): correctly default to border=1.
  209. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  210. * AdRotator.cs:
  211. (LoadAdFile): make the dictionary null after every iteration.
  212. * LinkButton.cs:
  213. * ListControl.cs:
  214. * ListItem.cs: fixed warnings.
  215. Mon Jul 1 16:23:15 CEST 2002 Paolo Molaro <[email protected]>
  216. * Style.cs, TableRow.cs, DataListItem.cs: fix compilation.
  217. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  218. * DataGridColumn.cs:
  219. * DataGridPagerStyle.cs:
  220. * DataList.cs:
  221. * DataListItem.cs:
  222. * Image.cs:
  223. * LinkButton.cs:
  224. * ListControl.cs:
  225. * ListItem.cs:
  226. * ListItemCollection.cs:
  227. * Repeater.cs:
  228. * ServerValidateEventArgs.cs:
  229. * Style.cs:
  230. * TableRow.cs:
  231. * WebControl.cs:
  232. * Xml.cs: more class status page based changes.
  233. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  234. * Button.cs:
  235. (.ctor): fixed to render the correct tag.
  236. (IPostBAckEventHandler.RaisePostBackEvent): fixed.
  237. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  238. * WebControl.cs:
  239. (AddAttributesToRender): call Page.VerifyRenderingInServerForm. All
  240. WebControl derived classes should be rendered inside a HtmlForm.
  241. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  242. * Repeater.cs: implemented CreateControlHierarchy. Fixed some event
  243. processing methods.
  244. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  245. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  246. * RepeatInfo.cs: implemented DoHorizontalRendering.
  247. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  248. * System.Web.UI.WebControls/Repeater.cs:
  249. (Controls):
  250. (OnDataBinding): fixed stack overflow.
  251. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  252. * RadioButtonList.cs: implemented IRepeatInfoUser.RenderItem.
  253. * RepeatInfo.cs: implemented DoHorizontalRendering.
  254. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  255. * WebControl.cs:
  256. (CopyBaseAttributes): copy Attributes and don't throw exception.
  257. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  258. * ListBox.cs: mono-stylized.
  259. (AddAttributesToRender): call parent class method.
  260. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  261. * Style.cs: fixed IsEmpty and Width.
  262. * Table.cs: mono-stylized.
  263. (TableRowControlCollection.AddAt): fixed.
  264. (AddAttributesToRender): fixed.
  265. * TableCell.cs: mono-stylized.
  266. (.ctor): use PreventAutoID.
  267. (AddAttributesToRender): fixed.
  268. (AddParsedSubObject): fixed.
  269. * TableRow.cs: mono-stylized. Added
  270. ParseChildren attribute.
  271. * TableStyle.cs:
  272. (get_GridLine): fixed.
  273. 2002-06-16 Gonzalo Paniagua Javier <[email protected]>
  274. * Panel.cs: fixed stack overflow.
  275. * Unit.cs: use Int32.Parse and Single.Parse instead of Int32Converter
  276. and SingleConverter.
  277. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  278. * RadioButton.cs: mono-stylized and some little fixes.
  279. * TextBox.cs: mono-stylized.
  280. (MaxLength): fixed typo.
  281. (AddAttributesToRender): don't render the text between the tags for
  282. SingleLine, use value attribute for it. Don't render the text for
  283. Password.
  284. (OnPreRender): don't throw exception and call base.OnPreRender.
  285. (Render): for MultiLine, render the text between the opening and
  286. closing tags encoded as HTML.
  287. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  288. * ImageButton.cs:
  289. (AddAttributesToRender): fixer another stack overflow.
  290. * WebControl.cs:
  291. (TagName): modified to use TagKey instead of tagKey as the property
  292. can be overriden.
  293. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  294. * LinkButton.cs: mono-stylized.
  295. (AddParsedSubObject):
  296. (RenderControls): little fixes.
  297. * WebControl.cs:
  298. (AddAttributesToRender): fixed usage of IEnumerator.
  299. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  300. * Literal.cs: beautified.
  301. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  302. * Label.cs: beautified and fixed a couple of 'classic' bugs.
  303. * WebControl.cs: use Span as default tag when no other provided in
  304. constructor. That is what MS renders.
  305. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  306. * Button.cs:
  307. (AddAttributesToRender): fixed (classic) stack overflow.
  308. * CheckBox.cs: mono-stylized.
  309. (AutoPostBack): fixed stack overflow.
  310. (Render): fixed alignment issues. Also set the For attribute always
  311. for the label.
  312. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  313. * AdRotator.cs: GetData does not work as it should, but now it returns
  314. useful data (only the first ad in the file). Set the NavigateUrl
  315. property in the hyperlink if available.
  316. * HyperLink.cs: fixed constructor and a couple of stack overflows.
  317. * Image.cs: added an attribute and fixed stack overflow.
  318. * WebControl.cs:
  319. (RenderBeginTag): fixed.
  320. (TagName): don't call Enum.IsDefined twice.
  321. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  322. * WebControl.cs: added attributes PersistChildrenAttribute and
  323. ParseChildrenAttribute.
  324. 2002-05-24 Duncan Mak <[email protected]>
  325. * DataGridItem.cs (SetItemType): Changed function signature to
  326. match 1.0 spec.
  327. * ListItemCollection.cs (this): Changes the visibility level of
  328. the indexer.
  329. * Repeater.cs (OnItemCommand):
  330. (OnItemCreated):
  331. (OnItemDataBound): Added necessary casts.
  332. 2002-05-07 Duncan Mak <[email protected]>
  333. * Button.cs (AddAttributesToRender):
  334. * ImageButton.cs (AddAttributesToRender): Added a missing argument to the
  335. GetClientValidatedEvent method.
  336. 2002-03-27 Gaurav Vaish <[email protected]>
  337. * Removed extra methods, corrected access modifiers to several
  338. methods.
  339. 2002-03-26 Gaurav Vaish <[email protected]>
  340. * <SeveralFiles>.cs - Added some attributes
  341. * FontUnitConverter.cs - Added stubs for GetStandardValues*(..)
  342. methods. Will complete them later. Right now, busy with
  343. the attributes part.
  344. * RepeaterItem.cs - Completed.
  345. Oh God! Mercy! I will die applying attributes. I look at the missing
  346. part in the class-status - daemon! Kyrie eleison!
  347. 2002-03-19 Gaurav Vaish <[email protected]>
  348. Some bug fixes
  349. * AdRotator.cs - Added definition for Font.
  350. * BaseCompareValidator.cs - Added definition for Controls.
  351. * Calendar.cs - SelectMonthText definition corrected.
  352. * DataList.cs - Added definition for SeparatorTemplate.
  353. * BorderStyle.cs - Namespace correction. It belongs not to UI,
  354. but to UI.WebControls.
  355. 2002-03-17 Gaurav Vaish <[email protected]>
  356. Finally, I have made it. Today I did a second build for the
  357. System.Web assembly. It compiled 195 classes today.
  358. I am waiting eagerly for the runtime to come up so that the objects
  359. may be tested to their last levels. Several of the methods are still
  360. under the tag of "TODO" throwing NotImplementedException. Well, I
  361. hope to remove them soon, but how far is this soon - even I don't
  362. know, though I am happy to make the build a success even before
  363. the vacations to come.
  364. 2002-03-07 Gaurav Vaish <[email protected]>
  365. Yesterday and today I tried to do some building of the aseembly,
  366. but was dumped with uncoutably infinite errors. ;-)
  367. I have put the copies of the recent errors on my home page, want
  368. to have a look at them? See:
  369. http://mastergaurav.virtualave.net/mono/
  370. I don't know what to do with these errors. Oh! The buggy me! How
  371. will I overcome myself. Hopefully, by when my vacations over, I
  372. should have made a repository where the build will not fail.
  373. 2002-03-05 Gaurav Vaish <[email protected]>
  374. I am now going to do a build that will include the
  375. System.Web.UI.WebControls namespace. Hoping that I will make it
  376. soon. My exams are coming near and I have to pack up soon.
  377. 2002-03-04 Gaurav Vaish <[email protected]>
  378. Comments:
  379. And with this, ie, today's work, all the objects mentioned in the
  380. namespace appear in the implementation. But it may not be worth
  381. trying to go for a build because of dependence of several of the
  382. internal methods that may clash with already available assembly
  383. System.Web.
  384. Also, the classes lack possible attributes, like those informing
  385. about child-controls etc. But I have to first create the attribute
  386. classes before I attach the attributes to the classes.
  387. * CustomValidator.cs - Completed. In process realized that
  388. I have to complete / rejuvinate BaseValidator class.
  389. * BaseValidator.cs - Complete rejuvination. Completed 80%
  390. of the job. All that is left is Render(HtmlTextWriter),
  391. DetermineRenderUplevel(), RegisterValidatorCommonScript()
  392. RegisterValidatorDeclaration()
  393. * DataGridPagerStyle.cs - Completed. That adds one more missle
  394. in my artillery.
  395. * DataKeyCollection.cs - Completed. Petty small.
  396. * Repeater.cs - Work started off. This is a quite
  397. heavy class. Hooh!
  398. * DataGridItemEventArgs.cs,
  399. * DataGridShortCommandEventArgs.cs,
  400. * DataListItemEventArgs.cs,
  401. * MonthChangedEventArgs.cs,
  402. * RepeaterItemEventArgs.cs,
  403. * ServerValidateEventArgs.cs,
  404. * DataGridPageChangedEventArgs.cs
  405. - Damn, I marked them "*", while they
  406. did not exist.
  407. * Repeater.cs - Done all except for an undocumented
  408. method CreateControlHierarchy(bool). Though the method
  409. is quite clear by its name, but it will take some time
  410. for me to come with some material to flush in.
  411. 2002-03-03 Gaurav Vaish <[email protected]>
  412. * SelectedDatesCollection.cs - Completed.
  413. * PagedDataSource.cs - Completed. Pathetically nice class.
  414. * RegularExpressionValidator.cs
  415. - Completed. Ridiculously small and
  416. annoyinglyc crazy-driving class, basically the method
  417. EvaluateIsValid().
  418. * RangeValidator.cs - Completed.
  419. * DataGridColumn.cs - Completed.
  420. * EditCommandColumn.cs - All is complete except for the
  421. InitializeCell(TableCell, int, ListItemType) method.
  422. * DataListItem.cs - All done except for a longish method
  423. RenderItem(HtmlTextWriter, bool, bool)
  424. 2002-03-02 Gaurav Vaish <[email protected]>
  425. * RepeaterItemCollection.cs - Completed.
  426. I love *Collection classes. I am planning to make a
  427. program that will generate a *Collection class. It's so
  428. simple and the same. ;-)
  429. * DataGridColumnCollection.cs - Completed.
  430. ... except probably for *ColumnCollection classes, where
  431. you have to put in some more effort. Still, these class
  432. generation can be automated.
  433. * DataListItemCollection.cs - Completed.
  434. See, how easily, in less than a quarter of a minute, I
  435. completed this class - manually. Copy-Paste/Cut-Replace.
  436. 2002-02-21 Gaurav Vaish <[email protected]>
  437. * DataGrid.cs - Following methods implemented:
  438. TrackViewState(), LoadViewState(object), SaveViewState(),
  439. On* -- The event raisers.
  440. OnBubbleEvent(object, EventArgs) is still incomplete.
  441. * DataGridItem.cs - Initial Implementation
  442. * DataGridItemCollection.cs - Completed.
  443. 2002-02-08 Gaurav Vaish <[email protected]>
  444. * DataGrid.cs - Initial Implementation. Worked
  445. primarily with some properties.
  446. 2002-02-07 Gaurav Vaish <[email protected]>
  447. * ListBox.cs - Completed. Implemented
  448. LoadPostData(string, NameValueCollection)
  449. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  450. 2002-02-06 Gaurav Vaish <[email protected]>
  451. * ListBox.cs - Implemented the following:
  452. RaisePostDataChangedEvent()
  453. 2002-02-02 Gaurav Vaish <[email protected]>
  454. * ListBox.cs - Supports the following properties:
  455. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  456. ToolTip.
  457. Methods:
  458. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  459. RenderContents(HtmlTextWriter)
  460. 2002-02-01 Gaurav Vaish <[email protected]>
  461. * TargetConverter.cs - Completed
  462. * TemplateColumn.cs - Completed
  463. * DataList.cs - Corrected the get-er methods for the
  464. *Style objects. Corrected the get/set-er methods for ViewState
  465. related objects.
  466. Addded support for properties:
  467. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  468. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  469. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  470. SeparatorStyle, SeparatorItemTemplate.
  471. Events:
  472. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  473. ItemCreated, ItemDataBound, UpdateCommand.
  474. Methods:
  475. CreateControlStyle(), LoadViewState(object),
  476. SaveViewState(), TrackViewState
  477. Event handlers:
  478. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  479. OnEditCommand, OnItemCommand, OnItemCreated,
  480. OnItemDataBound, OnUpdateCommand
  481. Added dummy methods for some undocumented methods:
  482. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  483. CreateItem(int, ListItemType, bool, object),
  484. PrepareControlHierarchy(), InitializeItem(DataListItem)
  485. * ListBox.cs - Started working.
  486. 2002-01-31 Gaurav Vaish <[email protected]>
  487. * RepeaterInfo.cs - Initial Implementation. Done all
  488. except for RepeatDirection.Vertical
  489. * TableStyle.cs - Completed
  490. 2002-01-30 Gaurav Vaish <[email protected]>
  491. * DropDownList.cs - Completed
  492. * ListItemCollection.cs - Added method FindByValueInternal to
  493. assist in the derived classes.
  494. Discovered bug in FindByValue. Removed
  495. * UnitConverter.cs - Completed
  496. * PlaceHolder.cs - What can be simpler than this?
  497. * PlaceHolderControlBuilder.cs
  498. - Uh! Damn cool one.
  499. * RadioButtonList.cs - Initial Implementation. All is done
  500. except for the implementation of
  501. method IRepeatInfoUser.RenderItem(...)
  502. * ValidatedControlConverter.cs
  503. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  504. * ValidationSummary.cs - Initial Implementation.
  505. * WebColorConverter.cs - Initial Implementation
  506. 2002-01-27 Gaurav Vaish <[email protected]>
  507. * FontNamesConverter.cs - Completed
  508. * FontUnitConverter.cs - Partial Implementation
  509. * ListItemControlBuilder.cs - Completed
  510. 2002-01-27 Gaurav Vaish <[email protected]>
  511. * TextBox.cs - All done except *Render* methods
  512. * TextBoxControlBuilder.cs - Completed
  513. * Xml.cs - Partial Implementation
  514. 2002-01-26 Gaurav Vaish <[email protected]>
  515. * RadioButton.cs - Completed
  516. * TextBox.cs - Partial Implementation
  517. 2002-01-25 Gaurav Vaish <[email protected]>
  518. * Panel.cs - Completed
  519. * TableItemStyle.cs - Completed
  520. 2002-01-18 Gaurav Vaish <[email protected]>
  521. * TableCellCollection.cs - Completed
  522. * TableRowCollection.cs - Completed
  523. * TableHeaderCell.cs - Completed
  524. * TableRow.cs - Completed
  525. 2002-01-09 Gaurav Vaish <[email protected]>
  526. * TableCellControlBuilder.cs - Completed
  527. * Table.cs - Completed
  528. * TableCell.cs - Completed
  529. 2002-01-07 Gaurav Vaish <[email protected]>
  530. * CheckBoxList.cs - Completed
  531. * ButtonColumn.cs - Completed
  532. * Button.cs - Completed
  533. 2001-12-28 Gaurav Vaish <[email protected]>
  534. * HyperLink.cs - Completed
  535. * Image.cs - Completed
  536. * ImageButton.cs - Completed
  537. * Label.cs - Completed
  538. * LabelControlBuilder.cs - Completed
  539. * LinkButton.cs - Completed
  540. * LinkButtonControlBuilder.cs - Completed
  541. * Literal.cs - Completed
  542. * LieteralControlBuilder.cs - Completed
  543. * FontUnit.cs - Completed
  544. 2001-12-27 Gaurav Vaish <[email protected]>
  545. * Calendar.cs - Completed the functions of Render*,
  546. ViewStates (Track/View/Save),
  547. RaisePostBackEvent.
  548. Left: RenderAllDays (partially)
  549. 2001-12-21 Gaurav Vaish <[email protected]>
  550. * Calendar.cs - Added some more functions
  551. * Style.cs - Completed
  552. * ListItem.cs - Completed
  553. * ListItemCollection.cs - Completed
  554. Made the first successful build of System.Web.dll that included
  555. System.Web.UI.WebControls!
  556. 2001-12-20 Gaurav Vaish <[email protected]>
  557. FontInfo.cs - Complete revamp. Completed
  558. 2001-12-19 Gaurav Vaish <[email protected]>
  559. ListItemCollection.cs - Completed
  560. ListItem.cs - Initial Implementation
  561. Style.cs - Initial Implementation
  562. Right now I am in a total mood to do a successful build. Creating so many
  563. classes, completing classes in System.Web System.Web.UI namespaces.
  564. 2001-12-18 Gaurav Vaish <[email protected]>
  565. TODO - Properly added
  566. CheckBox.cs - Completed
  567. BaseDataList.cs - Completed
  568. DayRenderEventArgs.cs - Completed
  569. RepeaterItem.cs - Initial implementation
  570. 2001-12-17 Gaurav Vaish <[email protected]>
  571. BaseCompareValidator.cs - Completed
  572. AdRotator.cs - Completed
  573. 2001-12-15 Gaurav Vaish <[email protected]>
  574. CommandEventArgs.cs - Completed
  575. DataGridCommandEventArgs.cs - Completed
  576. RepeaterCommandEventArgs.cs - Completed
  577. DataListCommandEventArgs.cs - Completed
  578. CompareValidator.cs - Partial Implementation
  579. 2001-12-02 Gaurav Vaish <[email protected]>
  580. CheckBoxList.cs - Partial Implementation.
  581. All except "Render"
  582. 2001-12-01 Gaurav Vaish <[email protected]>
  583. ListControl.cs - Completed
  584. 2001-11-30 Gaurav Vaish <[email protected]>
  585. CheckBox.cs - Completed
  586. ListControl.cs - Initial Implementation
  587. CheckBoxList.cs - Started with it, but first needed
  588. ListControl. Left it.
  589. 2001-11-29 Gaurav Vaish <[email protected]>
  590. CalendarDay.cs - Making a note that this
  591. has been implemented
  592. Calendar.cs - Making a note that have made some changes.
  593. Unimplmented functions throw
  594. NotImplementedException
  595. CheckBox.cs - Can now "Render" and "LoadPostData"
  596. 2001-11-08 Gaurav Vaish <[email protected]>
  597. WebControl.cs - Total Revamp, Partial Implementation
  598. AdRotator.cs - Able to load files
  599. AdCreatedEventArgs.cs - Implemented
  600. 2001-11-05 Gaurav Vaish <[email protected]>
  601. Calendar.cs - Initial Implementation
  602. ButtonColumn.cs - Initial Implementation
  603. Button.cs - Initial Implementation
  604. BoundColumn.cs - Initial Implementation
  605. BaseCompareValidator.cs - Minor Changes
  606. DataList.cs, BaseValidator.cs, BaseDataList.cs
  607. - Added more functions, other changes
  608. 2001-10-28 Gaurav Vaish <[email protected]>
  609. WebControl.cs - Initial Implementation
  610. DataList.cs - Initial Implementation
  611. BaseValidator.cs - Initial Implementation
  612. BaseDataList.cs - Initial Implementation
  613. 2001-10-27 Gaurav Vaish <[email protected]>
  614. AdCreatedEventArgs.cs - Initial Implementation
  615. AdCratedEventHandler.cs - Implemented
  616. AdRotator.cs - Initial Implementation
  617. BorderStyle.cs - Implemented
  618. ButtonColumnStyle.cs - Implemented
  619. CalendarSelectionMode.cs - Implemented
  620. DayNameFormat.cs - Implemented
  621. FirstDayOfWeek - Implemented
  622. FontInfo.cs - Partial Implementation
  623. FontSize.cs - Implemented
  624. GridLines.cs - Implemented
  625. HorizontalAlign.cs - Implemented
  626. HyperLink.cs - Initial Implementation
  627. ImageAlign.cs - Implemented
  628. IRepeatInfoUser.cs - Implemented
  629. ListItemType.cs - Implemented
  630. ListSelectionMode.cs - Implemented
  631. NextPrevFormat.cs - Implemented
  632. PagerMode.cs - Implemented
  633. PagerPosition.cs - Implemented
  634. RepeatDirection.cs - Implemented
  635. RepeatLayout.cs - Implemented
  636. TextAlign.cs - Implemented
  637. TextBoxMode.cs - Implemented
  638. TitleFormat.cs - Implemented
  639. UnitType.cs - Implemented
  640. ValidationCompareOperator.cs
  641. - Implemented
  642. ValidationDataType.cs - Implemented
  643. ValidationSummaryDisplayMode.cs
  644. - Implemented
  645. ValidatorDisplay.cs - Implemented
  646. VerticalAlign.cs - Implemented
  647. // File Created 2001-11-13