ChangeLog 11 KB

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