ChangeLog 24 KB

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