ChangeLog 26 KB

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