ChangeLog 15 KB

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