ChangeLog 12 KB

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