ChangeLog 8.5 KB

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