2
0

ChangeLog 24 KB

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