ChangeLog 8.8 KB

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