ChangeLog 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  1. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  2. * TemplateParser.cs: Added support for server side includes.
  3. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  4. * TemplateControl.cs: fixed the flags used to find the methods that
  5. are automatically hooked up on events.
  6. * TemplateParser.cs: don't compile a source file directly. Use the
  7. cache instead.
  8. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  9. * BaseParser.cs: Location property is now here. Added a couple of
  10. convenience methods to throw a ParseException.
  11. * TemplateParser.cs:
  12. * TemplateControlParser.cs:
  13. * PageParser.cs: throw ParseException where appropiate.
  14. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  15. * ApplicationFileParser.cs: use the generator to actually parse the
  16. file.
  17. * ControlBuilder.cs: small fix in NamingContainerType because
  18. TemplateBuilders have a null ControlType. When a control is appended
  19. to a parent, assign the child's parent.
  20. * UserControlParser.cs: fixed the value of InputFile.
  21. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  22. * ApplicationFileParser.cs: store the Context and override
  23. BaseVirtualDir so that it's the application path.
  24. * BaseParser.cs: removed CurrentVirtualPath property.
  25. * TemplateControlParser.cs: use BaseVirtualDir.
  26. * UserControlParser.cs: removed CurrentVirtualPath.
  27. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  28. * TemplateParser.cs: always reference all the assemblies in bin
  29. directory.
  30. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  31. * ApplicationFileParser.cs: it works now. Prior to these changes, we
  32. were using the compiler directly.
  33. * BaseParser.cs: added some useful properties and methods.
  34. * CodeBuilder.cs: use ILocation.
  35. * CodeRenderBuilder.cs: use ILocation.
  36. * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
  37. * ControlBuilder.cs: made it useful.
  38. * DataBindingBuilder.cs: the control type for data bound text is
  39. DataBoundLiteralControl now.
  40. * ObjectTagBuilder.cs: store some object tag attributes.
  41. * PageParser.cs: handle page-only directives.
  42. * RootBuilder.cs: bah.
  43. * SimpleWebHandlerParser.cs: made it dummy.
  44. * TemplateControl.cs: Modified file.
  45. * TemplateControlParser.cs: handle directives that are common to pages
  46. and user controls.
  47. * TemplateParser.cs: utility methods and handling of directives that
  48. are common to app, page and user controls.
  49. * UserControl.cs: added ControlBuilderAttribute.
  50. * UserControlControlBuilder.cs: builder for user controls.
  51. * UserControlParser.cs: use the new interfaces.
  52. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  53. * ControlBuilder.cs: line and fileName are protected now.
  54. * CodeBuilder.cs: base class for the next 2 files.
  55. * CodeRenderBuilder.cs: builder for code render.
  56. * DataBindingBuilder.cs: builder for data binding.
  57. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  58. * ITagNameToTypeMapper.cs: made it internal.
  59. * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
  60. * ObjectTag.cs:
  61. * RootBuilder.cs: initial builder.
  62. 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
  63. * CollectionBuilder.cs:
  64. * TemplateBuilder.cs: new classes derived from ControlBuilder that
  65. represent a property or a ITemplate.
  66. * ControlBuilder.cs: implemented all the missing bits.
  67. * TemplateParser.cs: added mapping from tag name to Type feature.
  68. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  69. * Control.cs: have i definitely fixed naming container stuff this time?
  70. * LosFormatter.cs: activated binary serialization code.
  71. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  72. * Control.cs:
  73. (AddedControl): fixed default id assignation when the sequence of
  74. AddedControl until it's included in the page or one of its controls
  75. does not pass through a naming container.
  76. 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
  77. * Control.cs: give different default names depending on the place where
  78. it is assigned. Implemented ResolveURl (no more ~ rendered in
  79. attributes!).
  80. 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
  81. * Control.cs: when adding a control, assign default names to th
  82. children that don't have one.
  83. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  84. * SimpleWebHandlerParser.cs: modified to use the new parser interface.
  85. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  86. * Control.cs: some more tweaks to naming containers stuff.
  87. * DataBinder.cs: don't throw exception if the container is null.
  88. * Page.cs: now we can render client scripts, startup scripts and hidden
  89. fields. Only render __VIEWSTATE if there is someone that will take care
  90. of it.
  91. (RaisePostBackEvents): first try the last one that required raise event,
  92. then try __EVENTTARGET.
  93. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  94. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  95. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  96. FindControl work with NamingContainers.
  97. * ControlCollection.cs: notify the parent when clearing the collection.
  98. * LosFormatter.cs: Added debugging output and generate a valid
  99. viewstate even for unknown types.
  100. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  101. viewstate.
  102. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  103. * Page.cs: make it fire the LoadData related events also for controls
  104. such as ImageButton, whose variable(s) in the query string are of the
  105. form ctrl_name.x and only fire them once per control.
  106. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  107. * DataBinder.cs:
  108. (GetPropertyValue): don't try to get the property as indexed
  109. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  110. * DataBinder.cs: use TypeDescriptor to get the properties and their
  111. values.
  112. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  113. * Control.cs:
  114. (AddedControl): take the children to the same state of the parent.
  115. (InitRecursive): set the page of the children.
  116. * Page.cs: removed one line (it's done a few lines above).
  117. * UserControl.cs:
  118. (OnInit): always call InitializeAsUserControl
  119. (InitializeAsUserControl): sets the page for the control.
  120. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  121. * Control.cs: fixed bug #36037.
  122. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  123. * BaseParser.cs: a couple of path fixes to make it work
  124. when the page is not in the root directory.
  125. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  126. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  127. reporting the bug.
  128. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  129. * BaseParser.cs: use MapPath and context to locate files.
  130. * Control.cs: implemented MapPathSecure.
  131. * TemplateControl.cs: use UrlUtils to generate the path.
  132. * TemplateControlParser.cs: use the context and MapPath.
  133. * UserControl.cs: implemented MapPath.
  134. * UserControlParser.cs: added context parameter to constructor.
  135. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  136. * Control.cs: implemented MapPathSecure.
  137. * Page.cs: fixed Server property.
  138. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  139. * DataBinder.cs: try the indexer if the property is not found in
  140. GetPropertyValue ().
  141. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  142. * Control.cs: added AutoEventWireup internal property.
  143. * Page.cs: removed page events wire up from here.
  144. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  145. and user controls events.
  146. * TemplateControlParser.cs: process the options that are applicable
  147. once we have the instance of the control.
  148. * TemplateParser.cs: also stores the options.
  149. * UserControl.cs: hook up events before initializing the control.
  150. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  151. * Control.cs: new method to set bindingContainer value.
  152. * TemplateControl.cs: added controls are not binding containers.
  153. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  154. * Control.cs: implemented TemplateSourceDirectory.
  155. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  156. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  157. * UserControl.cs: fixed SetAttribute.
  158. * UserControlParser.cs: set the correct base type.
  159. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  160. * TemplateParser.cs: fixed BaseType.
  161. * UserControlParser.cs: helper class to compile user controls.
  162. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  163. * LosFormatter.cs: added DateTime to special types.
  164. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  165. * LosFormatter.cs: added array serialization support. Disabled binary
  166. serialization and add some debugging code.
  167. * StateBag.cs: the length of the list of value can be less than the
  168. length if the list of keys when remaining values are null.
  169. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  170. * Page.cs: return something useful in GetPostBackClientEvent.
  171. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  172. * Page.cs: implemented FileDependecies and made it protected.
  173. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  174. * Control.cs: save control names instead of the controls
  175. themselves to the ViewState.
  176. * LosFormatter.cs: added support for serializing unknown
  177. types. BinaryFormatter does not work so you better don't store anything
  178. of unknown Type in ViewState.
  179. * Page.cs: GetViewStateString works now using LosFormatter.
  180. Complete "Control execution lifecycle" by unloading all the child
  181. controls. Check for null in RaisePostBackEvents.
  182. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  183. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  184. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  185. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  186. * LosFormatter.cs: Use WebEncoding.Encoding.
  187. * Control.cs:
  188. * Page.cs: fixed namespace.
  189. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  190. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  191. * Control.cs: added some trace information.
  192. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  193. * SimpleHandlerFactory.cs: new handler for .ashx files.
  194. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  195. * System.Web.UI/PageHandlerFactory.cs: new file.
  196. * System.Web.UI/PageParser.cs:
  197. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  198. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  199. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  200. * Control.cs: implemented ObBubbleEvent.
  201. * Page.cs: temporary workaround to make POST work with xsp server.
  202. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  203. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  204. return pvt methods.
  205. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  206. * SimpleWebHandlerParser.cs: New file.
  207. * WebServiceParser.cs: New file.
  208. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  209. * LosFormatter.cs: almost fully implemented.
  210. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  211. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  212. * EmptyControlCollection.cs: throw correct exception.
  213. * LosFormatter.cs: stubbed out.
  214. * OutputCacheLocation.cs: little fix.
  215. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  216. * System.Web.UI/ApplicationFileParser.cs:
  217. * System.Web.UI/BaseParser.cs:
  218. * System.Web.UI/PageParser.cs:
  219. * System.Web.UI/TemplateControl.cs:
  220. * System.Web.UI/TemplateControlParser.cs:
  221. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  222. System.Web.
  223. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  224. * Page.cs: request to render postback script can be after form started
  225. rendering.
  226. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  227. * Page.cs: added more page events to invoke automagically if some
  228. methods are defined.
  229. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  230. * Control.cs:
  231. (SaveViewState): save state even when control is not visible.
  232. (SaveViewStateRecursive):
  233. (LoadViewStateRecursive): made internal.
  234. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  235. * Page.cs: improved event raising to allow client postback for a wider
  236. variety of actions (clicking an hyperlink, ...).
  237. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  238. * UserControl.cs: implemented Load/SaveViewState.
  239. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  240. * AttributeCollection.cs:
  241. (Add): handle 'style' through styleCollection.
  242. * CssStyleCollection.cs:
  243. (fillStyle): renamed to FillStyle and made it internal.
  244. * Page.cs:
  245. (GetViewStateString): fixed, broken after other recent changes.
  246. (ProcessPostData): allow a second try for postback data after OnLoad.
  247. (ProcessRequest): clear controls collection, removed call to
  248. UnloadRecursive.
  249. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  250. * Control.cs: uncommented Dispose.
  251. * Page.cs:
  252. (DeterminePostBackMode): more checkings.
  253. (GetPostBackClientHyperLink): implemented.
  254. (GetPostBackEventReference): added some comments with the HTML that MS
  255. generates for that.
  256. (ProcessRequest): fixed processing order. The page is unloaded after
  257. a request and regenerated from view state on subsequents posts.
  258. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  259. * Control.cs: fixed related to ViewState. Added RemovedControl.
  260. * ControlCollection.cs: notify owner of control removal.
  261. * CssStyleCollection.cs: almost rewritten to make it render the style
  262. attribute after changes to it.
  263. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  264. Removed Xml code.
  265. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  266. HybridDictionary: it makes the program give an InvalidCastException at
  267. runtime. Why?
  268. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  269. * Page.cs: fire Init and Load events for all children.
  270. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  271. * UserControl.cs: New file.
  272. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  273. * ControlBuilderAttribute.cs: finished implementation.
  274. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  275. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  276. property to false.
  277. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  278. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  279. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  280. Hashtable. Added internal .ctor.
  281. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  282. Equals and GetHashCode.
  283. * System.Web.UI/DataBoundLiteralControl.cs:
  284. (LoadViewState):
  285. (SaveViewState): implemented.
  286. * System.Web.UI/Page.cs: FileDependencies is not public.
  287. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  288. (GetHashCode):
  289. (Equals):
  290. (IsDefaultAttribute): implemented.
  291. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  292. * Control.cs: fixed Visible property.
  293. * Page.cs: fixed GetViewStateString.
  294. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  295. * System.Web.UI/Page.cs:
  296. (GetViewStateString): new function to give the server access to the
  297. generated view state string.
  298. (Validate): d'oh!
  299. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  300. * Control.cs:
  301. (SaveViewstateRecursive): implemented.
  302. (SaveViewState): fixed.
  303. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  304. * Page.cs: added code to save view state to an xml file. It's not
  305. being used right now.
  306. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  307. * System.Web.UI/LiteralControl.cs:
  308. Fixes based on class status page:
  309. - Add attributes (DefaultEvent, ParseChildren).
  310. - Fix declarations.
  311. - Explicitly implement some interfaces (IPostBackDataHandler
  312. and IPostBackEventHandler).
  313. - Implemented some missing methods.
  314. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  315. * Control.cs: reimplemented FindControls.
  316. * Page.cs:
  317. (.ctor): set the page for this control.
  318. (IsPostBack): return valid value.
  319. (DeterminePostBackMode): finished.
  320. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  321. (ProcessPostData): implemented. Raises change and postback events.
  322. (ProcessRequest): changed to support reuse of the instance.
  323. (RegisterRequiresPostBack): implemented.
  324. * ValidatorCollection.cs: implemented all methods.
  325. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  326. * Control.cs:
  327. * Page.cs: first attemp to save view state.
  328. * HtmlForm.cs: don't render Action.
  329. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  330. * Page.cs: implemented more properties using information we already
  331. have in Context.
  332. (OnFormRender):
  333. (OnFormPostRender):
  334. (VerifyRenderingInServerForm): implemented.
  335. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  336. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  337. out runtime. Renamed Page_Init and Page_Load.
  338. After this, we can load a dll and render HTML in linux.
  339. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  340. * Control.cs:
  341. (AddedControl): new function that is called whenever a control is
  342. added to a collection of controls in a container. It sets the defaults
  343. except for Page.
  344. * ControlCollection.cs: call AddedControl in Add/AddAt.
  345. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  346. SetStaticString and SetDataBoundString.
  347. * Page.cs: removed SetDefaults.
  348. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  349. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  350. by xsp.
  351. * Control.cs:
  352. (BindingContainer): implemented.
  353. (EnsureChildControls): avoid stack overflow.
  354. * DataBinder.cs: implemented Eval and PropertyValue.
  355. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  356. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  357. bug as in regular attributes).
  358. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  359. * Control.cs: implemented PreventAutoID.
  360. * Page.cs:
  361. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  362. been called.
  363. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  364. * Page.cs:
  365. (Validators): if the collection is null, create one.
  366. (GetPostBackEventReference 2): don't throw exception.
  367. (GetPostBackClientEvent): return a string with containing the method
  368. name, the control name and the argument.
  369. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  370. * Page.cs: SetPage is now called SetDefaults and also sets a default
  371. ID for controls that don't have one yet.
  372. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  373. * Page.cs:
  374. (GetPostBackClient):
  375. (RegisterRequiresPostBack): don't throw NotImplementedException to
  376. keep going.
  377. (ProcessRequest): set the current page as the Page property for *all*
  378. the controls, not just the direct children of the page.
  379. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  380. * Control.cs:
  381. (MapPathSecure): until security is implemented, return the same path
  382. received as argument.
  383. (RenderControl): call OnPreRender before rendering the control. So
  384. AdRotator can read its configuration file.Is there any other place
  385. where this should be done?
  386. * HtmlTextWriter.cs:
  387. (AddAttribute): fixed. Now it really stores attributes.
  388. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  389. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  390. * ControlCollection.cs:
  391. (AddAt): if index is -1 behave as a plain Add.
  392. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  393. * Page.cs: for each child control to render, assign Control.Page.
  394. Probably also needed in HtmlContainerControl derived classes.
  395. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  396. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  397. fine and takes care of the details.
  398. * Control.cs: added HasChildren property.
  399. * StateBag.cs: fixed a couple of nasty bugs.
  400. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  401. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  402. Invoke Page_Init and/or Page_Load if the user supplied them (though
  403. this should depend on AutoEventWireUp attribute of Page directive).
  404. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  405. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  406. * Page.cs:
  407. (ProcessRequest): implemented.
  408. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  409. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  410. methods.
  411. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  412. * Page.cs:
  413. (FileDependencies): now is public public.
  414. (EnableViewStateMAC): uncommented and made protected.
  415. (GetTypeHashCode): added method.
  416. 2002-05-24 Duncan Mak <[email protected]>
  417. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  418. * StateBag.cs (Item): Changed the visibility level of the this
  419. [object] indexer.
  420. Misc. formatting edits, fixing some bugs introduced by the indentation.
  421. * DataBinder.cs (Eval)
  422. (GetIndexedPropertyValue)
  423. (GetPropertyValue): Fixed return types.
  424. 2002-05-21 Miguel de Icaza <[email protected]>
  425. * HtmlTextWriter.cs: Use this to change the member instances.
  426. 2002-05-17 Duncan Mak <[email protected]>
  427. * AttributeCollection.cs:
  428. * ControlCollection.cs:
  429. * CssStyleCollection.cs:
  430. * DataBindingCollection.cs:
  431. * EmptyControlCollection.cs: Added missing Collection classes.
  432. 2002-05-17 Duncan Mak <[email protected]>
  433. * BaseParser.cs:
  434. * TemplateParser.cs: Implemented. BaseParser is weird because
  435. there is no documentation on what it does.
  436. * ControlBuilder.cs:
  437. * DataBinder.cs:
  438. * DataBinding.cs: Added.
  439. * DataBoundLiteralControl.cs:
  440. * Triplet.cs: Added.
  441. * RenderMethod.cs: Added this delegate for Control.cs
  442. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  443. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  444. 2002-05-14 Duncan Mak <[email protected]>
  445. * ValidationPropertyAttribute.cs: Added to CVS.
  446. 2002-05-10 Duncan Mak <[email protected]>
  447. * ConstructorNeedsTagAttribute.cs:
  448. * ControlBuilderAttribute.cs:
  449. * ImageClickEventArgs.cs:
  450. * ParseChildrenAttribute.cs:
  451. * PartialCachingAttribute.cs:
  452. * PersistChildrenAttribute.cs:
  453. * PersistenceModeAttribute.cs:
  454. * TemplateContainerAttribute.cs: Added to CVS.
  455. * PersistanceMode.cs: Removed, fixed typo.
  456. * PersistenceMode.cs: Replacing above.
  457. * StateBag.cs (this): Fixed indexer, it takes a string as the
  458. index, not an object.
  459. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  460. * Page.cs (Validators): return type should be ValidatorCollection,
  461. not ValidatedCollection.
  462. * TagPrefixAttribute.cs: Added to CVS.
  463. 2002-05-07 Duncan Mak <[email protected]>
  464. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  465. 2002-03-26 Gaurav Vaish <[email protected]>
  466. * DataBindingHandlerAttribute.cs
  467. - Completed
  468. * ToolboxDataAttribute.cs - Completed
  469. 2002-01-03 Nick Drochak <[email protected]>
  470. * DesignTimeParseData.cs: initialze static member to avoid compile
  471. error
  472. * PropertyConverter.cs: remove uneeded exception variables from
  473. catch blocks.
  474. 2002-01-02 Nick Drochak <[email protected]>
  475. * DesignTimeParseData.cs: fix header to show correct class name
  476. 2001-12-21 Gaurav Vaish <[email protected]>
  477. * StateBag.cs - Completed
  478. 2001-12-19 Gaurav Vaish <[email protected]>
  479. * Pair.cs - Small undocumented class. Completed.
  480. 2001-12-18 Gaurav Vaish <[email protected]>
  481. * DesignTimeParseData.cs - Initial implementation
  482. * StateBag.cs - Initial implementation
  483. 2001-12-17 Gaurav Vaish <[email protected]>
  484. * PropertyConverter.cs - Undocumented class. Completed.
  485. * Utils.cs - Undocumented, private class.
  486. Initial implementation
  487. 2001-08-28 Bob Smith <[email protected]>
  488. * Control.cs: Figured out some undocumented API.
  489. * Added TODO.
  490. * BuildMethod.cs: Initial implementation.
  491. * BuildTemplateMethod.cs: Initial implementation.
  492. * HtmlTextWriterAttribute.cs: Initial implementation.
  493. * HtmlTextWriterStyle.cs: Initial implementation.
  494. * HtmlTextWriterTag.cs: Initial implementation.
  495. * IAttributeAccessor.cs: Initial implementation.
  496. * IDataBindingsAccessor.cs: Initial implementation.
  497. * ImageClickEventHandler.cs: Initial implementation.
  498. * INamingContainer.cs: Initial implementation.
  499. * IParserAccessor.cs: Initial implementation.
  500. * IPostBackDataHandler.cs: Initial implementation.
  501. * IPostBackEventHandler.cs: Initial implementation.
  502. * IStateManager.cs: Initial implementation.
  503. * ITagNameToTypeMapper.cs: Initial implementation.
  504. * ITemplate.cs: Initial implementation.
  505. * IValidator.cs: Initial implementation.
  506. * OutputCacheLocation.cs: Initial implementation.
  507. * PersistanceMode.cs: Initial implementation.
  508. * StateItem.cs: Initial implementation.
  509. 2001-08-27 Bob Smith <[email protected]>
  510. * Control.cs: Bug fixes and implementations.
  511. 2001-08-24 Bob Smith <[email protected]>
  512. * Control.cs: Bug fixes.
  513. 2001-08-23 Bob Smith <[email protected]>
  514. * Control.cs: More implementation. Events reworked for performance.
  515. 2001-08-22 Bob Smith <[email protected]>
  516. * LiteralControl.cs: Implemented.
  517. * Control.cs: Even more implementation (Events). What a beast.
  518. 2001-08-20 Bob Smith <[email protected]>
  519. * Control.cs: More implementation. Not done yet. Shutter.
  520. 2001-08-17 Bob Smith <[email protected]>
  521. * Control.cs: Partial implementation.