ChangeLog 15 KB

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