| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856 |
- 2003-07-17 Andreas Nahr <[email protected]>
- * IUserControlDesignerAccessor.cs: Added and implemented
- * Control.cs: Missing member added, added all attributes
- * Page.cs: Added attributes, fixed signature
- * TemplateControl.cs: Fixed signature, added all attributes
- * UserControl.cs: Added all attributes, added and implemented missing interface
-
- 2003-07-17 Gonzalo Paniagua Javier <[email protected]>
- * ControlCollection.cs: fixed bug #46472.
- 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
- * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
- 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
- * SimpleWebHandlerParser.cs: updated to new compilation interface.
- * TemplateParser.cs: use the new parameter when compiling.
- 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: also keep the value for the second try on handling postback
- events.
- 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
- * BaseParser.cs: fixed MapPath for non-rooted files.
- * PageParser.cs: don't pass a non-virtual file around.
- * TemplateControlParser.cs: InputFile uses MapPath now. Take care of
- the exception teh may be throw by MapPath on an invalid path.
- * TemplateParser.cs: removed unused method.
- * UserControlParser.cs: modified inputfile. The result is the same, but
- this one is better.
- 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
- * RootBuilder.cs: throw exception when the tagprefix is not valid or
- not found.
- 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
- * TemplateControlParser.cs: return after processing @Register.
- 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
- * TemplateParser.cs: Added support for server side includes.
- 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
- * TemplateControl.cs: fixed the flags used to find the methods that
- are automatically hooked up on events.
- * TemplateParser.cs: don't compile a source file directly. Use the
- cache instead.
- 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
- * BaseParser.cs: Location property is now here. Added a couple of
- convenience methods to throw a ParseException.
- * TemplateParser.cs:
- * TemplateControlParser.cs:
- * PageParser.cs: throw ParseException where appropiate.
- 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
- * ApplicationFileParser.cs: use the generator to actually parse the
- file.
- * ControlBuilder.cs: small fix in NamingContainerType because
- TemplateBuilders have a null ControlType. When a control is appended
- to a parent, assign the child's parent.
- * UserControlParser.cs: fixed the value of InputFile.
- 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
- * ApplicationFileParser.cs: store the Context and override
- BaseVirtualDir so that it's the application path.
- * BaseParser.cs: removed CurrentVirtualPath property.
- * TemplateControlParser.cs: use BaseVirtualDir.
- * UserControlParser.cs: removed CurrentVirtualPath.
- 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
- * TemplateParser.cs: always reference all the assemblies in bin
- directory.
- 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
- * ApplicationFileParser.cs: it works now. Prior to these changes, we
- were using the compiler directly.
- * BaseParser.cs: added some useful properties and methods.
- * CodeBuilder.cs: use ILocation.
- * CodeRenderBuilder.cs: use ILocation.
- * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
- * ControlBuilder.cs: made it useful.
- * DataBindingBuilder.cs: the control type for data bound text is
- DataBoundLiteralControl now.
- * ObjectTagBuilder.cs: store some object tag attributes.
- * PageParser.cs: handle page-only directives.
- * RootBuilder.cs: bah.
- * SimpleWebHandlerParser.cs: made it dummy.
- * TemplateControl.cs: Modified file.
- * TemplateControlParser.cs: handle directives that are common to pages
- and user controls.
- * TemplateParser.cs: utility methods and handling of directives that
- are common to app, page and user controls.
- * UserControl.cs: added ControlBuilderAttribute.
- * UserControlControlBuilder.cs: builder for user controls.
- * UserControlParser.cs: use the new interfaces.
- 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
- * ControlBuilder.cs: line and fileName are protected now.
- * CodeBuilder.cs: base class for the next 2 files.
- * CodeRenderBuilder.cs: builder for code render.
- * DataBindingBuilder.cs: builder for data binding.
- 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
- * ITagNameToTypeMapper.cs: made it internal.
- * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
- * ObjectTag.cs:
- * RootBuilder.cs: initial builder.
- 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
- * CollectionBuilder.cs:
- * TemplateBuilder.cs: new classes derived from ControlBuilder that
- represent a property or a ITemplate.
-
- * ControlBuilder.cs: implemented all the missing bits.
- * TemplateParser.cs: added mapping from tag name to Type feature.
- 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: have i definitely fixed naming container stuff this time?
- * LosFormatter.cs: activated binary serialization code.
- 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs:
- (AddedControl): fixed default id assignation when the sequence of
- AddedControl until it's included in the page or one of its controls
- does not pass through a naming container.
- 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: give different default names depending on the place where
- it is assigned. Implemented ResolveURl (no more ~ rendered in
- attributes!).
- 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: when adding a control, assign default names to th
- children that don't have one.
- 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
- * SimpleWebHandlerParser.cs: modified to use the new parser interface.
- 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: some more tweaks to naming containers stuff.
- * DataBinder.cs: don't throw exception if the container is null.
- * Page.cs: now we can render client scripts, startup scripts and hidden
- fields. Only render __VIEWSTATE if there is someone that will take care
- of it.
- (RaisePostBackEvents): first try the last one that required raise event,
- then try __EVENTTARGET.
- 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: fixes in UniqueID, FindControl, AddedControl,
- UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
- FindControl work with NamingContainers.
-
- * ControlCollection.cs: notify the parent when clearing the collection.
- * LosFormatter.cs: Added debugging output and generate a valid
- viewstate even for unknown types.
- * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
- viewstate.
- 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: make it fire the LoadData related events also for controls
- such as ImageButton, whose variable(s) in the query string are of the
- form ctrl_name.x and only fire them once per control.
- 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
- * DataBinder.cs:
- (GetPropertyValue): don't try to get the property as indexed
- 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
- * DataBinder.cs: use TypeDescriptor to get the properties and their
- values.
- 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs:
- (AddedControl): take the children to the same state of the parent.
- (InitRecursive): set the page of the children.
- * Page.cs: removed one line (it's done a few lines above).
- * UserControl.cs:
- (OnInit): always call InitializeAsUserControl
- (InitializeAsUserControl): sets the page for the control.
- 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: fixed bug #36037.
- 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
- * BaseParser.cs: a couple of path fixes to make it work
- when the page is not in the root directory.
- 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
- reporting the bug.
- 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
- * BaseParser.cs: use MapPath and context to locate files.
- * Control.cs: implemented MapPathSecure.
- * TemplateControl.cs: use UrlUtils to generate the path.
- * TemplateControlParser.cs: use the context and MapPath.
- * UserControl.cs: implemented MapPath.
- * UserControlParser.cs: added context parameter to constructor.
- 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: implemented MapPathSecure.
- * Page.cs: fixed Server property.
- 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
- * DataBinder.cs: try the indexer if the property is not found in
- GetPropertyValue ().
- 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: added AutoEventWireup internal property.
- * Page.cs: removed page events wire up from here.
- * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
- and user controls events.
- * TemplateControlParser.cs: process the options that are applicable
- once we have the instance of the control.
- * TemplateParser.cs: also stores the options.
- * UserControl.cs: hook up events before initializing the control.
- 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: new method to set bindingContainer value.
- * TemplateControl.cs: added controls are not binding containers.
- 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: implemented TemplateSourceDirectory.
- * TemplateControl.cs: implemented LoadControl and LoadTemplate.
- 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
- * UserControl.cs: fixed SetAttribute.
- * UserControlParser.cs: set the correct base type.
- 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
- * TemplateParser.cs: fixed BaseType.
- * UserControlParser.cs: helper class to compile user controls.
- 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
- * LosFormatter.cs: added DateTime to special types.
- 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
- * LosFormatter.cs: added array serialization support. Disabled binary
- serialization and add some debugging code.
- * StateBag.cs: the length of the list of value can be less than the
- length if the list of keys when remaining values are null.
- 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: return something useful in GetPostBackClientEvent.
- 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: implemented FileDependecies and made it protected.
- 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: save control names instead of the controls
- themselves to the ViewState.
- * LosFormatter.cs: added support for serializing unknown
- types. BinaryFormatter does not work so you better don't store anything
- of unknown Type in ViewState.
- * Page.cs: GetViewStateString works now using LosFormatter.
- Complete "Control execution lifecycle" by unloading all the child
- controls. Check for null in RaisePostBackEvents.
- LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
- 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
- * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
- 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
- * LosFormatter.cs: Use WebEncoding.Encoding.
- * Control.cs:
- * Page.cs: fixed namespace.
- 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: set the context in ProcessRequest. Added a few trace calls.
- * Control.cs: added some trace information.
- 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
- * SimpleHandlerFactory.cs: new handler for .ashx files.
- 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/PageHandlerFactory.cs: new file.
- * System.Web.UI/PageParser.cs:
- * System.Web.UI/TemplateControlParser.cs: we are now able to compile
- pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
- 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: implemented ObBubbleEvent.
- * Page.cs: temporary workaround to make POST work with xsp server.
- 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
- return pvt methods.
- 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
- * SimpleWebHandlerParser.cs: New file.
- * WebServiceParser.cs: New file.
- 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
- * LosFormatter.cs: almost fully implemented.
- 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
- * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
- * EmptyControlCollection.cs: throw correct exception.
- * LosFormatter.cs: stubbed out.
- * OutputCacheLocation.cs: little fix.
- 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/ApplicationFileParser.cs:
- * System.Web.UI/BaseParser.cs:
- * System.Web.UI/PageParser.cs:
- * System.Web.UI/TemplateControl.cs:
- * System.Web.UI/TemplateControlParser.cs:
- * System.Web.UI/TemplateParser.cs: first steps to move xsp into
- System.Web.
- 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: request to render postback script can be after form started
- rendering.
- 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: added more page events to invoke automagically if some
- methods are defined.
- 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs:
- (SaveViewState): save state even when control is not visible.
- (SaveViewStateRecursive):
- (LoadViewStateRecursive): made internal.
- 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: improved event raising to allow client postback for a wider
- variety of actions (clicking an hyperlink, ...).
- 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
- * UserControl.cs: implemented Load/SaveViewState.
- 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
- * AttributeCollection.cs:
- (Add): handle 'style' through styleCollection.
- * CssStyleCollection.cs:
- (fillStyle): renamed to FillStyle and made it internal.
- * Page.cs:
- (GetViewStateString): fixed, broken after other recent changes.
- (ProcessPostData): allow a second try for postback data after OnLoad.
- (ProcessRequest): clear controls collection, removed call to
- UnloadRecursive.
- 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: uncommented Dispose.
- * Page.cs:
- (DeterminePostBackMode): more checkings.
- (GetPostBackClientHyperLink): implemented.
- (GetPostBackEventReference): added some comments with the HTML that MS
- generates for that.
- (ProcessRequest): fixed processing order. The page is unloaded after
- a request and regenerated from view state on subsequents posts.
- 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: fixed related to ViewState. Added RemovedControl.
- * ControlCollection.cs: notify owner of control removal.
-
- * CssStyleCollection.cs: almost rewritten to make it render the style
- attribute after changes to it.
- * Page.cs: follow the guidelines in 'Control execution lifecycle'.
- Removed Xml code.
- * StateBag.cs: don't use IDictionary.GetEnumerator on the
- HybridDictionary: it makes the program give an InvalidCastException at
- runtime. Why?
- 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: fire Init and Load events for all children.
- 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
- * UserControl.cs: New file.
- 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
- * ControlBuilderAttribute.cs: finished implementation.
- 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
- * ConstructorNeedsTagAttribute.cs: the default constructor sets the
- property to false.
- 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
- * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
- Hashtable. Added internal .ctor.
- * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
- Equals and GetHashCode.
- * System.Web.UI/DataBoundLiteralControl.cs:
- (LoadViewState):
- (SaveViewState): implemented.
- * System.Web.UI/Page.cs: FileDependencies is not public.
- * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
- (GetHashCode):
- (Equals):
- (IsDefaultAttribute): implemented.
- 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: fixed Visible property.
- * Page.cs: fixed GetViewStateString.
- 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/Page.cs:
- (GetViewStateString): new function to give the server access to the
- generated view state string.
- (Validate): d'oh!
- 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs:
- (SaveViewstateRecursive): implemented.
- (SaveViewState): fixed.
- (IParserAccessor.AddParsedSubObject): don't use 'this'.
- * Page.cs: added code to save view state to an xml file. It's not
- being used right now.
- 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
- * System.Web.UI/LiteralControl.cs:
- Fixes based on class status page:
-
- - Add attributes (DefaultEvent, ParseChildren).
- - Fix declarations.
- - Explicitly implement some interfaces (IPostBackDataHandler
- and IPostBackEventHandler).
- - Implemented some missing methods.
- 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: reimplemented FindControls.
- * Page.cs:
- (.ctor): set the page for this control.
- (IsPostBack): return valid value.
- (DeterminePostBackMode): finished.
- (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
- (ProcessPostData): implemented. Raises change and postback events.
- (ProcessRequest): changed to support reuse of the instance.
- (RegisterRequiresPostBack): implemented.
- * ValidatorCollection.cs: implemented all methods.
- 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs:
- * Page.cs: first attemp to save view state.
- * HtmlForm.cs: don't render Action.
- 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
- * Page.cs: implemented more properties using information we already
- have in Context.
- (OnFormRender):
- (OnFormPostRender):
- (VerifyRenderingInServerForm): implemented.
- 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
- bug as in regular attributes).
- 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
- * Control.cs: implemented PreventAutoID.
- * Page.cs:
- (SetDefaults): don't set ID automatically if Control.PreventAutoID has
- been called.
- 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[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.
|