Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Web.Compilation « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e4e6ea40291065b6c0c886320b53b6ea01638ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
2004-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CachingCompiler.cs: don't try to watch for changes in system
	assemblies. Fixes bug #64871.

2004-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: handle builders that need to process inner text
	with tags.

	* Location.cs: added setters for the properties.

2004-07-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: the path for file was treated as virtual, but it's
	physical. Fixes bug #61524.

2004-07-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: fixed case-sensitivity issues with #include and its
	attributes. Closes #61429.

2004-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs:
	* WebServiceCompiler.cs: really create the dlls under DynamicBase

2004-06-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: for system colors, use SystemColors class
	instead of Color. Fixes bug #60249.

2004-06-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: try getting the Type from the cache before doing the 
	real work. Remove temporary files right after successful compilation.

	* CachingCompiler.cs: added GetTypeFromCache.

	* UserControlCompiler.cs: nothing interesting.

	* WebServiceCompiler.cs: try getting the Type from the cache before
	doing anything else. Remove temp files on sucessful compilation.

2004-06-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs:
	* CachingCompiler.cs: use a different prefix when caching compiler
	results or Types.

2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: dynamicBase is now protected. Check
	MONO_ASPNET_NODELETE here.

	* TemplateControlCompiler.cs: if the type is not known but has a 
	TypeConverter, invoke ConvertFromString in the generated code.

	* WebServiceCompiler.cs: it used a hardcoded C# compiler, now it gets
	the compiler from the configuration. Also handle MONO_ASPNET_NODELETE.

	* CachingCompiler.cs: updated compilation of web services and simple
	web handlers.

2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CSCompiler.cs: removed.

	* CachingCompiler.cs: language independent compilation for single files.

2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs:
	* WebServiceCompiler.cs: adapted to the 'new' CachingCompiler.
	* CachingCompiler.cs: use HttpRuntime.Cache.

2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: fixed Trace and add support for Buffer.

2004-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: override CreateConstructor to add assignment for
	ClientTarget.
	
2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: use CodeDelegateCreateExpression instead
	of CodeObjectCreateExpression for the render method delegate. Thanks
	to Jochen Wezel.

2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: use DynamicBase for the output assemblies.

2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: ObjectTagBuilder do not override HasBody now.

2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: indent a few lines.
	* AspTokenizer.cs: added ungetc() used when we read a '/' in an unquoted
	attribute value. This way we can simulate reading 2 characters ahead
	(one in ungetc and the other in Peek) and work with values like
	text/javascript. Fixes bug #57302.

2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: ignore whitespace after directives. Fixes bug #58057.

2004-04-02  Lluis Sanchez Gual  <lluis@ximian.com>

	* TemplateControlCompiler.cs: Fixed build for net_1_0 profile.

2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* GlobalAsaxCompiler.cs: removed Imports and Assemblies properties.

2004-02-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: error out when <object> server tag is not closed.
	Ignore any content inside it.

2004-02-10  Jackson Harper <jackson@ximian.com>

	* AspTokenizer.cs: Collect discarded characters that might be used
	in client side scripts. Patch by Liyu Liu.
	* AspParser.cs: Add discarded characters. Patch by Liyu Liu.
	
2004-02-10  Jackson Harper <jackson@ximian.com>

	* BaseCompiler.cs: Use the TempDirectory for compilation. Fixes
	bug #54117.
	
2004-01-30  Jackson Harper <jackson@ximian.com>

	* TemplateControlCompiler.cs: Call ToString on the types hashcode,
	the build method takes strings not ints.
	
2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: handle more possible errors in global.asax file.

	* BaseCompiler.cs: added utility methods for creating <object> related
	properties and fields.

	* GlobalAsaxCompiler.cs: keep around applications and session scope
	objects builders. Also a list of imports and assemblies added in
	global.asax.

	* TemplateControlCompiler.cs: use base class methods for <object> stuff.

2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: use the Cache to store compiled Types. Don't parse
	pages more than once. Thanks to Eric Lindvall for pointing this out.

2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: allow handling subproperties for other
	types than Style and Font. Fixes bug #53217.

2004-01-16  Jackson Harper <jackson@ximian.com>

	* TagAttribute.cs: attributes can be stored as encoded html so we
	decode them here.
	
2004-01-14  Jackson Harper <jackson@ximian.com>

	* TemplateControlCompiler.cs: Is a user control is cached and
	shared use the controls type hashcode for the GUID so it will be
	the same across instances.
	
2004-01-13  Jackson Harper <jackson@ximian.com>
	
	* TemplateControlCompiler.cs: If an item has the partial caching
	attribute build a PartialCachingControl in the parents __Build method.
	* BaseCompiler.cs: Add a method for adding class attributes to the
	class.
	* UserControlCompiler.cs: If caching is enabled on a user control
	add the PartialCachingAttribute to it.
	
2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: invoke Request.ValidateInput if required.

2004-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: don't rely on GC to close the files parsed. Fixes bug
	#52521. Patch by liyul@hotmail.com.

2003-12-25  Jackson Harper <jackson@ximian.com>

	* AspGenerator.cs: Allow scriptlets in javascript. This fixes bug
	#52522.
	
2003-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: assign the ErrorPage property if provided.

2003-12-15  Jackson Harper <jackson@ximian.com>

	* PageCompiler.cs: Add Trace and TraceMode to framework initialize
	method if they are set.
	
2003-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: ignore <tbody> when we're inside a server table and
	fail when runat="server" is applied to <tbody> with a parse error
	instead of waiting for a compilation error. Fixes bug #52157.

2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: basic checking of ID validity.  Throw a
	ParseException when mixing languages.

2003-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: assign LCID, Culture and/or UICulture in
	FrameworInitialize() if provided in @Page.

	Fixes bug #51511.

2003-11-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: support for expressions of
	System.Drawing.Size type. Allow getting Color from comma separated
	numbers, which is not allowed by ColorConverter.

	This makes http://www.codeproject.com/aspnet/asppopup.asp work.

2003-11-13  Jackson Harper <jackson@ximian.com>

	* PageCompiler.cs: Call InitOutputCache when the OutputCache
	directive is set.
	
2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: use fileEncoding from configuration files.

	* PageCompiler.cs: add assign statements for ContentType,
	ResponseEncoding and CodePage if supplied.

2003-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: fix bug #42994. Now we don't generate
	a return statement for user controls with 'void' return type.

2003-10-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: fixed bug #49627.

2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: now gets the CodeCompiler from configuration files.

2003-10-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Directive.cs: new attribute for @Page directive in 1.1.

2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs:
	* TagAttributes.cs: allow duplicated runat=server attributes and display
	error page when duplicated attributes and runat is specified.

2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspTokenizer.cs: moved token numbers above unicode.

2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: don't process code render tags inside scripts. Check
	the language of the script and treat javascript as verbatim input.
	Fixes bug #48592.

2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: fixed bug #48212.

2003-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebServiceCompiler.cs: remove the temporary files here too.

2003-08-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fixed bug #46429.

2003-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Directive.cs: support @WebHandler.
	
2003-07-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: support string []. Fixes bug #46415.

2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: first look for cached items, then generate the tree.
	This should speed things up.

	* CachingCompiler.cs: when compiling web services, use the full path of
	the .asmx file as key when caching.

	* WebServiceCompiler.cs: first look for cached items, then generate
	the source file.

2003-07-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: more useful error information,

	* BaseCompiler.cs:
	* CachingCompiler.cs: honor the debug="true" option.

	* TemplateControlCompiler.cs: small fixes for templates.

2003-07-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: made Compiler property virtual.

	* CachingCompiler.cs: added support for compiling web services.

	* WebServiceCompiler.cs: implemented.

2003-05-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CachingCompiler.cs: fixed bug #43477.

2003-05-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs:
	* AspTokenizer.cs: fixed bugs #43206 and #43371.

2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: duh! Generate SupportAutoEvents instead
	of AutoEventWireup (which is internal). Thanks to Stuart Ballard for
	reporting.

2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CompilationException.cs: don't add duplicated lines in the case that
	mcs reports several errors for the same one.

2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fully support including files, ie., treat them just
	as C treats #includes.

2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs:
	* AspParser.cs:
	* TagType.cs: Added support for server side includes.

2003-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CSCompiler.cs: actually add the list of referenced assemblies to the
	compiler options. Throw a CompilationException if there's an error.

	* CachingCompiler.cs: added a method to compile directly from a source
	file.
	
2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: copy the location before setting the value for the
	control builders.

	* BaseCompiler.cs: changed parameters for CompilationException.

	* CompilationException.cs: it takes now line numbers and error
	descriptions from the CompilerErrorCollection.

	* Location.cs: used when a copy of an ILocation is needed.

	* ParseException.cs: implemented new methods to provide line numbers
	and souce file.

	* TemplateControlCompiler.cs: throw a ParseException where appropiate.

2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: also support data bind syntax inside tags not
	processed as controls. Added debugging method.

	* TemplateControlCompiler.cs: reset the number of data binding handlers 
	in the proper place. Small fix when getting the container type.

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: correctly set the TemplateSourceDirectory 
	value.

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: handle code render syntax in tag attributes.

	* AspParser.cs: the constructor now takes a TextReader.

	* TemplateControlCompiler.cs: removed comment.

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: added support for data bound properties.

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: simplified it a lot by using Type and Assembly
	instead of their names.

	* AspElements.cs: removed. No longer needed.

	* AspGenerator.cs: this file is now in charge of interfacing between
	the parser and the compiler. It manages the creation of the
	ControlBuilder tree and the compilation of the CodeDOM tree.

	* AspParser.cs: tag handling is simpler now.  Instead of a whole bunch
	of different Types, tags are just and id and a set of attributes.
	Implement ILocation interface.
	
	* AspTokenizer.cs: added a few methods to help the parser implementing
	ILocation.

	* BaseCompiler.cs: handles the portions of the CodeDOM tree that are
	common to appliaction, page and user control, including the actual
	compilation and error handling.

	* CSCompiler.cs: compiles C# files using CodeDOM interfaces.

	* CachingCompiler.cs: simplified to use the new interfaces.

	* CompilationException.cs: it's now using CompilationResult to report
	errors.

	* CompilationResult.cs: Removed file.

	* Directive.cs: to check for the validity of a directive.

	* GlobalAsaxCompiler.cs: simplified a lot, as most of the work is done
	in BaseCompiler.

	* ILocation.cs: interface used to now the exact place where a parse
	error happens.

	* PageCompiler.cs: generates a couple of methods that are only used in
	pages.

	* ParseException.cs: use the ILocation interface.

	* TagAttributes.cs: handles the attributes of the tags parsed.

	* TagType.cs: an enum for the different kinds of tags.

	* TemplateControlCompiler.cs: this is the one that does most of the
	conversion from teh ControlBuilder tree into a CodeDOM tree.

	* UserControlCompiler.cs: simplified as most of the work is done in
	its base classes.

	* WebServiceCompiler.cs: dummy.

2003-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: added GetComponentType method.

2003-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspTokenizer.cs: allow quotes inside server tags that are part of
	attribute values.
	
	* CachingCompiler.cs: no more 'FileNotFound' exceptions when the
	compilation fails.

2003-03-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: generate correct appbase path. It was working with
	mcs but not with csc.

	* BaseCompiler.cs: quote arguments and removed GetRandomFileName.

	* CachingCompiler.cs: quote source file.

2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: now the Inherits attribute works as expected for
	global.asax file.

2003-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CompilationException.cs:
	* ParseException.cs: display the correct line number in error messages.

	* AspElements.cs: added TargetSchema attribute for control. It's
	ignored.

2003-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: fixed the hack to work under windows.
	* CachingCompiler.cs: under windows, try 'mcs.bat' and then 'mcs'.

2003-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: hacks to work-around our buggy System.Uri.

2003-03-17 George Kodinov <gkodinov@openlinksw.co.uk>

        * BaseCompiler.cs: Removed a FIXME: and added a correct calculation of
	app's private bin path

2003-03-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs:
	* BaseCompiler.cs:
	* CachingCompiler.cs:
	* CompilationResult.cs:
	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs: recompile the page if dependencies change.

2003-02-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: corrected typo and wrong fix.

2003-02-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fixed code generation for Table/TableRow/TableCell
	when used explicitly.

2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: get the property Type for controls that use
	ParseChildren with a property name.

	* AspGenerator.cs: generate correct signature for the method that
	adds controls to the default property in ParseChildren.

2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: rethrow exceptions that may come from parsing or 
	compilation if a user control.

2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: throw ParseException on parse
	error.

	* AspParser.cs: added Line and Column props.

	* CompilationException.cs: derives now from HtmlizedException.

	* CompilationResult.cs: added fileName field.  Fixed set_ExitCode.

	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs: pass the file name in the CompilationResult.

	* ParseException.cs: new exception.


2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: remove "file://" from the private bin path. Fixes
	bug #37628.

2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: the parser fires events when it parses an element.

	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs:
	* AspElements.cs: modified to use the new parser interface.

	* AspGenerator.cs: modified to use the new parser. Merge multiple text
	strings into one single LiteralControl.

	* AspTokenizer.cs: added Line and Column properties.

2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: fixed bug #36929.

2003-01-21  Tim Haynes <thaynes@openlinksw.com>

	* AspGenerator.cs:
	* BaseCompiler.cs:
	* CachingCompiler.cs: changes to work around spaces and
        directory-separators in the local filesystem.

2003-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: make the generated file compile with csc after last
	change.

2003-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: removed unused variable. Added support for
	properties/fields of type string [].

2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: modified loading of the parent type now that
	Type.GetType is fixed.

2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: cast to Control if the container does not implement
	INamingContainer.

2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fixed a couple of thinkos related to IsSubclassOf.

2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: attributes without value lacked a space afterwards.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: functions for columns don't return anything. Fixed
	typo.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: add data bound controls to code render function.

2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: reworked to allow same prefix for multiple
	controls. You can register 1 assembly plus any number of user controls
	under the same prefix.

	* AspGenerator.cs: don't add duplicate 'using' for the same namespace.
	Hack to allow @Register access to assemblies in other places than bin
	directory.

2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: added 'codebehind' attribute for page, control and
	application. It's ignored by MS, but allowed. Fixed typo.

2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fixed EnableSesssionState handling.

2003-01-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: don't generate instance fields for pages/controls
	when the base class specified in the Inherits attribute already has
	them. Closes bug #36262.

2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: generate code like 'control.XXX = value' also for
	public fields (properties were being handled in that way too).

2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: now it uses the current HttpContext when creating
	user controls. TemplateSourceDirectory is no longer a dummy value.

	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs: set the context which will be used to locate
	the files.
	
2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: added support for AutoEventWireup attribute in
	@Page and @Control.

	* CompilationResult.cs:
	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs: store the options.

2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: new method Tag.GetElements
	used to parse the inner contents of a tag looking for data binding or 
	code render tags.
	
	New property HtmlControlTag.ParseChildren allows
	differentiation of a couple of HtmlControls that has children as
	properties (namely HtmlTable and HtmlTableRow).

	* AspGenerator.cs: fixed container semantics to
	match BindingContainer one. Implemented Inherits attribute for page and
	control.

	Support HtmlControls that has ChildrenAsProperties.
	
	Generate code for data binding functions that matches the semantic of
	Container.

	Handle data bound and code render attribute values.

	Set proper value return for TemplateSourceDirectory. Should be relative
	to appPath.
	
	* BaseCompiler.cs: moved CompilerOptions and
	References handling here.

	* CachingCompiler.cs: copy result of compilation.

	* CompilationException.cs: simple ToString () implementation.

	* CompilationResult.cs: implemented CopyFrom and ToString.

	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* UserControlCompiler.cs: removed CompilerOptions as it's now handled
	in the base class. Get all the types in the generated assembly and
	look for one that derives from the correct Type.
	
2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: added @Application directive.

	* AspGenerator.cs: make it work also with application files. We
	currently generate an extra private function.

2002-11-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* GlobalAsaxCompiler.cs: compiler for global.asax file. If the file
	exists, it will be compiled into an HttpApplication derived class
	(directly or through a user-provided class).

2002-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: fixed target file name and generated class name.
	* BaseCompiler.cs: reference assemblies in PrivateBinPath.

2002-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: reworked user control
	compilation. Provide the options as a Hashtable for use in compilation.
	Create the user controls in the private bin path of the domain.

	* BaseCompiler.cs: base class for the various compiler types.

	* CachingCompiler.cs: actually executes mcs and do some poor caching
	(it will use Cache when finished).

	* CompilationException.cs: this exception has enough information to
	generate a nice error page.
	* CompilationResult.cs: used in caching.

	* PageCompiler.cs: now derives from BaseCompiler

	* TemplateFactory.cs: no longer needed.

	* UserControlCompiler.cs: new class used when compiling user controls.
	* WebServiceCompiler.cs: derives from BaseCompiler.

2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: added ServerComment class.
	* AspParser.cs: ignore ServerComments tags. Remove server comments when 
	in verbatim mode.

	Fixes #33482.

	* PageCompiler.cs: check if the type is already cached before generating
	the C# file.
	* TemplateFactory.cs: if csFile parameter is null, only checks if we
	already have the page compiled.

2002-11-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: undo one-liner change.

2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: removed a few hacks no longer needed.

2002-10-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: tracing.
	* TemplateFactory.cs: cache compiled types and tracing.
	* WebServiceCompiler.cs: new parameter in GetTypeFromsource,

2002-10-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: fixed typo.
	* TemplateFactory.cs: use csc style options.
	* AspGenerator.cs: don't use FileDependencies property of base class.

2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Web.Compilation/AspElements.cs:
	* System.Web.Compilation/AspGenerator.cs:
	* System.Web.Compilation/AspParser.cs:
	* System.Web.Compilation/PageCompiler.cs:
	* System.Web.Compilation/TemplateFactory.cs: we are now able to compile
	pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.

2002-09-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs: added WebService directive.
	* WebServiceCompiler.cs: New file.

2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: fixed compilation.

2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PageCompiler.cs: generate C# file using AspGenerator.

2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: LookupFoundry now returns bool.
	* AspGenerator.cs: New file.

2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspComponentFoundry.cs: New file.
	* AspElements.cs: renamed Component to Aspcomponent.

2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspElements.cs:
	* AspParser.cs:
	* AspTokenizer.cs:
	* ChangeLog:
	* PageCompiler.cs:
	* TemplateFactory.cs: first steps to move xsp into System.Web.