df57de5e6b7d74c8c09b3e4fdf5e6eea1ac56100
[mono.git] / mcs / class / System.Web / System.Web.UI / ChangeLog
1 2005-07-19 Eyal Alaluf (eyala@mainsoft.com)
2         * Added TemplateControl.jvm.cs that implements Grasshopper (TARGET_J2EE)
3           limited model of compiling ASP pages.
4
5 2005-07-19 Eyal Alaluf (eyala@mainsoft.com)
6         * Added ControlBuilder.jvm.cs ObjectTagBuilder.jvm.cs as part of the TARGET_J2EE configuration.
7
8 2005-07-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9
10         * AttributeCollection.cs: create the style collection if it wasn't
11         created before Add ("style"...).
12
13 2005-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14
15         * AttributeCollection.cs: when the key added is 'style', use the style
16         collection.
17
18 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19
20         * Page.cs:
21         * Control.cs: avoid the creation of the EventHandlerList and accessing 
22         to it whenever possible. Fix ENABLE_THEMING constant.
23
24 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25
26         * TemplateParser.cs:
27         * TemplateControlParser.cs:
28         * UserControlParser.cs: detect circular references when a control tries
29         to register itself as a tag. Fixes bug #75376.
30
31 2005-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32
33         * PageParser.cs: don't try to compile the master page if it wan't
34         provided. Use MapPath from the base classes instead of the long
35         version. Fixes bug #75269 that prevented xsp2 from working properly.
36
37 2005-06-13  Lluis Sanchez Gual <lluis@novell.com> 
38
39         * MasterPage.cs: Clear the default content of placeholders before
40         adding the page content. Fixes bug #75193.
41
42 2005-06-13  Lluis Sanchez Gual <lluis@novell.com>
43
44         * PageParser.cs: Added MasterType property. Get the type from the
45         MasterType directive.
46         * MasterPageParser.cs: Added GetCompiledMasterType method.
47
48 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
49
50         * UserControl.cs:
51         * Page.cs:
52         * Control.cs: updates for 1.1 SP1
53
54 2005-06-06  Lluis Sanchez Gual <lluis@novell.com>
55
56         * Control.cs: Added new DataBind() overload for 2.0. The old
57         method calls this new overload.
58
59 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
60
61         * TemplateParser.cs: ignore empty assembly.Location for in-memory
62         generated assemblies.
63
64 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
65
66         * Page.cs: added AddContentTemplate method.
67
68 2005-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
69
70         * AttributeCollection.cs: html-encode attribute values. Fixes
71         bug #73771.
72
73 2005-05-26  Lluis Sanchez Gual <lluis@novell.com>
74
75         * DataSourceView.cs: Fix api.
76         * NonVisualControlAttribute.cs: Implemented.
77         * IDataItemContainer.cs: Added missing properties.
78         * Control.cs: Added new EnableTheming and SkinID properties.
79         * HierarchicalDataSourceControl.cs: Implemented missing methods.
80
81 2005-05-13  Lluis Sanchez Gual <lluis@novell.com>
82
83         * ControlCollection.cs: Added internal setter for ReadOnly.
84
85 2005-05-09 Geoff Norotn <gnorton@customerdna.com>
86
87         * TemplateParser.cs: Silently remove the CodeFile attribute that ASP.NET 2.0
88         uses instead of codebehind.
89
90 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
91
92         * Page.cs: as setting CurrentCulture is slow, don't set it if the
93         culture has not changed since before the page started processing.
94
95 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
96
97         * TemplateParser.cs: LoadWithPartialName returns null if the assembly is
98         not found.
99
100 2005-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
101
102         * TemplateParser.cs:
103         * SimpleWebHandlerParser.cs: removed values assigned and neved used.
104
105 2005-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
106
107         * SimpleWebHandlerParser.cs:
108         * TemplateParser.cs: always get the location (full path) for assemblies,
109         even the ones from the GAC.
110
111         * BaseCompiler.cs: check that DynamicBase directory exists before
112         creating the TempFileCollection.
113
114 2005-04-22  Lluis Sanchez Gual <lluis@novell.com>
115
116         * ClientScriptManager.cs: Use a linked list instead of a Hashtable
117         to store the scripts. In this way, scripts will be rendered in the
118         same order as they have been registered. It shouldn't be slower
119         since pages don't have many scripts.
120
121 2005-04-21  Lluis Sanchez Gual <lluis@novell.com>
122
123         * IEditableTextControl.cs: Implemented.
124         * DataBinder.cs: Marked constructor as obsolete in 2.0.
125         In GetDataItem, check for the IDataItemContainer interface
126         in the container.
127         * TemplateControl.cs: Improved check for data item.
128
129 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
130
131         * TemplateParser.cs: we still need LoadWithPartialName if Load fails.
132         * Page.cs: ensure _requiresPostBack is emptied if we didn't have a copy
133         for second postback.
134
135 2005-04-20  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
136         * TemplateParser.cs: Adding support for Strict/Explicit attributes 
137         for @Page/@Control directives as documented at 
138         http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconControlDirective.asp.
139         First step don't choke on them. Fixing #74671
140
141 2005-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
142
143         * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
144         there from the time when Load wasn't working properly. First part of the
145         fix to 74500.
146
147 2005-04-15  Lluis Sanchez Gual <lluis@novell.com>
148
149         * ControlBuilder.cs: The BindingContainerType property happens
150         to exist in 2.0, so I made it public. Added ParentTemplateBuilder,
151         which is used to get the binding container that is managing
152         the current two-way binding context.
153         * TemplateBuilder.cs: Added some methods and an internal class
154         to support two-way bindings.
155         * CompiledBindableTemplateBuilder.cs: Implemented.
156         * IBindableTemplate.cs: This interface inherits from ITemplate.
157
158 2005-04-14  Lluis Sanchez Gual <lluis@novell.com>
159
160         * ControlBuilder.cs: Added BindingContainerType property,
161         which works like NamingContainerType but takes into account
162         template builders with a specific container type (specified
163         using the TemplateContainerAttribute.
164         * StateManagedCollection.cs: Reimplemented Save/Load view
165         state methods. The existing implementation was not correct
166         in all cases.
167
168 2005-04-08  Lluis Sanchez Gual <lluis@novell.com>
169
170         * DataSourceView.cs: Added null check.
171
172 2005-04-07  Lluis Sanchez Gual <lluis@novell.com>
173
174         * TemplateControl.cs:
175         * Page.cs: Moved Eval and XPath from Page
176         to TemplateControl.
177         * StateManagedCollection.cs: Avoid saving null state.
178
179 2005-04-01  Lluis Sanchez Gual <lluis@novell.com>
180
181         * DataSourceView.cs: Rethrow exceptions not handled by operation
182         callbacks.
183         * ITextControl.cs: Removed event.
184         * CollectionBuilder.cs: Don't crash when a collection has more
185         than one indexer.
186
187 2005-03-23  Lluis Sanchez Gual <lluis@novell.com>
188
189         * Control.cs: Added a new internal property: HasRenderMethodDelegate.
190         * HtmlTextWriterAttribute.cs: Replaced wrong enum value.
191         * HtmlTextWriter.cs: Register new ASP.NET 2.0 attributes
192
193 2005-03-16  Lluis Sanchez Gual  <lluis@novell.com>
194
195         * ClientScriptManager.cs: Fix build.
196
197 2005-03-11  Lluis Sanchez Gual <lluis@novell.com>
198
199         * Utils.cs, Control.cs: Don't use Page.GetPostBackClientEvent
200         since it is deprecated in 2.0.
201         * Page.cs: Deprecated GetPostBackClientEvent and similar methods
202         in 2.0. Moved callback management methods to ClientScriptManager.
203         * ClientScriptManager.cs: Moved here deprecated methods from Page.
204         In GetPostBackEventReference (PostBackOptions), don't use the
205         WebForm_DoPostback script if the post can be done with a simple
206         __doPostBack call.
207         * PostBackOptions.cs: Fixed default values for some properties.
208
209 2005-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
210
211         * Control.cs: in FindControl, throw if there's more than one control
212         with the same ID. Fixes bug #73479.
213
214 2005-03-04  Lluis Sanchez Gual <lluis@novell.com>
215
216         * Page.cs: Load control state before loading view state, and the
217         same for saving.
218         * DataSourceSelectArguments.cs: Fix recursive property call.
219
220 2005-02-25  Lluis Sanchez Gual <lluis@novell.com>
221
222         * DataSourceView.cs: Fixed incorrect implementation of
223         RaiseUnsupportedCapabilityError.
224         * IDataItemContainer.cs: Added new properties.
225         * Page.cs: Implemented Form property.
226         * Control.cs: Fixed formatting.
227         * StateManagedCollection.cs: Track view state of items loaded
228         in LoadViewState.
229
230 2005-02-22  Lluis Sanchez Gual <lluis@novell.com>
231
232         * FilterableAttribute.cs: Fix endless loop.
233
234 2005-02-18  Lluis Sanchez Gual <lluis@novell.com>
235
236         * Page.cs: Implemented missing events.
237
238 2005-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
239
240         * BoundPropertyEntry.cs:
241         * PropertyEntry.cs:
242         * TwoWayBoundPropertyEntry.cs: implemented.
243
244 2005-02-10  Lluis Sanchez Gual <lluis@novell.com>
245
246         * Page.cs: Added support for validation groups. Some fixes in
247         SavePageControlState().
248         * IFilterResolutionService.cs: Removed extra field.
249         * INavigateUIData.cs: Added missing field.
250         * ICheckBoxControl.cs, IStaticTextControl.cs, ITextControl.cs:
251         Implemented new interfaces.
252
253 2005-02-04  Lluis Sanchez Gual <lluis@novell.com>
254
255         * Page.cs: Implemented support for cross page postback. Implemented
256         support for postback with options. Fixed several method and property
257         signatures for 2.0.
258         * PostBackOptions.cs: Added some TODOs.
259
260 2005-02-02  Lluis Sanchez Gual <lluis@novell.com>
261
262         * ParseChildrenAttribute.cs: Set the correct default value for the
263         childType property.
264
265 2005-01-28  Lluis Sanchez Gual <lluis@novell.com>
266
267         * ParseChildrenAttribute.cs: Added 2.0 property.
268         * Pair.cs, Triplet.cs: Make classes serializable and sealed in 2.0.
269         * Page.cs: Added support for control state.
270         * TemplateBuilder.cs: ContainerType should be internal.
271         * Control.cs: Added some new 2.0 methods.
272
273 2005-01-21  Lluis Sanchez Gual <lluis@novell.com>
274
275         * PageParser.cs: Read the MasterPageFile attribute.
276         * UserControlParser.cs: Not sealed any more since we need to inherit from
277         it. Added new constructor with an additional "type" parameter.
278         * MasterPageParser.cs: Parser for master pages.
279         * Page.cs: Added support for master pages.
280         * MasterPage.cs: Implemented.
281
282 2005-01-10  Lluis Sanchez Gual <lluis@novell.com>
283         
284         * TemplateBuilder.cs: Added a special constructor that takes an
285         attribute provider as parameter. The container type for the template
286         may be defined in a TemplateContainerAttribute.
287         * ControlBuilder.cs: Create the TemplateBuilder using that special
288         constructor.
289         * TemplateContainerAttribute.cs: Added 2.0 property and ctor.
290
291 2004-12-20 Lluis Sanchez Gual  <lluis@novell.com>
292
293         * IStyleSheet.cs: Added missing "using".
294         * Page.cs: Implemented Header property.
295         * CssStyleCollection.cs: Made BagToString method internal.
296         * RootBuilder.cs: Register HtmlHead control.
297         
298 2004-12-17 Lluis Sanchez Gual  <lluis@novell.com>
299
300         * CssStyleCollection.cs: Minor (!) fix.
301         * HtmlTextWriter.cs: Register names for new 2.0 styles.
302
303 2004-12-17 Lluis Sanchez Gual <lluis@novell.com>
304
305         * CssStyleCollection.cs: Make it work as a standalone collection.
306         * HtmlTextWriter.cs: Added static method for getting style names.
307
308 2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
309
310         * ControlCollection.cs: fix off-by-one and store a null at the end to
311         remove the reference to the removed control.
312
313 2004-12-10 Lluis Sanchez Gual <lluis@novell.com>
314
315         * ClientScriptManager.cs: Added GetScriptLiteral helper method.
316         
317 2004-12-02 Lluis Sanchez Gual <lluis@novell.com>
318
319         * Page.cs: Added support for callback events. Moved theform variable
320         outside the __doPostBack function, so it can be used by other
321         scripts.
322         * StateBag.cs: Implemented SetDirty().
323
324 2004-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
325
326         * Control.cs: when saving "Visible" into the ViewState, save the value
327         for this precise control, as using the Visible property might give us
328         Control's parent visibility. Fixes bug #69200.
329
330 2004-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
331
332         * Control.cs: fixed ResolveUrl for relative URLs when using cookie-less
333         sessions.
334
335         * System.Web.Util/UrlUtils.cs: made (Insert|Get|Remove)SessionId use
336         the appRoot + SessionID + vpath format.
337
338         Fixes the 3 issues reported in bug #66623.
339
340 2004-11-26 Lluis Sanchez Gual <lluis@novell.com>
341
342         * Page.cs: Moved code for managing client scripts to ClientScriptManager,
343         which is public in 2.0 and internal in 1.1.
344         * ClientScriptManager.cs: Implemented.
345
346 2004-11-25 Sanjay Gupta <gsanjay@novell.com>
347
348         * DataSourceView.cs: Removed extra method.
349
350 2004-11-24 Sanjay Gupta <gsanjay@novell.com>
351         
352         * DataSourveViewSelectCallback.cs: Corrected method signature.
353
354 2004-11-23 Lluis Sanchez Gual <lluis@novell.com>
355
356         * ControlBuilder.cs: Always check for the ParseChildrenAttribute,
357         even if the class doesn't implement IParserAccessor.
358         * WebResourceAttribute.cs: Allow multiple attributes of this type.
359
360 2004-11-15 Lluis Sanchez Gual <lluis@novell.com>
361
362         * DataSourceView.cs: Moved here implementation of DataSourceViewChanged 
363         from SqlDataSourceView.cs.
364
365 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
366
367         * Control.cs: unified a few bool fields into an int one.
368
369         * ControlCollection.cs: use an array internally instead of always
370         allocating an arraylist. Also added our own enumerator.
371         
372         * EmptyControlCollection.cs: there's no 'special' ctor now in the base
373         class.
374
375 2004-11-05 Sanjay Gupta <gsanjay@novell.com>
376
377         * DataSourceView.cs: Changes in access modifiers of methods.
378
379 2004-10-20 Sanjay Gupta <gsanjay@novell.com>
380
381         * DataSourceCapabilities.cs: Added Flags attribute.
382         * DataSourceSelectArguments.cs: Updated.
383         * DataSourveView.cs: Updated.
384
385 2004-10-19 Sanjay Gupta <gsanjay@novell.com>
386
387         * HierarchicalDataSourceView.cs: Corrected class definition and updated.
388
389 2004-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
390
391         * HierarchicalDataSourceView.cs: fix typo.
392
393 2004-10-18 Sanjay Gupta <gsanjay@novell.com>
394
395         * HierarchicalDataSourceView.cs: Updated.
396
397 2004-10-18 Sanjay Gupta <gsanjay@novell.com>
398
399         * DataSourceSelectArguments.cs: Initial implementation.
400
401 2004-10-12 Sanjay Gupta <gsanjay@novell.com>
402
403         * UrlPropertyAttribute.cs: Corrected implementation of Equals () method.
404
405 2004-10-12 Sanjay Gupta <gsanjay@novell.com>
406
407         * UrlTypes.cs: Updated.
408
409 2004-10-12 Sanjay Gupta <gsanjay@novell.com>
410
411         * UrlPropertyAttribute.cs: Added new file.
412
413 2004-10-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
414
415         * Control.cs: even if the control has no children the naming container
416         may contain the control we're looking for. Fixes bug #67304.
417
418 2004-09-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
419
420         * AspGenerator.cs: added OtherTags.
421
422 2004-09-24 Sanjay Gupta <gsanjay@novell.com>
423
424         * ControlValuePropertyAttribute.cs: Initial implementation.
425
426 2004-09-24 Sanjay Gupta <gsanjay@novell.com>
427
428         * IPaginationContainer.cs: Corrected name of class.
429
430 2004-09-24 Sanjay Gupta <gsanjay@novell.com>
431
432         * IDReferencePropertyAttribute.cs: Completed implementation.
433
434 2004-09-24 Sanjay Gupta <gsanjay@novell.com>
435
436         * ThemeableAttribute.cs:
437         * FilterableAttribute.cs: Code scrubbing and optimization.
438
439 2004-09-14 Sanjay Gupta <gsanjay@novell.com>
440
441         * ThemeableAttribute.cs: Completed implementation.
442
443 2004-09-14 Sanjay Gupta <gsanjay@novell.com>
444
445         * FilterableAttribute.cs: Completed implementation.
446
447 2004-09-14 Sanjay Gupta <gsanjay@novell.com>
448
449         * Control.cs: Added new attributes and a method.
450         * FilterableAttribute.cs: New attribute, initial implementation.
451         * ThemeableAttribute.cs: New attribute, initial implemenataion.
452
453 2004-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
454
455         * TemplateParser.cs: ensure bin directory exists before trying to access
456         it. Fixes bug #65446 (not closed yet due to dependencies).
457
458 2004-09-09 Sanjay Gupta <gsanjay@novell.com>
459
460         * Control.cs: Implemented methods of interface IExpressionAccessor.
461
462 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
463
464         * SimpleWebHandlerParser.cs: correctly cache Type instead of the
465         assembly for ashx/asmx. Otherwise we need to open the file and check
466         for the class name in there. Thanks to Ben for pointing this out.
467
468 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
469
470         * TemplateParser.cs: removed creation of StringWriter.  It's not used.
471         * Control.cs: don't create the EventHandlerList until requested.
472
473 2004-09-03 Sanjay Gupta <gsanjay@novell.com>
474         
475         * Control.cs: Added new interfaces implemented in .Net 2.0. 
476         * ExpressionBinding.cs: Added new class.
477         * ExpressionBindingCollection.cs: Added new class.
478         
479 2004-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
480
481         * LiteralControl.cs: stylized. This control has EnableViewState disabled
482         by default and doesn't get an automatic ID. When text is null -> "".
483
484 2004-08-31 Sanjay Gupta <gsanjay@novell.com>
485         
486         * ControlSkinProc.cs:
487         * DataSourceViewOperationCallback.cs:
488         * DataSourceViewSelectCallback.cs:
489         * ExtractTemplateValuesMethod.cs: Explicit modifier "sealed" not 
490         required in definition as delegates by default are sealed.
491         
492 2004-08-31 Sanjay Gupta <gsanjay@novell.com>
493
494         * IDReferencePropertyAttribute.cs: Corrected and changed from interface
495         to class.
496         * IMobileTextWriter.cs: Corrected method signatures.
497
498 2004-08-09 Sanjay Gupta <gsanjay@novell.com>
499
500         * ControlSkinProc.cs:
501         * DataSourceViewOperationCallback.cs:
502         * DataSourceViewSelectCallback.cs:
503         * ExtractTemplateValuesMethod.cs: Added new delegates.
504
505 2004-08-06 Sanjay Gupta <gsanjay@novell.com>
506
507         * IBindableTemplate.cs:
508         * ICallbackEventHandler.cs:
509         * IControlBuilderAccessor.cs:
510         * IControlDesignerAccessor.cs:
511         * IControlTypeFilter.cs:
512         * IDataItemContainer.cs:
513         * IDataSourceViewSchemaAccessor.cs:
514         * IDReferencePropertyAttribute.cs:
515         * IExpressionsAccessor.cs:
516         * IFilterResolutionService.cs:
517         * IItemPaginationInfo.cs:
518         * IMobileTextWriter.cs:
519         * IPageHeader.cs:
520         * IPaginationContainer.cs:
521         * IPaginationInfo.cs:
522         * IResourceResolutionService.cs:
523         * IResourceUrlGenerator.cs:
524         * IStateFormatter.cs:
525         * IStyleSheet.cs:
526         * IThemeResolutionService.cs:
527         * IUrlResolutionService.cs:
528         * IUserControlTypeResolutionService.cs: Added new files for Interfaces.
529
530 2004-08-05 Sanjay Gupta <gsanjay@novell.com>
531
532         * PostBackOptions.cs: Added new file and implemented the class.
533
534 2004-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
535
536         * HtmlTextWriterTag.cs: readded author name.
537
538 2004-08-04 Sanjay Gupta <gsanjay@novell.com>
539
540         * HtmlTextWriterAttribute.cs:
541         * HtmlTextWriterStyle.cs: Added .Net 2.0 enumerations.
542         * CompilationMode.cs:
543         * ConflictOptions.cs:
544         * DataSourceCacheExpiry.cs:
545         * DataSourceCapabilities.cs:
546         * DataSourceOperation.cs:
547         * TemplateContentType.cs:
548         * TemplateInstance.cs:
549         * UrlTypes.cs:
550         * VerificationConditionalOperator.cs:
551         * VerificationReportLevel.cs:
552         * VerificationRule.cs:
553         * XhtmlMobileDocType.cs: Added enumerations.
554
555 2004-07-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
556
557         * Control.cs: style. Reverted previous patch modification of
558         TemplateSourceDirectory (failed when the control is reparented). Use
559         HasControls() and Controls all over instead of _controls, as Controls
560         property and HasControls() might be overriden.
561
562 2004-07-27 Alon Gazit <along@mainsoft.com>
563
564         * Control.cs: Changed the implementation of TemplateSourceDirectory
565         and GetDefaultName(). replaced foreach statements with for statements, 
566         in order to improve performence.
567
568 2004-07-27 Alon Gazit <along@mainsoft.com>
569
570         * Page.cs: changed the implementation of GetViewStateString().
571         if the view state object is null there is no need to perform 
572         Serialization.
573         
574 2004-07-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
575
576         * TemplateControl.cs: don't include private methods of base classes when
577         auto-attaching events. Fixes bug 61569.
578
579 2004-07-14 Alon Gazit <along@mainsoft.com>
580
581         * HtmlTextWriter.cs: changed the Hashtables to case insensitive.         
582 2004-07-08 Pablo Baena <pbaena@gmail.com>
583
584         * Page.cs: added workaround for __doPostBack script on Netscape 4.xx
585         
586 2004-07-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
587
588         * Page.cs: added additional checks for saving/displaying trace data.
589
590         * PageParser.cs: removed checks for trace enabled in configuration
591         files.
592
593 2004-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
594
595         * ControlCollection.cs: when clearing the control collection, tell the
596         owners about the removal. Fixes bug #60800.
597
598 2004-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
599
600         * Page.cs: don't nullify _context after processing the request as there
601         are events not triggered yet. Fixes bug #60726.
602
603 2004-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
604
605         * HtmlTextWriter.cs: only create a closing tag for unknown tags. Fixes
606         bug #60681.
607
608 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
609
610         * PageParser.cs:
611         * UserControlParser.cs: set the page/user control base type even when no
612         default directive provided. Fixes bug #60572.
613
614 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
615
616         * PageParser.cs: use default trace settings from web.config and check
617         if trace is only requested for local connections. Fixes bug #60180.
618
619 2004-06-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
620
621         * SimpleWebHandlerParser.cs: implemented GetCompiledTypeFromCache. When 
622         we read the default directive, check the cache for the Type and if
623         present, don't keep reading and store the type found.
624
625         * WebHandlerParser.cs:
626         * WebServiceParser.cs: try GetCompiledTypeFromCache before actually
627         compiling.
628
629 2004-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
630
631         * Control.cs: properly fixed bug #59794.
632
633 2004-06-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
634
635         * Control.cs:
636         (ResolveUrl): fixed typo when dealing with relative urls. Closes bug
637         #59794.
638
639 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
640
641         * SimpleWebHandlerParser.cs:
642         * TemplateParser.cs: pass the language when compiling from a file.
643
644 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
645
646         * SimpleWebHandlerParser.cs: if we have a global.asax, move its
647         reference to the end to help mcs loading the assemblies. Fixes bug
648         #58768.
649
650         * TemplateParser.cs: same as above. Removed some kludges to workaround
651         loading assemblies from bin path that are now in the runtime. Don't
652         load the assemblies in bin if not needed, but still reference them
653         when compiling.
654
655 2004-06-07  Alon Gazit <along@mainsoft.com>
656         * Page.cs: Changed Page.ProcessPostData().
657         After the change ,the state of controls that aren't visible is saved 
658         during a postback.
659         
660 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
661
662         * Page.cs: removed obsolete MonoTODO from RegisterOnSubmitStatement.
663
664 2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
665
666         * Page.cs: IsPostBack also returns true when method is GET and we have
667         viewstate information in the query string. Fixes bug #58151.
668
669 2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
670
671         * Page.cs: removed obsolete TODO. Only check if Trace is enabled, not
672         HttpRutime.TraceManager.
673
674         * PageParser.cs: for 'trace' we have 2 variables now.  Added support
675         for 'buffer' attribute.
676
677 2004-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
678
679         * Page.cs: implemented ClientTarget.
680         * PageParser.cs: support for clientTarget and check for validity.
681
682 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
683
684         * Control.cs:
685         * Html32TextWriter.cs:
686         * HtmlTextWriter.cs:
687         * SimpleWebHandlerParser.cs:
688         * TemplateControl.cs: Added protected missing members and attributes.
689
690 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
691
692         * ObjectStateFormatter.cs: use ObjectFormatter methods instead of
693         calling a protected method of another object.
694
695 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
696
697         * ObjectStateFormatter.cs : csc build fix. Protected Read()/Write()
698           (of other objects) are called in TypeConverterFormatter.
699
700 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
701
702         * ObjectStateFormatter.cs: before choosing the binary formatter, check
703         if the object type has a TypeConverter that can convert to/from string.
704         Fixes bug #59495.
705
706         * Page.cs: call GetViewStateString from outside the WriteLine. This
707         allows writing to the Response when getting the string without breaking
708         the HTML generated.
709
710 2004-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
711
712         * HtmlTextWriter.cs: render end tag for unknown tags.
713         Patch frmo Markus Krutner. Fixes bug #59466.
714
715 2004-05-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
716
717         * Page.cs: call DeterminePostBackMode only once per request. Patch by
718         Evain Jb.
719
720 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
721
722         * Html32TextWriter.cs: stub contributed by Matthijs ter Woord
723         [meddochat].
724
725         * ObjectTagBuilder.cs: remove the HasBody override as MS does not have
726         that.
727
728 2004-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
729
730         * SimpleWebHandlerParser.cs:
731         * TemplateParser.cs: for the assembly names given in the 'assembly'
732         attribute, use LoadWithPartialName instead of Load.
733 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
734
735         * Page.cs: return HttpContext.Current if _context has not yet been
736         assigned to. Fixes bug #55245.
737
738 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
739
740         * TemplateParser.cs: don't add import statement or assemblies from
741         global.asax to every file. Fixes bug #55496.
742
743 2004-03-09  Juraj Skripsky <juraj@hotfeet.ch>
744
745         * DataBinder.cs: allow unquoted string expressions (e.g. "[test]") and
746         handle single quotes and a few corner cases correctly (see test cases).
747
748 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
749
750         * TemplateControl.cs: fixed typos and added new method names to the set
751         of page events.
752
753 2004-02-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
754
755         * ControlBuilder.cs: added SetTagName().
756
757         * ObjectTagBuilder.cs: use SetTagName so that we can properly close
758         <object> builders if the closing tag is provided.
759
760 2004-02-16  Jackson Harper <jackson@ximian.com>
761
762         * Page.cs: Set cacheability for Location.DownStream.
763         
764 2004-02-10  Jackson Harper <jackson@ximian.com>
765
766         * TemplateParser.cs: Use full path if the assembly is in the
767         private bin directory. Patch by Gonzalo Paniagua Javier.
768         
769 2004-02-09  Jackson Harper <jackson@ximian.com>
770
771         * Page.cs: Set cacheability for server side caching.
772         
773 2004-01-30  Jackson Harper <jackson@ximian.com>
774
775         * Control.cs: Ensure that dynamically loaded controls are
776         initialized.
777         
778 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
779
780         * ApplicationFileParser.cs: check for error in directives. Use
781         GlobalAsaxCompiler.CompileApplicationType for compiling.
782         
783         * ObjectTagBuilder.cs: load the Type and check for errors.
784
785         * TemplateParser.cs: add assemblies and imports from global.asax.
786
787         Now we properly create accessors for session and application objects in
788         the application itself, pages and controls. First step for fixing
789         bug #53387.
790
791 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
792
793         * TemplateControl.cs: small speedup for WireUpautomaticEvents. Thanks
794         to Eric Lindvall for pointing this out.
795
796 2004-01-15  Jackson Harper <jackson@ximian.com>
797
798         * TemplateParser.cs: Detect if we are parsing a control or page
799         properly.
800         * Page.cs: vary by params and vary by headers can be null now.
801         
802 2004-01-15  Martin Willemoes Hansen  <mwh@sysrq.dk>
803
804         * HtmlTextWriter.cs: Fixed OutputTab routine to generate correct
805         indention.
806
807 2004-01-14  Jackson Harper <jackson@ximian.com>
808
809         * Page.cs: If we have a postback that wasn't sent through a
810         postback script (ie user hit submit on a input type=submit) call
811         Validate so page validation occurs. This fixes bug #52770.
812         
813 2004-01-14  Jackson Harper <jackson@ximian.com>
814
815         * Page.cs: Don't tell the response to cache anymore. This is done
816         when the cacheability is modified by a callback. Set the cache's
817         duration.
818         
819 2004-01-14  Jackson Harper <jackson@ximian.com>
820
821         * TemplateParser.cs: If varybyparam is set to "none" make it null
822         so we dont get a param named null in the outputcache key.
823         
824 2004-01-14  Jackson Harper <jackson@ximian.com>
825
826         * BasePartialCachingControl.cs: Use varyby attributes in key
827         generation.
828         
829 2004-01-14  Jackson Harper <jackson@ximian.com>
830
831         * TemplateParser.cs: Add all the outputcache attribute error
832         messages.
833         
834 2004-01-13  Jackson Harper <jackson@ximian.com>
835
836         * TemplateParser.cs: Add VaryByControls and Shared output cache
837         properties. These are not assigned yet.
838         * TemplateControlParser.cs: Do not ignore the OutputCache
839         attribute.
840         * BasePartialCachingControl.cs: Initial implementation. Keys are
841         still not created properly.
842         * StaticPartialCachingControl.cs: Assign properties in base class,
843         implement CreateControl.
844         
845 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
846
847         * ApplicationFileParser.cs: adde DefaultBaseTypeName property.
848
849         * PageParser.cs: support validateRequest.
850
851         * TemplateControlParser.cs: get default values from system.web/pages
852         section.
853
854         * TemplateParser.cs: added separate method for changing base type
855         (Inherits or system.web/pages).
856         
857         * UserControlParser.cs: support system.web/pages defined base type.
858
859 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
860
861         * UserControl.cs: Added missing attribute, implemented method
862         * Page.cs: Added missing attribute, implemented method
863
864 2004-01-10  Jackson Harper <jackson@ximian.com>
865
866         * Page.cs: Handle trace being enabled in the config file.
867         
868 2004-01-10  Jackson Harper <jackson@ximian.com>
869
870         * Page.cs: Save trace data before rendering it.
871         * System.Web.dll.sources: Add TraceData.cs
872         
873 2004-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
874
875         * Page.cs: removed a couple of MonoTODO on methods we're not gonna
876         implement. Applied patch from Jan Jaros (mono-bug@jerryweb.info) to
877         ensure that Unload event is raised. Fixes bug #52555.
878
879 2004-01-02  Zoltan Varga  <vargaz@freemail.hu>
880
881         * KeyedList.cs: 'private' is not allowed on explicit interface 
882         implementations. Fixes 1.2 build.
883
884 2003-12-31  Jackson Harper <jackson@ximian.com>
885
886         * TemplateControlParser.cs: When registering tag prefixs make sure
887         the file exists and throw the correct error if it does not.
888         
889 2003-12-25  Jackson Harper <jackson@ximian.com>
890
891         * Page.cs: Throw error if the session is accessed when sessions
892         are disabled.
893         
894 2003-12-18  Jackson Harper <jackson@ximian.com>
895
896         * Page.cs: Write Trace info.
897         
898 2003-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
899
900         * LosFormatter.cs: new ctor for 1.1. The default ctor is public.
901         * Page.cs: added ViewStateUserKey and made RegisterclientScriptFile
902         internal.
903         * PageParser.cs: the ctor is public.
904         * PartialCachingAttribute.cs: added new ctor and Shared property.
905
906 2003-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
907
908         * Page.cs: assign the ErrorPage to the context if we get an exception
909         when processing the page which only calls Unload.
910
911         * PageParser.cs: handle ErrorPage.
912
913 2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
914
915         * ObjectStateFormatter.cs: added formatters for Unit and FontUnit, which
916         are not [Serializable]. Fixes bug #52244.
917
918 2003-12-16  Jackson Harper <jackson@ximian.com>
919
920         * Page.cs: Render trace data when tracing is enabled.
921         
922 2003-12-15  Jackson Harper <jackson@ximian.com>
923
924         * PageParser.cs: Add Trace and Trace mode attributes.
925         
926 2003-12-15  Jackson Harper <jackson@ximian.com>
927
928         * Page.cs: Use the context trace object.
929         
930 2003-12-14  Alon Gazit <along@mainsoft.com>
931         * AttributeCollection.cs: Changed AttributeCollection.Render().
932         After the change attributes ,that their value is null, aren't 
933         rendered.
934
935 2003-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
936
937         * Control.cs: remove a few dangling ^M, don't set values for fields
938         that has the default value. If Visible is modified and we're tracking
939         viewstate, save and restore it. Fixes bug #48689.
940
941 2003-12-11  Jackson Harper <jackson@ximian.com>
942
943         * Control.cs: Give null for the ID if it hasn't been explicitly
944         set. This fixes bug #51520.
945         
946 2003-12-08  Jackson Harper <jackson@ximian.com>
947
948         * PageParser.cs: Ignore the SmartNavigation attribute for now.
949         
950 2003-12-05  Jackson Harper <jackson@ximian.com>
951
952         * DataBinder.cs (GetIndexedPropertyValue): Check if container is
953         an IList and use a cast instead of reflection to retrieve the item
954         if it is. Fixes bug #51759.
955         
956 2003-12-04  Alon Gazit <along@mainsoft.com>
957         * Page.cs: Changed Page.ID so it will call Control.ID.
958         Fixed Bug 51682.          
959
960 2003-12-02  Jackson Harper <jackson@ximian.com>
961
962         * Page.cs: Implemented registered array declarations. Patch by
963         Benjamin Jemlich <pcgod@gmx.net>
964         
965 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
966
967         * TemplateParser.cs: basic check for 'classname' attribute and added
968         patch by pcgod@gmx.net for bug #51568, which fixes automatic class
969         names for pages starting with a number.
970
971 2003-11-30 Ben Maurer  <bmaurer@users.sourceforge.net>
972
973         * LosFormatter.cs: Use ObjectStateFormatter. Pretty big size
974         reduction.
975
976         * ObjectStateFormatter.cs: Comment out tracing.
977
978 2003-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
979
980         * Page.cs: fixed UICulture, LCID and Culture. Set the thread
981         [UI]Culture before processing the request.
982
983         * PageParser.cs: read Culture, UICulture and LCID attributes. Added
984         properties for these. Partially contributed by Mohammad Damt.
985
986         Fixes bug #51511.
987
988 2003-11-27  Jackson Harper <jackson@ximian.com>
989
990         * TemplateParser.cs: Ignore aspCompat attribute. This fixes bug
991         51434.
992         
993 2003-11-22 Ben Maurer  <bmaurer@users.sourceforge.net>
994
995         * ObjectStateFormatter.cs: Fix bug when reading small ints.
996         Add some tracing so we can see what is going on.
997
998 2003-11-21  Jackson Harper <jackson@ximian.com>
999
1000         * Page.cs: Set vary by params when cache location is Server.
1001         
1002 2003-11-21 Ben Maurer  <bmaurer@users.sourceforge.net>
1003
1004         * ObjectStateFormatter.cs: v2 file. In v1.x this will be
1005         internal as LosFormatter will eventually use it to save
1006         the view state.
1007
1008 2003-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1009
1010         * PersistChildrenAttribute.cs:
1011         * PersistenceModeAttribute.cs: implemented.
1012
1013         * TODO: Removed file.
1014         * OutputCacheLocation.cs:
1015         * TemplateControlParser.cs:
1016         * HtmlInputFile.cs: class status based fixes.
1017
1018 2003-11-19  Jackson Harper <jackson@ximian.com>
1019
1020         * Page.cs: Always set the cache expire time. Tell the response to
1021         cache itself for server side cached pages.
1022         
1023 2003-11-19  Jackson Harper <jackson@ximian.com>
1024
1025         * Control.cs: Remove ResolveBaseUrl. ResolveUrl does the same
1026         thing, some corner cases still need work though. Was this the
1027         shortest lived method in the history of mono?
1028         
1029 2003-11-19  Jackson Harper <jackson@ximian.com>
1030
1031         * Control.cs: New method for resolving urls that use ~/ to denote
1032         the applications base directory.
1033         
1034 2003-11-19  Jackson Harper <jackson@ximian.com>
1035
1036         * TemplateParser.cs: Fix typo in error message.
1037                 
1038 2003-11-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1039
1040         * TemplateControlParser.cs: support @Reference. Fixes bug #49572. Thanks
1041         to Sanjay Gupta.
1042
1043 2003-11-19  Todd Berman  <tberman@gentoo.org>
1044
1045         * KeyedList.cs:
1046         * KeyedListEnumerator.cs: New v2 implementations.
1047
1048 2003-11-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1049
1050         * StateManagedCollection.cs: Implement.
1051
1052 2003-11-13  Jackson Harper  <jackson@ximian.com>
1053
1054         * Page.cs: Initial implementation of InitOutputCache.
1055         * TemplateParser.cs: Page OutputCache options
1056         
1057 2003-11-09 Ben Maurer  <bmaurer@users.sourceforge.net>
1058
1059         * HierarchicalDataSourceControl.cs: Implement.
1060
1061 2003-11-09 Ben Maurer  <bmaurer@users.sourceforge.net>
1062
1063         * XPathBinder.cs: Implemented.
1064
1065 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
1066
1067         * DataSourceView.cs:
1068         * IDataSource.cs:
1069         * ListSourceHelper.cs:
1070         * DataSourceControl.cs:
1071         * HierarchicalDataSourceView.cs:
1072         * IHierarchicalDataSource.cs: Move v2 stuff.
1073
1074 2003-11-07 Jackson Harper <jackson@ximian.com>
1075
1076         * Control.cs (ResolveUrl): Special case for urls that consist of
1077         only a page anchor. ie <a href="#top">. This fixes bug #50165.
1078         
1079 2003-11-07 Ben Maurer  <bmaurer@users.sourceforge.net>
1080
1081         * IHierarchicalEnumerable.cs:
1082         * IHierarchyData.cs:
1083         * INavigateUIData.cs: New v2 interfaces.
1084         
1085 2003-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1086
1087         * Page.cs: patch by Alon Gazit <along@mainsoft.com> to remove extra
1088         space in generated javascript.
1089
1090 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1091
1092         * LosFormatter.cs: encoding updates. 
1093         * Page.cs: implemented CodePage and ContentType.
1094         * PageParser.cs: handle CodePage, ContentEncoding and ResponseEncoding
1095         attributes.
1096
1097 2003-11-04 Ben Maurer  <bmaurer@users.sourceforge.net>
1098
1099         * Control.cs (GetWebResourceUrl): new v2 function
1100         * Page.cs (GetWebResourceUrl): ditto.
1101         make the JS we generate work with moz if the form is not a child
1102         of document.
1103         * WebResourceAttribute.cs: Added, new v2 attribute.
1104
1105 2003-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1106
1107         * DesignTimeTemplateParser.cs: added FIXME related to PageParser.
1108
1109         * PageParser.cs: initialize the parser in the constructor, not just
1110         before compiling and reference the application assembly.
1111
1112         * SimpleWebHandlerParser.cs: reference the assembly that contains the
1113         application Type.
1114
1115         * TemplateControl.cs:
1116         * TemplateControlParser.cs: fix BenM #1 bug. Now we pass correct virtual
1117         path and physical path when compiling a user control.
1118         
1119         * TemplateParser.cs: new AddApplicationAssembly ().
1120         * UserControlParser.cs: now we get valid values in the ctor.
1121
1122         Referencing the application assembly fixes bug #49652.
1123         
1124
1125 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1126
1127         * TemplateControl.cs: moved NoParamsInvoker class to its own file.
1128
1129 2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1130
1131         * BaseParser.cs: added CompilationConfig property.
1132
1133         * TemplateParser.cs:
1134         * SimpleWebHandlerParser.cs: added CompilationConfig property.
1135         Don't hardcode assembly names any more, assemblies in bin are added
1136         depending on the configuration. The default language is also taken
1137         from the configuration.
1138
1139 2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1140
1141         * LosFormatter.cs: fixed bug #49604. Patch by yaronsh@mainsoft.com.
1142
1143 2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1144
1145         * Control.cs: removed some debug lines.
1146         * Page.cs: implemented RegisterOnSubmitStatement
1147         * TemplateControl.cs: fixed wire up for methods with no parameters.
1148
1149 2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1150
1151         * PageParser.cs: ignore ValidateRequest by now.
1152
1153 2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1154
1155         * System.Web.UI/TemplateControl.cs: support for wiring up events without
1156         parameters.
1157
1158 2003-10-08  Pedro Martnez Juli  <yoros@wanadoo.es>
1159
1160         * PageParser.cs: drop some useless code.
1161
1162 2002-10-29  Gaurav Vaish <gvaish_mono AT lycos.com>
1163
1164         * Utils.cs   : GetScriptLocation(HttpContext) - Partial Implementation.
1165
1166 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1167
1168         * System.Web.UI/PageParser.cs:
1169         * System.Web.UI/TemplateControlParser.cs: honour the input file given
1170         as argument.
1171
1172 2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1173
1174         * Control.cs:
1175         (ClearChildViewState): doh! Don't clear control viewstate but the
1176         viewstate of possible children.
1177         (LoadViewStateRecursive): load viewstate even when control is not
1178         visible.
1179         Fixes bug #49024.
1180         The rest are just dangling ^M removed.
1181
1182         * DataBoundLiteralControl.cs:
1183         (LoadViewState): we get an object [], not a string [].
1184
1185 2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1186
1187         * Control.cs: implemented ClearChildViewState ().
1188
1189 2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1190
1191         * Page.cs: store unique IDs for controls requiring postback. Fixes bug
1192         #47985.
1193
1194 2003-09-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1195
1196         * SimpleWebHandlerParser.cs: add the ashx/asmx file itself to the
1197         dependencies so that it's recompiled when changed.
1198
1199 2003-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1200
1201         * LosFormatter.cs: fixed Deserialize for empty viewstate.
1202
1203 2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1204
1205         * Page.cs: check if controls that require postback have
1206         been changed by an event and register them to be notified of data
1207         changed event.
1208
1209 2003-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1210
1211         * Control.cs: patch by yaronshkop@hotmail.com (Yaron Shkop) that fixes
1212         bug #47866.
1213
1214 2003-08-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1215
1216         * LosFormatter.cs: handle Unit and FonrUnit as special cases as they
1217         are not serializable. Fixes bug #47784.
1218
1219 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1220
1221         * Control.cs: index the viewstates saved by the control position, not
1222         the control name. Fixes bug #47697.
1223
1224 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1225
1226         * ControlCollection.cs:
1227         * EmptyControlCollection.cs: create a minimum ArrayList for this.
1228
1229         * BaseParser.cs: added setter for BaseVirtualDir.
1230
1231         * Page.cs: fixed message when restoring view state fails.
1232         * UserControlParser.cs: set the BaseVirtualDirectory to handle the case
1233         when a relative path to the control is given. Fixes bug #47685.
1234
1235 2003-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1236
1237         * Control.cs: when we load the viewstate for a control that has children
1238         viewstates and the child is not found, keep its viewstate around and
1239         wait until the child is added to load the viewstate. Fixes bug #47697.
1240
1241 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1242
1243         * TemplateControl.cs: more Delegate.CreateDelegate fixes.
1244
1245 2003-08-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1246
1247         * PartialCachingControl.cs: is not abstract
1248
1249 2003-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1250
1251         * SimpleHandlerFactory.cs: implemented GetHandler.
1252         * WebHandlerParser.cs: new file that parses .ashx files.
1253
1254 2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1255
1256         * PersistenceModeAttribute.cs: Fixed wrong AttributeUsage
1257
1258 2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1259
1260         * UserControl.cs: Added attribute
1261         * BasePartialCachingControl.cs: New class and paritally implemented
1262         * DesignerDataBoundLiteralControl.cs: New class and implemented
1263         * DesignTimeTemplateParser.cs:
1264         * PartialCachingControl.cs:
1265         * StaticPartialCachingControl.cs: New class and paritally implemented
1266
1267 2003-07-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1268
1269         * ApplicationFileParser.cs: Fixed signature
1270         * DesignTimeParseData.cs: Added missing properties, implemented
1271         * Page.cs: Added attributes
1272         * PageParser.cs:
1273         * TemplateControlParser.cs:
1274         * TemplateParser.cs:
1275         * UserControlParser.cs: Fixed signature
1276
1277 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1278
1279         * HtmlControlPersistableAttribute.cs: Added
1280         * IgnoreUnknownContentAttribute.cs: Added
1281
1282 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1283
1284         * IUserControlDesignerAccessor.cs: Added and implemented
1285         * Control.cs: Missing member added, added all attributes
1286         * Page.cs: Added attributes, fixed signature
1287         * TemplateControl.cs: Fixed signature, added all attributes
1288         * UserControl.cs: Added all attributes, added and implemented missing interface
1289         
1290 2003-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1291
1292         * ControlCollection.cs: fixed bug #46472.
1293
1294 2003-07-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1295
1296         * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
1297
1298 2003-07-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1299
1300         * SimpleWebHandlerParser.cs: updated to new compilation interface.
1301
1302         * TemplateParser.cs: use the new parameter when compiling.  
1303
1304 2003-07-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1305
1306         * Page.cs: also keep the value for the second try on handling postback
1307         events.
1308
1309 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1310
1311         * BaseParser.cs: fixed MapPath for non-rooted files.
1312         * PageParser.cs: don't pass a non-virtual file around.
1313         * TemplateControlParser.cs: InputFile uses MapPath now.  Take care of
1314         the exception teh may be throw by MapPath on an invalid path.
1315
1316         * TemplateParser.cs: removed unused method.
1317         * UserControlParser.cs: modified inputfile. The result is the same, but 
1318         this one is better.
1319
1320 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1321
1322         * RootBuilder.cs: throw exception when the tagprefix is not valid or
1323         not found.
1324
1325 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1326
1327         * TemplateControlParser.cs: return after processing @Register.
1328
1329 2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1330
1331         * TemplateParser.cs: Added support for server side includes.
1332
1333 2003-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1334
1335         * TemplateControl.cs: fixed the flags used to find the methods that
1336         are automatically hooked up on events.
1337
1338         * TemplateParser.cs: don't compile a source file directly.  Use the
1339         cache instead.
1340
1341 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1342
1343         * BaseParser.cs: Location property is now here. Added a couple of
1344         convenience methods to throw a ParseException.
1345
1346         * TemplateParser.cs:
1347         * TemplateControlParser.cs:
1348         * PageParser.cs: throw ParseException where appropiate.
1349
1350 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1351
1352         * ApplicationFileParser.cs: use the generator to actually parse the
1353         file.
1354
1355         * ControlBuilder.cs: small fix in NamingContainerType because
1356         TemplateBuilders have a null ControlType. When a control is appended
1357         to a parent, assign the child's parent.
1358
1359         * UserControlParser.cs: fixed the value of InputFile.
1360
1361 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1362
1363         * ApplicationFileParser.cs: store the Context and override
1364         BaseVirtualDir so that it's the application path.
1365
1366         * BaseParser.cs: removed CurrentVirtualPath property.
1367
1368         * TemplateControlParser.cs: use BaseVirtualDir.
1369
1370         * UserControlParser.cs: removed CurrentVirtualPath.
1371
1372 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1373
1374         * TemplateParser.cs: always reference all the assemblies in bin
1375         directory.
1376
1377 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1378
1379         * ApplicationFileParser.cs: it works now. Prior to these changes, we
1380         were using the compiler directly.
1381
1382         * BaseParser.cs: added some useful properties and methods.
1383
1384         * CodeBuilder.cs: use ILocation.
1385         * CodeRenderBuilder.cs: use ILocation.
1386         * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
1387
1388         * ControlBuilder.cs: made it useful.
1389
1390         * DataBindingBuilder.cs: the control type for data bound text is
1391         DataBoundLiteralControl now.
1392
1393         * ObjectTagBuilder.cs: store some object tag attributes.
1394
1395         * PageParser.cs: handle page-only directives.
1396
1397         * RootBuilder.cs: bah.
1398         * SimpleWebHandlerParser.cs: made it dummy.
1399         * TemplateControl.cs: Modified file.
1400
1401         * TemplateControlParser.cs: handle directives that are common to pages
1402         and user controls.
1403
1404         * TemplateParser.cs: utility methods and handling of directives that
1405         are common to app, page and user controls.
1406
1407         * UserControl.cs: added ControlBuilderAttribute.
1408
1409         * UserControlControlBuilder.cs: builder for user controls.
1410         * UserControlParser.cs: use the new interfaces.
1411
1412 2003-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1413
1414         * ControlBuilder.cs: line and fileName are protected now.
1415
1416         * CodeBuilder.cs: base class for the next 2 files.
1417         * CodeRenderBuilder.cs: builder for code render.
1418         * DataBindingBuilder.cs: builder for data binding.
1419
1420 2003-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1421
1422         * ITagNameToTypeMapper.cs: made it internal.
1423
1424         * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
1425         * ObjectTag.cs:
1426         * RootBuilder.cs: initial builder.
1427
1428 2003-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1429
1430         * CollectionBuilder.cs:
1431         * TemplateBuilder.cs: new classes derived from ControlBuilder that
1432         represent a property or a ITemplate.
1433         
1434         * ControlBuilder.cs: implemented all the missing bits.
1435         * TemplateParser.cs: added mapping from tag name to Type feature.
1436
1437 2003-02-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1438
1439         * Control.cs: have i definitely fixed naming container stuff this time?
1440
1441         * LosFormatter.cs: activated binary serialization code.
1442
1443 2003-02-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1444
1445         * Control.cs:
1446         (AddedControl): fixed default id assignation when the sequence of
1447         AddedControl until it's included in the page or one of its controls
1448         does not pass through a naming container.
1449
1450 2003-02-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1451
1452         * Control.cs: give different default names depending on the place where
1453         it is assigned. Implemented ResolveURl (no more ~ rendered in
1454         attributes!).
1455
1456 2003-02-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1457
1458         * Control.cs: when adding a control, assign default names to th
1459         children that don't have one.
1460
1461 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1462
1463         * SimpleWebHandlerParser.cs: modified to use the new parser interface.
1464
1465 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1466
1467         * Control.cs: some more tweaks to naming containers stuff.
1468         * DataBinder.cs: don't throw exception if the container is null.
1469
1470         * Page.cs: now we can render client scripts, startup scripts and hidden
1471         fields. Only render __VIEWSTATE if there is someone that will take care
1472         of it.
1473         (RaisePostBackEvents): first try the last one that required raise event,
1474         then try __EVENTTARGET.
1475
1476 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1477
1478         * Control.cs: fixes in UniqueID, FindControl, AddedControl,
1479         UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
1480         FindControl work with NamingContainers.
1481         
1482         * ControlCollection.cs: notify the parent when clearing the collection.
1483
1484         * LosFormatter.cs: Added debugging output and generate a valid
1485         viewstate even for unknown types.
1486
1487         * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
1488         viewstate.
1489
1490 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1491
1492         * Page.cs: make it fire the LoadData related events also for controls
1493         such as ImageButton, whose variable(s) in the query string are of the
1494         form ctrl_name.x and only fire them once per control.
1495
1496 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1497
1498         * DataBinder.cs:
1499         (GetPropertyValue): don't try to get the property as indexed
1500
1501 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1502
1503         * DataBinder.cs: use TypeDescriptor to get the properties and their
1504         values.
1505
1506 2003-01-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1507
1508         * Control.cs:
1509         (AddedControl): take the children to the same state of the parent.
1510         (InitRecursive): set the page of the children.
1511
1512         * Page.cs: removed one line (it's done a few lines above).
1513
1514         * UserControl.cs:
1515         (OnInit): always call InitializeAsUserControl
1516         (InitializeAsUserControl): sets the page for the control.
1517
1518 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1519
1520         * Control.cs: fixed bug #36037.
1521
1522 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1523
1524         * BaseParser.cs: a couple of path fixes to make it work
1525         when the page is not in the root directory.
1526
1527 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1528
1529         * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
1530         reporting the bug.
1531
1532 2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1533
1534         * BaseParser.cs: use MapPath and context to locate files.
1535         * Control.cs: implemented MapPathSecure.
1536         * TemplateControl.cs: use UrlUtils to generate the path.
1537         * TemplateControlParser.cs: use the context and MapPath.
1538         * UserControl.cs: implemented MapPath.
1539         * UserControlParser.cs: added context parameter to constructor.
1540
1541 2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1542
1543         * Control.cs: implemented MapPathSecure.
1544         * Page.cs: fixed Server property.
1545
1546 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1547
1548         * DataBinder.cs: try the indexer if the property is not found in
1549         GetPropertyValue ().
1550
1551 2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1552
1553         * Control.cs: added AutoEventWireup internal property.
1554
1555         * Page.cs: removed page events wire up from here.
1556
1557         * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
1558         and user controls events.
1559
1560         * TemplateControlParser.cs: process the options that are applicable
1561         once we have the instance of the control.
1562
1563         * TemplateParser.cs: also stores the options.
1564
1565         * UserControl.cs: hook up events before initializing the control.
1566
1567
1568 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1569
1570         * Control.cs: new method to set bindingContainer value.
1571         * TemplateControl.cs: added controls are not binding containers.
1572
1573 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1574
1575         * Control.cs: implemented TemplateSourceDirectory.
1576         * TemplateControl.cs: implemented LoadControl and LoadTemplate.
1577
1578 2002-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1579
1580         * UserControl.cs: fixed SetAttribute.
1581         * UserControlParser.cs: set the correct base type.
1582
1583 2002-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1584
1585         * TemplateParser.cs: fixed BaseType.
1586         * UserControlParser.cs: helper class to compile user controls.
1587
1588 2002-11-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1589
1590         * LosFormatter.cs: added DateTime to special types.
1591
1592 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1593
1594         * LosFormatter.cs: added array serialization support. Disabled binary
1595         serialization and add some debugging code.
1596
1597         * StateBag.cs: the length of the list of value can be less than the
1598         length if the list of keys when remaining values are null.
1599
1600 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1601
1602         * Page.cs: return something useful in GetPostBackClientEvent.
1603
1604 2002-11-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1605
1606         * Page.cs: implemented FileDependecies and made it protected.
1607
1608 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1609
1610         * Control.cs: save control names instead of the controls
1611         themselves to the ViewState.
1612
1613         * LosFormatter.cs: added support for serializing unknown
1614         types. BinaryFormatter does not work so you better don't store anything
1615         of unknown Type in ViewState.
1616
1617         * Page.cs: GetViewStateString works now using LosFormatter.
1618         Complete "Control execution lifecycle" by unloading all the child
1619         controls. Check for null in RaisePostBackEvents.
1620         LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
1621
1622 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1623
1624         * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
1625
1626 2002-10-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1627
1628         * LosFormatter.cs: Use WebEncoding.Encoding.
1629
1630         * Control.cs:
1631         * Page.cs: fixed namespace.
1632
1633 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1634
1635         * Page.cs: set the context in ProcessRequest. Added a few trace calls.
1636         * Control.cs: added some trace information.
1637
1638 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1639
1640         * SimpleHandlerFactory.cs: new handler for .ashx files.
1641
1642 2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1643
1644         * System.Web.UI/PageHandlerFactory.cs: new file.
1645         * System.Web.UI/PageParser.cs:
1646         * System.Web.UI/TemplateControlParser.cs: we are now able to compile
1647         pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
1648
1649 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1650
1651         * Control.cs: implemented ObBubbleEvent.
1652         * Page.cs: temporary workaround to make POST work with xsp server.
1653
1654 2002-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1655
1656         * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
1657         return pvt methods.
1658
1659 2002-09-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1660
1661         * SimpleWebHandlerParser.cs: New file.
1662         * WebServiceParser.cs: New file.
1663
1664 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1665
1666         * LosFormatter.cs: almost fully implemented.
1667
1668 2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1669
1670         * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
1671         * EmptyControlCollection.cs: throw correct exception.
1672         * LosFormatter.cs: stubbed out.
1673         * OutputCacheLocation.cs: little fix.
1674
1675 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1676
1677         * System.Web.UI/ApplicationFileParser.cs:
1678         * System.Web.UI/BaseParser.cs:
1679         * System.Web.UI/PageParser.cs:
1680         * System.Web.UI/TemplateControl.cs:
1681         * System.Web.UI/TemplateControlParser.cs:
1682         * System.Web.UI/TemplateParser.cs: first steps to move xsp into
1683         System.Web.
1684
1685 2002-07-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1686
1687         * Page.cs: request to render postback script can be after form started
1688         rendering.
1689
1690 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1691
1692         * Page.cs: added more page events to invoke automagically if some
1693         methods are defined.
1694
1695 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1696
1697         * Control.cs:
1698         (SaveViewState): save state even when control is not visible.
1699         (SaveViewStateRecursive):
1700         (LoadViewStateRecursive): made internal.
1701
1702 2002-07-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1703
1704         * Page.cs: improved event raising to allow client postback for a wider
1705         variety of actions (clicking an hyperlink, ...).
1706
1707 2002-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1708
1709         * UserControl.cs: implemented Load/SaveViewState.
1710
1711 2002-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1712
1713         * AttributeCollection.cs:
1714         (Add): handle 'style' through styleCollection.
1715
1716         * CssStyleCollection.cs:
1717         (fillStyle): renamed to FillStyle and made it internal.
1718
1719         * Page.cs:
1720         (GetViewStateString): fixed, broken after other recent changes.
1721         (ProcessPostData): allow a second try for postback data after OnLoad.
1722         (ProcessRequest): clear controls collection, removed call to 
1723         UnloadRecursive.
1724
1725 2002-07-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1726
1727         * Control.cs: uncommented Dispose.
1728
1729         * Page.cs:
1730         (DeterminePostBackMode): more checkings.
1731         (GetPostBackClientHyperLink): implemented.
1732         (GetPostBackEventReference): added some comments with the HTML that MS
1733         generates for that.
1734         (ProcessRequest): fixed processing order. The page is unloaded after
1735         a request and regenerated from view state on subsequents posts.
1736
1737 2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1738
1739         * Control.cs: fixed related to ViewState. Added RemovedControl.
1740
1741         * ControlCollection.cs: notify owner of control removal.
1742         
1743         * CssStyleCollection.cs: almost rewritten to make it render the style
1744         attribute after changes to it.
1745
1746         * Page.cs: follow the guidelines in 'Control execution lifecycle'.
1747         Removed Xml code.
1748
1749         * StateBag.cs: don't use IDictionary.GetEnumerator on the
1750         HybridDictionary: it makes the program give an InvalidCastException at
1751         runtime. Why?
1752
1753 2002-07-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1754
1755         * Page.cs: fire Init and Load events for all children.
1756
1757 2002-07-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1758
1759         * UserControl.cs: New file.
1760
1761 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1762
1763         * ControlBuilderAttribute.cs: finished implementation.
1764
1765 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1766
1767         * ConstructorNeedsTagAttribute.cs: the default constructor sets the
1768         property to false.
1769
1770 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1771
1772         * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
1773
1774         * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
1775         Hashtable. Added internal .ctor.
1776
1777         * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
1778         Equals and GetHashCode.
1779
1780         * System.Web.UI/DataBoundLiteralControl.cs:
1781         (LoadViewState):
1782         (SaveViewState): implemented.
1783
1784         * System.Web.UI/Page.cs: FileDependencies is not public.
1785
1786         * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
1787         (GetHashCode):
1788         (Equals):
1789         (IsDefaultAttribute): implemented.
1790
1791 2002-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1792
1793         * Control.cs: fixed Visible property.
1794         * Page.cs: fixed GetViewStateString.
1795
1796 2002-07-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1797
1798         * System.Web.UI/Page.cs:
1799         (GetViewStateString): new function to give the server access to the
1800         generated view state string.
1801         (Validate): d'oh!
1802
1803 2002-07-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1804
1805         * Control.cs:
1806         (SaveViewstateRecursive): implemented.
1807         (SaveViewState): fixed.
1808         (IParserAccessor.AddParsedSubObject): don't use 'this'.
1809
1810         * Page.cs: added code to save view state to an xml file.  It's not
1811         being used right now.
1812
1813 2002-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1814
1815         * System.Web.UI/LiteralControl.cs: 
1816         Fixes based on class status page:
1817         
1818                 - Add attributes (DefaultEvent, ParseChildren).
1819                 - Fix declarations.
1820                 - Explicitly implement some interfaces (IPostBackDataHandler
1821                 and IPostBackEventHandler).
1822                 - Implemented some missing methods.
1823
1824 2002-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1825
1826         * Control.cs: reimplemented FindControls.
1827
1828         * Page.cs:
1829         (.ctor): set the page for this control.
1830         (IsPostBack): return valid value.
1831         (DeterminePostBackMode): finished.
1832         (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
1833         (ProcessPostData): implemented. Raises change and postback events.
1834         (ProcessRequest): changed to support reuse of the instance.
1835         (RegisterRequiresPostBack): implemented.
1836
1837         * ValidatorCollection.cs: implemented all methods.
1838
1839 2002-06-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1840
1841         * Control.cs:
1842         * Page.cs: first attemp to save view state.
1843
1844         * HtmlForm.cs: don't render Action.
1845
1846 2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1847
1848         * Page.cs: implemented more properties using information we already
1849         have in Context.
1850         (OnFormRender):
1851         (OnFormPostRender):
1852         (VerifyRenderingInServerForm): implemented.
1853
1854 2002-06-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1855
1856         * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
1857         out runtime. Renamed Page_Init and Page_Load.
1858
1859         After this, we can load a dll and render HTML in linux.
1860
1861 2002-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1862
1863         * Control.cs:
1864         (AddedControl): new function that is called whenever a control is
1865         added to a collection of controls in a container. It sets the defaults
1866         except for Page.
1867         
1868         * ControlCollection.cs: call AddedControl in Add/AddAt.
1869
1870         * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
1871         SetStaticString and SetDataBoundString.
1872
1873         * Page.cs: removed SetDefaults.
1874
1875 2002-06-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1876
1877         * CompiledTemplateBuilder.cs: new file. Used in the code generated
1878         by xsp.
1879
1880         * Control.cs:
1881         (BindingContainer): implemented.
1882         (EnsureChildControls): avoid stack overflow.
1883
1884         * DataBinder.cs: implemented Eval and PropertyValue.
1885
1886 2002-06-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1887
1888         * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
1889         bug as in regular attributes).
1890
1891 2002-06-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1892
1893         * Control.cs: implemented PreventAutoID.
1894
1895         * Page.cs:
1896         (SetDefaults): don't set ID automatically if Control.PreventAutoID has
1897         been called.
1898
1899 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1900
1901         * Page.cs:
1902         (Validators): if the collection is null, create one.
1903         (GetPostBackEventReference 2): don't throw exception.
1904         (GetPostBackClientEvent): return a string with containing the method
1905         name, the control name and the argument.
1906
1907 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1908
1909         * Page.cs: SetPage is now called SetDefaults and also sets a default 
1910         ID for controls that don't have one yet.
1911
1912 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1913
1914         * Page.cs:
1915         (GetPostBackClient):
1916         (RegisterRequiresPostBack): don't throw NotImplementedException to
1917         keep going.
1918         (ProcessRequest): set the current page as the Page property for *all*
1919         the controls, not just the direct children of the page.
1920
1921 2002-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1922
1923         * Control.cs:
1924         (MapPathSecure): until security is implemented, return the same path
1925         received as argument.
1926         (RenderControl): call OnPreRender before rendering the control. So
1927         AdRotator can read its configuration file.Is there any other place
1928         where this should be done?
1929
1930         * HtmlTextWriter.cs:
1931         (AddAttribute): fixed. Now it really stores attributes.
1932         (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
1933
1934 2002-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1935
1936         * ControlCollection.cs:
1937         (AddAt): if index is -1 behave as a plain Add.
1938
1939 2002-06-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1940
1941         * Page.cs: for each child control to render, assign Control.Page.
1942         Probably also needed in HtmlContainerControl derived classes.
1943         
1944 2002-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1945
1946         * AttributeCollection.cs: don't need a Hastable. StateBag now works 
1947         fine and takes care of the details.
1948
1949         * Control.cs: added HasChildren property.
1950
1951         * StateBag.cs: fixed a couple of nasty bugs.
1952
1953 2002-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1954
1955         * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
1956         Invoke Page_Init and/or Page_Load if the user supplied them (though 
1957         this should depend on AutoEventWireUp attribute of Page directive).
1958
1959 2002-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1960
1961         * Control.cs: don't throw exception in ControlID. By now, it returns ID.
1962
1963         * Page.cs: 
1964         (ProcessRequest): implemented.
1965
1966 2002-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1967
1968         * System.Web.UI/Page.cs: finished stubbing out. Implemented some
1969         methods.
1970
1971 2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1972
1973         * Page.cs:
1974         (FileDependencies): now is public public.
1975         (EnableViewStateMAC): uncommented and made protected. 
1976         (GetTypeHashCode): added method.
1977         
1978 2002-05-24  Duncan Mak  <duncan@ximian.com>
1979
1980         * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
1981
1982         * StateBag.cs (Item): Changed the visibility level of the this
1983         [object] indexer.
1984
1985         Misc. formatting edits, fixing some bugs introduced by the indentation.
1986
1987         * DataBinder.cs (Eval)
1988         (GetIndexedPropertyValue)
1989         (GetPropertyValue): Fixed return types.
1990
1991 2002-05-21  Miguel de Icaza  <miguel@ximian.com>
1992
1993         * HtmlTextWriter.cs: Use this to change the member instances.
1994
1995 2002-05-17  Duncan Mak  <duncan@ximian.com>
1996
1997         * AttributeCollection.cs: 
1998         * ControlCollection.cs: 
1999         * CssStyleCollection.cs: 
2000         * DataBindingCollection.cs: 
2001         * EmptyControlCollection.cs: Added missing Collection classes.
2002
2003 2002-05-17  Duncan Mak  <duncan@ximian.com>
2004
2005         * BaseParser.cs:
2006         * TemplateParser.cs:  Implemented. BaseParser is weird because
2007         there is no documentation on what it does.
2008
2009         * ControlBuilder.cs:
2010         
2011         * DataBinder.cs: 
2012         * DataBinding.cs: Added. 
2013
2014         * DataBoundLiteralControl.cs: 
2015         * Triplet.cs: Added.
2016
2017         * RenderMethod.cs: Added this delegate for Control.cs
2018
2019 2002-05-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2020
2021         * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
2022
2023 2002-05-14  Duncan Mak  <duncan@ximian.com>
2024
2025         * ValidationPropertyAttribute.cs: Added to CVS.
2026
2027 2002-05-10  Duncan Mak  <duncan@ximian.com>
2028
2029         * ConstructorNeedsTagAttribute.cs: 
2030         * ControlBuilderAttribute.cs: 
2031         * ImageClickEventArgs.cs: 
2032         * ParseChildrenAttribute.cs: 
2033         * PartialCachingAttribute.cs: 
2034         * PersistChildrenAttribute.cs: 
2035         * PersistenceModeAttribute.cs: 
2036         * TemplateContainerAttribute.cs: Added to CVS.
2037
2038         * PersistanceMode.cs: Removed, fixed typo.
2039         * PersistenceMode.cs: Replacing above.
2040
2041         * StateBag.cs (this): Fixed indexer, it takes a string as the
2042         index, not an object.
2043
2044         * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection. 
2045
2046         * Page.cs (Validators): return type should be ValidatorCollection,
2047         not ValidatedCollection.
2048
2049         * TagPrefixAttribute.cs: Added to CVS.
2050
2051 2002-05-07  Duncan Mak  <duncan@ximian.com>
2052
2053         * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
2054
2055 2002-03-26   Gaurav Vaish <gvaish@iitk.ac.in>
2056
2057         * DataBindingHandlerAttribute.cs
2058                                    - Completed
2059         * ToolboxDataAttribute.cs  - Completed
2060
2061 2002-01-03  Nick Drochak  <ndrochak@gol.com>
2062
2063         * DesignTimeParseData.cs: initialze static member to avoid compile
2064         error
2065         * PropertyConverter.cs: remove uneeded exception variables from
2066         catch blocks.
2067
2068 2002-01-02  Nick Drochak  <ndrochak@gol.com>
2069
2070         * DesignTimeParseData.cs: fix header to show correct class name
2071
2072 2001-12-21   Gaurav Vaish <gvaish@iitk.ac.in>
2073
2074         * StateBag.cs             - Completed
2075
2076 2001-12-19   Gaurav Vaish <gvaish@iitk.ac.in>
2077
2078         * Pair.cs                 - Small undocumented class. Completed.
2079
2080 2001-12-18   Gaurav Vaish <gvaish@iitk.ac.in>
2081
2082         * DesignTimeParseData.cs  - Initial implementation
2083         * StateBag.cs             - Initial implementation
2084
2085 2001-12-17   Gaurav Vaish <gvaish@iitk.ac.in>
2086
2087         * PropertyConverter.cs    - Undocumented class. Completed.
2088         * Utils.cs                - Undocumented, private class.
2089                                     Initial implementation
2090
2091 2001-08-28  Bob Smith  <bob@thestuff.net>
2092         * Control.cs: Figured out some undocumented API.
2093         * Added TODO.
2094         * BuildMethod.cs: Initial implementation.
2095         * BuildTemplateMethod.cs: Initial implementation.
2096         * HtmlTextWriterAttribute.cs: Initial implementation.
2097         * HtmlTextWriterStyle.cs: Initial implementation.
2098         * HtmlTextWriterTag.cs: Initial implementation.
2099         * IAttributeAccessor.cs: Initial implementation.
2100         * IDataBindingsAccessor.cs: Initial implementation.
2101         * ImageClickEventHandler.cs: Initial implementation.
2102         * INamingContainer.cs: Initial implementation.
2103         * IParserAccessor.cs: Initial implementation.
2104         * IPostBackDataHandler.cs: Initial implementation.
2105         * IPostBackEventHandler.cs: Initial implementation.
2106         * IStateManager.cs: Initial implementation.
2107         * ITagNameToTypeMapper.cs: Initial implementation.
2108         * ITemplate.cs: Initial implementation.
2109         * IValidator.cs: Initial implementation.
2110         * OutputCacheLocation.cs: Initial implementation.
2111         * PersistanceMode.cs: Initial implementation.
2112         * StateItem.cs: Initial implementation.
2113
2114 2001-08-27  Bob Smith  <bob@thestuff.net>
2115
2116         * Control.cs: Bug fixes and implementations.
2117
2118 2001-08-24  Bob Smith  <bob@thestuff.net>
2119
2120         * Control.cs: Bug fixes.
2121
2122 2001-08-23  Bob Smith  <bob@thestuff.net>
2123
2124         * Control.cs: More implementation. Events reworked for performance.
2125
2126 2001-08-22  Bob Smith  <bob@thestuff.net>
2127
2128         * LiteralControl.cs: Implemented.
2129         * Control.cs: Even more implementation (Events). What a beast.
2130
2131 2001-08-20  Bob Smith  <bob@thestuff.net>
2132
2133         * Control.cs: More implementation. Not done yet. Shutter.
2134
2135 2001-08-17  Bob Smith  <bob@thestuff.net>
2136
2137         * Control.cs: Partial implementation.