ChangeLog 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  2. * Control.cs:
  3. (MapPathSecure): until security is implemented, return the same path
  4. received as argument.
  5. (RenderControl): call OnPreRender before rendering the control. So
  6. AdRotator can read its configuration file.Is there any other place
  7. where this should be done?
  8. * HtmlTextWriter.cs:
  9. (AddAttribute): fixed. Now it really stores attributes.
  10. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  11. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  12. * ControlCollection.cs:
  13. (AddAt): if index is -1 behave as a plain Add.
  14. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  15. * Page.cs: for each child control to render, assign Control.Page.
  16. Probably also needed in HtmlContainerControl derived classes.
  17. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  18. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  19. fine and takes care of the details.
  20. * Control.cs: added HasChildren property.
  21. * StateBag.cs: fixed a couple of nasty bugs.
  22. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  23. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  24. Invoke Page_Init and/or Page_Load if the user supplied them (though
  25. this should depend on AutoEventWireUp attribute of Page directive).
  26. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  27. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  28. * Page.cs:
  29. (ProcessRequest): implemented.
  30. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  31. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  32. methods.
  33. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  34. * Page.cs:
  35. (FileDependencies): now is public public.
  36. (EnableViewStateMAC): uncommented and made protected.
  37. (GetTypeHashCode): added method.
  38. 2002-05-24 Duncan Mak <[email protected]>
  39. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  40. * StateBag.cs (Item): Changed the visibility level of the this
  41. [object] indexer.
  42. Misc. formatting edits, fixing some bugs introduced by the indentation.
  43. * DataBinder.cs (Eval)
  44. (GetIndexedPropertyValue)
  45. (GetPropertyValue): Fixed return types.
  46. 2002-05-21 Miguel de Icaza <[email protected]>
  47. * HtmlTextWriter.cs: Use this to change the member instances.
  48. 2002-05-17 Duncan Mak <[email protected]>
  49. * AttributeCollection.cs:
  50. * ControlCollection.cs:
  51. * CssStyleCollection.cs:
  52. * DataBindingCollection.cs:
  53. * EmptyControlCollection.cs: Added missing Collection classes.
  54. 2002-05-17 Duncan Mak <[email protected]>
  55. * BaseParser.cs:
  56. * TemplateParser.cs: Implemented. BaseParser is weird because
  57. there is no documentation on what it does.
  58. * ControlBuilder.cs:
  59. * DataBinder.cs:
  60. * DataBinding.cs: Added.
  61. * DataBoundLiteralControl.cs:
  62. * Triplet.cs: Added.
  63. * RenderMethod.cs: Added this delegate for Control.cs
  64. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  65. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  66. 2002-05-14 Duncan Mak <[email protected]>
  67. * ValidationPropertyAttribute.cs: Added to CVS.
  68. 2002-05-10 Duncan Mak <[email protected]>
  69. * ConstructorNeedsTagAttribute.cs:
  70. * ControlBuilderAttribute.cs:
  71. * ImageClickEventArgs.cs:
  72. * ParseChildrenAttribute.cs:
  73. * PartialCachingAttribute.cs:
  74. * PersistChildrenAttribute.cs:
  75. * PersistenceModeAttribute.cs:
  76. * TemplateContainerAttribute.cs: Added to CVS.
  77. * PersistanceMode.cs: Removed, fixed typo.
  78. * PersistenceMode.cs: Replacing above.
  79. * StateBag.cs (this): Fixed indexer, it takes a string as the
  80. index, not an object.
  81. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  82. * Page.cs (Validators): return type should be ValidatorCollection,
  83. not ValidatedCollection.
  84. * TagPrefixAttribute.cs: Added to CVS.
  85. 2002-05-07 Duncan Mak <[email protected]>
  86. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  87. 2002-03-26 Gaurav Vaish <[email protected]>
  88. * DataBindingHandlerAttribute.cs
  89. - Completed
  90. * ToolboxDataAttribute.cs - Completed
  91. 2002-01-03 Nick Drochak <[email protected]>
  92. * DesignTimeParseData.cs: initialze static member to avoid compile
  93. error
  94. * PropertyConverter.cs: remove uneeded exception variables from
  95. catch blocks.
  96. 2002-01-02 Nick Drochak <[email protected]>
  97. * DesignTimeParseData.cs: fix header to show correct class name
  98. 2001-12-21 Gaurav Vaish <[email protected]>
  99. * StateBag.cs - Completed
  100. 2001-12-19 Gaurav Vaish <[email protected]>
  101. * Pair.cs - Small undocumented class. Completed.
  102. 2001-12-18 Gaurav Vaish <[email protected]>
  103. * DesignTimeParseData.cs - Initial implementation
  104. * StateBag.cs - Initial implementation
  105. 2001-12-17 Gaurav Vaish <[email protected]>
  106. * PropertyConverter.cs - Undocumented class. Completed.
  107. * Utils.cs - Undocumented, private class.
  108. Initial implementation
  109. 2001-08-28 Bob Smith <[email protected]>
  110. * Control.cs: Figured out some undocumented API.
  111. * Added TODO.
  112. * BuildMethod.cs: Initial implementation.
  113. * BuildTemplateMethod.cs: Initial implementation.
  114. * HtmlTextWriterAttribute.cs: Initial implementation.
  115. * HtmlTextWriterStyle.cs: Initial implementation.
  116. * HtmlTextWriterTag.cs: Initial implementation.
  117. * IAttributeAccessor.cs: Initial implementation.
  118. * IDataBindingsAccessor.cs: Initial implementation.
  119. * ImageClickEventHandler.cs: Initial implementation.
  120. * INamingContainer.cs: Initial implementation.
  121. * IParserAccessor.cs: Initial implementation.
  122. * IPostBackDataHandler.cs: Initial implementation.
  123. * IPostBackEventHandler.cs: Initial implementation.
  124. * IStateManager.cs: Initial implementation.
  125. * ITagNameToTypeMapper.cs: Initial implementation.
  126. * ITemplate.cs: Initial implementation.
  127. * IValidator.cs: Initial implementation.
  128. * OutputCacheLocation.cs: Initial implementation.
  129. * PersistanceMode.cs: Initial implementation.
  130. * StateItem.cs: Initial implementation.
  131. 2001-08-27 Bob Smith <[email protected]>
  132. * Control.cs: Bug fixes and implementations.
  133. 2001-08-24 Bob Smith <[email protected]>
  134. * Control.cs: Bug fixes.
  135. 2001-08-23 Bob Smith <[email protected]>
  136. * Control.cs: More implementation. Events reworked for performance.
  137. 2001-08-22 Bob Smith <[email protected]>
  138. * LiteralControl.cs: Implemented.
  139. * Control.cs: Even more implementation (Events). What a beast.
  140. 2001-08-20 Bob Smith <[email protected]>
  141. * Control.cs: More implementation. Not done yet. Shutter.
  142. 2001-08-17 Bob Smith <[email protected]>
  143. * Control.cs: Partial implementation.