ChangeLog 11 KB

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