ChangeLog 16 KB

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