ChangeLog 15 KB

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