ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. 2002-03-03 Gaurav Vaish <[email protected]>
  2. * SelectedDatesCollection.cs - Completed.
  3. * PagedDataSource.cs - Completed. Pathetically nice class.
  4. * RegularExpressionValidator.cs
  5. - Completed. Ridiculously small and
  6. annoyinglyc crazy-driving class, basically the method
  7. EvaluateIsValid().
  8. * RangeValidator.cs - Completed.
  9. 2002-03-02 Gaurav Vaish <[email protected]>
  10. * RepeaterItemCollection.cs - Completed.
  11. I love *Collection classes. I am planning to make a
  12. program that will generate a *Collection class. It's so
  13. simple and the same. ;-)
  14. * DataGridColumnCollection.cs - Completed.
  15. ... except probably for *ColumnCollection classes, where
  16. you have to put in some more effort. Still, these class
  17. generation can be automated.
  18. * DataListItemCollection.cs - Completed.
  19. See, how easily, in less than a quarter of a minute, I
  20. completed this class - manually. Copy-Paste/Cut-Replace.
  21. 2002-02-21 Gaurav Vaish <[email protected]>
  22. * DataGrid.cs - Following methods implemented:
  23. TrackViewState(), LoadViewState(object), SaveViewState(),
  24. On* -- The event raisers.
  25. OnBubbleEvent(object, EventArgs) is still incomplete.
  26. * DataGridItem.cs - Initial Implementation
  27. * DataGridItemCollection.cs - Completed.
  28. 2002-02-08 Gaurav Vaish <[email protected]>
  29. * DataGrid.cs - Initial Implementation. Worked
  30. primarily with some properties.
  31. 2002-02-07 Gaurav Vaish <[email protected]>
  32. * ListBox.cs - Completed. Implemented
  33. LoadPostData(string, NameValueCollection)
  34. * RequiredFieldValidator.cs - Completed. Pretty simple class.
  35. 2002-02-06 Gaurav Vaish <[email protected]>
  36. * ListBox.cs - Implemented the following:
  37. RaisePostDataChangedEvent()
  38. 2002-02-02 Gaurav Vaish <[email protected]>
  39. * ListBox.cs - Supports the following properties:
  40. BorderColor, BorderStyle, BorderWidth, Rows, SelectionMode,
  41. ToolTip.
  42. Methods:
  43. AddAttributesToRender(HtmlTextWriter), OnPreRender(EventArgs),
  44. RenderContents(HtmlTextWriter)
  45. 2002-02-01 Gaurav Vaish <[email protected]>
  46. * TargetConverter.cs - Completed
  47. * TemplateColumn.cs - Completed
  48. * DataList.cs - Corrected the get-er methods for the
  49. *Style objects. Corrected the get/set-er methods for ViewState
  50. related objects.
  51. Addded support for properties:
  52. GridLines, HeaderStyle, HeaderTemplate, ItemStyle, ItemTemplate,
  53. RepeatColumns, RepeatDirection, RepeatLayout, SelectedIndex,
  54. SelectedItem, SelectedItemStyle, SelectedItemTemplate,
  55. SeparatorStyle, SeparatorItemTemplate.
  56. Events:
  57. CancelCommand, DeleteCommand, EditCommand, ItemCommand,
  58. ItemCreated, ItemDataBound, UpdateCommand.
  59. Methods:
  60. CreateControlStyle(), LoadViewState(object),
  61. SaveViewState(), TrackViewState
  62. Event handlers:
  63. OnBubbleEvent, OnCancelCommand, OnDeleteCommand,
  64. OnEditCommand, OnItemCommand, OnItemCreated,
  65. OnItemDataBound, OnUpdateCommand
  66. Added dummy methods for some undocumented methods:
  67. CreateControlHierarchy(bool), CreateItem(int, ListItemType),
  68. CreateItem(int, ListItemType, bool, object),
  69. PrepareControlHierarchy(), InitializeItem(DataListItem)
  70. * ListBox.cs - Started working.
  71. 2002-01-31 Gaurav Vaish <[email protected]>
  72. * RepeaterInfo.cs - Initial Implementation. Done all
  73. except for RepeatDirection.Vertical
  74. * TableStyle.cs - Completed
  75. 2002-01-30 Gaurav Vaish <[email protected]>
  76. * DropDownList.cs - Completed
  77. * ListItemCollection.cs - Added method FindByValueInternal to
  78. assist in the derived classes.
  79. Discovered bug in FindByValue. Removed
  80. * UnitConverter.cs - Completed
  81. * PlaceHolder.cs - What can be simpler than this?
  82. * PlaceHolderControlBuilder.cs
  83. - Uh! Damn cool one.
  84. * RadioButtonList.cs - Initial Implementation. All is done
  85. except for the implementation of
  86. method IRepeatInfoUser.RenderItem(...)
  87. * ValidatedControlConverter.cs
  88. ^^^^^^^^^^^^^^^^^^^^^^^^^ - Looks complete. Doubtful though !!
  89. * ValidationSummary.cs - Initial Implementation.
  90. * WebColorConverter.cs - Initial Implementation
  91. 2002-01-27 Gaurav Vaish <[email protected]>
  92. * FontNamesConverter.cs - Completed
  93. * FontUnitConverter.cs - Partial Implementation
  94. * ListItemControlBuilder.cs - Completed
  95. 2002-01-27 Gaurav Vaish <[email protected]>
  96. * TextBox.cs - All done except *Render* methods
  97. * TextBoxControlBuilder.cs - Completed
  98. * Xml.cs - Partial Implementation
  99. 2002-01-26 Gaurav Vaish <[email protected]>
  100. * RadioButton.cs - Completed
  101. * TextBox.cs - Partial Implementation
  102. 2002-01-25 Gaurav Vaish <[email protected]>
  103. * Panel.cs - Completed
  104. * TableItemStyle.cs - Completed
  105. 2002-01-18 Gaurav Vaish <[email protected]>
  106. * TableCellCollection.cs - Completed
  107. * TableRowCollection.cs - Completed
  108. * TableHeaderCell.cs - Completed
  109. * TableRow.cs - Completed
  110. 2002-01-09 Gaurav Vaish <[email protected]>
  111. * TableCellControlBuilder.cs - Completed
  112. * Table.cs - Completed
  113. * TableCell.cs - Completed
  114. 2002-01-07 Gaurav Vaish <[email protected]>
  115. * CheckBoxList.cs - Completed
  116. * ButtonColumn.cs - Completed
  117. * Button.cs - Completed
  118. 2001-12-28 Gaurav Vaish <[email protected]>
  119. * HyperLink.cs - Completed
  120. * Image.cs - Completed
  121. * ImageButton.cs - Completed
  122. * Label.cs - Completed
  123. * LabelControlBuilder.cs - Completed
  124. * LinkButton.cs - Completed
  125. * LinkButtonControlBuilder.cs - Completed
  126. * Literal.cs - Completed
  127. * LieteralControlBuilder.cs - Completed
  128. * FontUnit.cs - Completed
  129. 2001-12-27 Gaurav Vaish <[email protected]>
  130. * Calendar.cs - Completed the functions of Render*,
  131. ViewStates (Track/View/Save),
  132. RaisePostBackEvent.
  133. Left: RenderAllDays (partially)
  134. 2001-12-21 Gaurav Vaish <[email protected]>
  135. * Calendar.cs - Added some more functions
  136. * Style.cs - Completed
  137. * ListItem.cs - Completed
  138. * ListItemCollection.cs - Completed
  139. Made the first successful build of System.Web.dll that included
  140. System.Web.UI.WebControls!
  141. 2001-12-20 Gaurav Vaish <[email protected]>
  142. FontInfo.cs - Complete revamp. Completed
  143. 2001-12-19 Gaurav Vaish <[email protected]>
  144. ListItemCollection.cs - Completed
  145. ListItem.cs - Initial Implementation
  146. Style.cs - Initial Implementation
  147. Right now I am in a total mood to do a successful build. Creating so many
  148. classes, completing classes in System.Web System.Web.UI namespaces.
  149. 2001-12-18 Gaurav Vaish <[email protected]>
  150. TODO - Properly added
  151. CheckBox.cs - Completed
  152. BaseDataList.cs - Completed
  153. DayRenderEventArgs.cs - Completed
  154. RepeaterItem.cs - Initial implementation
  155. 2001-12-17 Gaurav Vaish <[email protected]>
  156. BaseCompareValidator.cs - Completed
  157. AdRotator.cs - Completed
  158. 2001-12-15 Gaurav Vaish <[email protected]>
  159. CommandEventArgs.cs - Completed
  160. DataGridCommandEventArgs.cs - Completed
  161. RepeaterCommandEventArgs.cs - Completed
  162. DataListCommandEventArgs.cs - Completed
  163. CompareValidator.cs - Partial Implementation
  164. 2001-12-02 Gaurav Vaish <[email protected]>
  165. CheckBoxList.cs - Partial Implementation.
  166. All except "Render"
  167. 2001-12-01 Gaurav Vaish <[email protected]>
  168. ListControl.cs - Completed
  169. 2001-11-30 Gaurav Vaish <[email protected]>
  170. CheckBox.cs - Completed
  171. ListControl.cs - Initial Implementation
  172. CheckBoxList.cs - Started with it, but first needed
  173. ListControl. Left it.
  174. 2001-11-29 Gaurav Vaish <[email protected]>
  175. CalendarDay.cs - Making a note that this
  176. has been implemented
  177. Calendar.cs - Making a note that have made some changes.
  178. Unimplmented functions throw
  179. NotImplementedException
  180. CheckBox.cs - Can now "Render" and "LoadPostData"
  181. 2001-11-08 Gaurav Vaish <[email protected]>
  182. WebControl.cs - Total Revamp, Partial Implementation
  183. AdRotator.cs - Able to load files
  184. AdCreatedEventArgs.cs - Implemented
  185. 2001-11-05 Gaurav Vaish <[email protected]>
  186. Calendar.cs - Initial Implementation
  187. ButtonColumn.cs - Initial Implementation
  188. Button.cs - Initial Implementation
  189. BoundColumn.cs - Initial Implementation
  190. BaseCompareValidator.cs - Minor Changes
  191. DataList.cs, BaseValidator.cs, BaseDataList.cs
  192. - Added more functions, other changes
  193. 2001-10-28 Gaurav Vaish <[email protected]>
  194. WebControl.cs - Initial Implementation
  195. DataList.cs - Initial Implementation
  196. BaseValidator.cs - Initial Implementation
  197. BaseDataList.cs - Initial Implementation
  198. 2001-10-27 Gaurav Vaish <[email protected]>
  199. AdCreatedEventArgs.cs - Initial Implementation
  200. AdCratedEventHandler.cs - Implemented
  201. AdRotator.cs - Initial Implementation
  202. BorderStyle.cs - Implemented
  203. ButtonColumnStyle.cs - Implemented
  204. CalendarSelectionMode.cs - Implemented
  205. DayNameFormat.cs - Implemented
  206. FirstDayOfWeek - Implemented
  207. FontInfo.cs - Partial Implementation
  208. FontSize.cs - Implemented
  209. GridLines.cs - Implemented
  210. HorizontalAlign.cs - Implemented
  211. HyperLink.cs - Initial Implementation
  212. ImageAlign.cs - Implemented
  213. IRepeatInfoUser.cs - Implemented
  214. ListItemType.cs - Implemented
  215. ListSelectionMode.cs - Implemented
  216. NextPrevFormat.cs - Implemented
  217. PagerMode.cs - Implemented
  218. PagerPosition.cs - Implemented
  219. RepeatDirection.cs - Implemented
  220. RepeatLayout.cs - Implemented
  221. TextAlign.cs - Implemented
  222. TextBoxMode.cs - Implemented
  223. TitleFormat.cs - Implemented
  224. UnitType.cs - Implemented
  225. ValidationCompareOperator.cs
  226. - Implemented
  227. ValidationDataType.cs - Implemented
  228. ValidationSummaryDisplayMode.cs
  229. - Implemented
  230. ValidatorDisplay.cs - Implemented
  231. VerticalAlign.cs - Implemented
  232. // File Created 2001-11-13