2
0

ChangeLog 10.0 KB

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