2002-06-25 Gonzalo Paniagua Javier * Control.cs: * Page.cs: first attemp to save view state. * HtmlForm.cs: don't render Action. 2002-06-24 Gonzalo Paniagua Javier * Page.cs: implemented more properties using information we already have in Context. (OnFormRender): (OnFormPostRender): (VerifyRenderingInServerForm): implemented. 2002-06-22 Gonzalo Paniagua Javier * Page.cs: changed InvokeEventMethod to use a GetMethod that works with out runtime. Renamed Page_Init and Page_Load. After this, we can load a dll and render HTML in linux. 2002-06-20 Gonzalo Paniagua Javier * Control.cs: (AddedControl): new function that is called whenever a control is added to a collection of controls in a container. It sets the defaults except for Page. * ControlCollection.cs: call AddedControl in Add/AddAt. * DataBoundLiteralControl.cs: implemented constructor, Text, Render, SetStaticString and SetDataBoundString. * Page.cs: removed SetDefaults. 2002-06-19 Gonzalo Paniagua Javier * CompiledTemplateBuilder.cs: new file. Used in the code generated by xsp. * Control.cs: (BindingContainer): implemented. (EnsureChildControls): avoid stack overflow. * DataBinder.cs: implemented Eval and PropertyValue. 2002-06-18 Gonzalo Paniagua Javier * HtmlTextWriter.cs: fixed style attributes rendering (almost the same bug as in regular attributes). 2002-06-17 Gonzalo Paniagua Javier * Control.cs: implemented PreventAutoID. * Page.cs: (SetDefaults): don't set ID automatically if Control.PreventAutoID has been called. 2002-06-12 Gonzalo Paniagua Javier * Page.cs: (Validators): if the collection is null, create one. (GetPostBackEventReference 2): don't throw exception. (GetPostBackClientEvent): return a string with containing the method name, the control name and the argument. 2002-06-12 Gonzalo Paniagua Javier * Page.cs: SetPage is now called SetDefaults and also sets a default ID for controls that don't have one yet. 2002-06-12 Gonzalo Paniagua Javier * Page.cs: (GetPostBackClient): (RegisterRequiresPostBack): don't throw NotImplementedException to keep going. (ProcessRequest): set the current page as the Page property for *all* the controls, not just the direct children of the page. 2002-06-11 Gonzalo Paniagua Javier * Control.cs: (MapPathSecure): until security is implemented, return the same path received as argument. (RenderControl): call OnPreRender before rendering the control. So AdRotator can read its configuration file.Is there any other place where this should be done? * HtmlTextWriter.cs: (AddAttribute): fixed. Now it really stores attributes. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find). 2002-06-09 Gonzalo Paniagua Javier * ControlCollection.cs: (AddAt): if index is -1 behave as a plain Add. 2002-06-06 Gonzalo Paniagua Javier * Page.cs: for each child control to render, assign Control.Page. Probably also needed in HtmlContainerControl derived classes. 2002-06-05 Gonzalo Paniagua Javier * AttributeCollection.cs: don't need a Hastable. StateBag now works fine and takes care of the details. * Control.cs: added HasChildren property. * StateBag.cs: fixed a couple of nasty bugs. 2002-06-05 Gonzalo Paniagua Javier * Page.cs: run OnInit, OnLoad y PreRender before rendering the page. Invoke Page_Init and/or Page_Load if the user supplied them (though this should depend on AutoEventWireUp attribute of Page directive). 2002-06-04 Gonzalo Paniagua Javier * Control.cs: don't throw exception in ControlID. By now, it returns ID. * Page.cs: (ProcessRequest): implemented. 2002-06-04 Gonzalo Paniagua Javier * System.Web.UI/Page.cs: finished stubbing out. Implemented some methods. 2002-06-03 Gonzalo Paniagua Javier * Page.cs: (FileDependencies): now is public public. (EnableViewStateMAC): uncommented and made protected. (GetTypeHashCode): added method. 2002-05-24 Duncan Mak * TemplateControl.cs (SetStringResourcePointer): Fixed typo. * StateBag.cs (Item): Changed the visibility level of the this [object] indexer. Misc. formatting edits, fixing some bugs introduced by the indentation. * DataBinder.cs (Eval) (GetIndexedPropertyValue) (GetPropertyValue): Fixed return types. 2002-05-21 Miguel de Icaza * HtmlTextWriter.cs: Use this to change the member instances. 2002-05-17 Duncan Mak * AttributeCollection.cs: * ControlCollection.cs: * CssStyleCollection.cs: * DataBindingCollection.cs: * EmptyControlCollection.cs: Added missing Collection classes. 2002-05-17 Duncan Mak * BaseParser.cs: * TemplateParser.cs: Implemented. BaseParser is weird because there is no documentation on what it does. * ControlBuilder.cs: * DataBinder.cs: * DataBinding.cs: Added. * DataBoundLiteralControl.cs: * Triplet.cs: Added. * RenderMethod.cs: Added this delegate for Control.cs 2002-05-15 Gonzalo Paniagua Javier * ValidationPropertyAttribute.cs: a couple of fixes to make it compile. 2002-05-14 Duncan Mak * ValidationPropertyAttribute.cs: Added to CVS. 2002-05-10 Duncan Mak * ConstructorNeedsTagAttribute.cs: * ControlBuilderAttribute.cs: * ImageClickEventArgs.cs: * ParseChildrenAttribute.cs: * PartialCachingAttribute.cs: * PersistChildrenAttribute.cs: * PersistenceModeAttribute.cs: * TemplateContainerAttribute.cs: Added to CVS. * PersistanceMode.cs: Removed, fixed typo. * PersistenceMode.cs: Replacing above. * StateBag.cs (this): Fixed indexer, it takes a string as the index, not an object. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection. * Page.cs (Validators): return type should be ValidatorCollection, not ValidatedCollection. * TagPrefixAttribute.cs: Added to CVS. 2002-05-07 Duncan Mak * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument. 2002-03-26 Gaurav Vaish * DataBindingHandlerAttribute.cs - Completed * ToolboxDataAttribute.cs - Completed 2002-01-03 Nick Drochak * DesignTimeParseData.cs: initialze static member to avoid compile error * PropertyConverter.cs: remove uneeded exception variables from catch blocks. 2002-01-02 Nick Drochak * DesignTimeParseData.cs: fix header to show correct class name 2001-12-21 Gaurav Vaish * StateBag.cs - Completed 2001-12-19 Gaurav Vaish * Pair.cs - Small undocumented class. Completed. 2001-12-18 Gaurav Vaish * DesignTimeParseData.cs - Initial implementation * StateBag.cs - Initial implementation 2001-12-17 Gaurav Vaish * PropertyConverter.cs - Undocumented class. Completed. * Utils.cs - Undocumented, private class. Initial implementation 2001-08-28 Bob Smith * Control.cs: Figured out some undocumented API. * Added TODO. * BuildMethod.cs: Initial implementation. * BuildTemplateMethod.cs: Initial implementation. * HtmlTextWriterAttribute.cs: Initial implementation. * HtmlTextWriterStyle.cs: Initial implementation. * HtmlTextWriterTag.cs: Initial implementation. * IAttributeAccessor.cs: Initial implementation. * IDataBindingsAccessor.cs: Initial implementation. * ImageClickEventHandler.cs: Initial implementation. * INamingContainer.cs: Initial implementation. * IParserAccessor.cs: Initial implementation. * IPostBackDataHandler.cs: Initial implementation. * IPostBackEventHandler.cs: Initial implementation. * IStateManager.cs: Initial implementation. * ITagNameToTypeMapper.cs: Initial implementation. * ITemplate.cs: Initial implementation. * IValidator.cs: Initial implementation. * OutputCacheLocation.cs: Initial implementation. * PersistanceMode.cs: Initial implementation. * StateItem.cs: Initial implementation. 2001-08-27 Bob Smith * Control.cs: Bug fixes and implementations. 2001-08-24 Bob Smith * Control.cs: Bug fixes. 2001-08-23 Bob Smith * Control.cs: More implementation. Events reworked for performance. 2001-08-22 Bob Smith * LiteralControl.cs: Implemented. * Control.cs: Even more implementation (Events). What a beast. 2001-08-20 Bob Smith * Control.cs: More implementation. Not done yet. Shutter. 2001-08-17 Bob Smith * Control.cs: Partial implementation.