ChangeLog 25 KB

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