ChangeLog 24 KB

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