ChangeLog 26 KB

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