| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * ControlCollection.cs:
- (AddAt): if index is -1 behave as a plain Add.
- 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: for each child control to render, assign Control.Page.
- Probably also needed in HtmlContainerControl derived classes.
-
- 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * Control.cs: don't throw exception in ControlID. By now, it returns ID.
- * Page.cs:
- (ProcessRequest): implemented.
- 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/Page.cs: finished stubbing out. Implemented some
- methods.
- 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs:
- (FileDependencies): now is public public.
- (EnableViewStateMAC): uncommented and made protected.
- (GetTypeHashCode): added method.
-
- 2002-05-24 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * HtmlTextWriter.cs: Use this to change the member instances.
- 2002-05-17 Duncan Mak <[email protected]>
- * AttributeCollection.cs:
- * ControlCollection.cs:
- * CssStyleCollection.cs:
- * DataBindingCollection.cs:
- * EmptyControlCollection.cs: Added missing Collection classes.
- 2002-05-17 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
- 2002-05-14 Duncan Mak <[email protected]>
- * ValidationPropertyAttribute.cs: Added to CVS.
- 2002-05-10 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
- 2002-03-26 Gaurav Vaish <[email protected]>
- * DataBindingHandlerAttribute.cs
- - Completed
- * ToolboxDataAttribute.cs - Completed
- 2002-01-03 Nick Drochak <[email protected]>
- * DesignTimeParseData.cs: initialze static member to avoid compile
- error
- * PropertyConverter.cs: remove uneeded exception variables from
- catch blocks.
- 2002-01-02 Nick Drochak <[email protected]>
- * DesignTimeParseData.cs: fix header to show correct class name
- 2001-12-21 Gaurav Vaish <[email protected]>
- * StateBag.cs - Completed
- 2001-12-19 Gaurav Vaish <[email protected]>
- * Pair.cs - Small undocumented class. Completed.
- 2001-12-18 Gaurav Vaish <[email protected]>
- * DesignTimeParseData.cs - Initial implementation
- * StateBag.cs - Initial implementation
- 2001-12-17 Gaurav Vaish <[email protected]>
- * PropertyConverter.cs - Undocumented class. Completed.
- * Utils.cs - Undocumented, private class.
- Initial implementation
- 2001-08-28 Bob Smith <[email protected]>
- * 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 <[email protected]>
- * Control.cs: Bug fixes and implementations.
- 2001-08-24 Bob Smith <[email protected]>
- * Control.cs: Bug fixes.
- 2001-08-23 Bob Smith <[email protected]>
- * Control.cs: More implementation. Events reworked for performance.
- 2001-08-22 Bob Smith <[email protected]>
- * LiteralControl.cs: Implemented.
- * Control.cs: Even more implementation (Events). What a beast.
- 2001-08-20 Bob Smith <[email protected]>
- * Control.cs: More implementation. Not done yet. Shutter.
- 2001-08-17 Bob Smith <[email protected]>
- * Control.cs: Partial implementation.
|