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: 0f6c1d04bec0e8d209a80d4bdc4ed9ef671bb792 (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
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2008-04-09  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: Do not catch compilation exceptions and wrap them in
	HttpException, let the CompilationException pass through. Fixes
	bug #377904

2008-03-13  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: if we're running in a case-insensitive
	environment, use case-insensitive comparer for the build caches. 

2008-02-28  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: make sure that data-bound attribute
	assignments properly convert the Bind expression to the Eval
	one. Fixes bug #362039

2008-02-27  Marek Habersack  <mhabersack@novell.com>

	* AspComponentFoundry.cs: use BuildManager.GetCompiledType in the
	LoadType method for the 2.0 profile.

2008-02-26  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: known file types extensions are now matched
	case-insensitively.

2008-02-25  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: GetContainerType now checks whether
	the binding container returned from the builder implements
	IDataItemContainer (for 2.0+ profiles) and looks for one more
	property, Rows, if no Items property is found.

2008-02-07  Marek Habersack  <mhabersack@novell.com>

	* CompilationException.cs: added new constructor which takes
	CompilerResults as one of the parameters.
	Added CompilerOutput property.

	* AssemblyBuilder.cs: use the new CompilationError constructor.

	* BuildManager.cs: check for virtualPath existence before
	attempting to compile the assemblies. Fixes bug #359465

2008-02-06  Marek Habersack  <mhabersack@novell.com>

	* GenericBuildProvider.cs: GetGeneratedType may return a type even
	though the results are null.

	* AssemblyBuilder.cs: if there are no units, no source files, no
	resources and no embedded resources in the passed options then
	do not attempt to compile the assembly. Fixes bug #359325

	* AppResourcesAssemblyBuilder.cs, AppCodeCompiler.cs: expect that
	BuildAssembly may return null results.

	* BuildManager.cs: protect non-page builds from endless recursion
	if a non-page file recursively references/includes another file
	from the same batch. If such case is detected, the recursively
	referenced file is compiled into a separate assembly and removed
	from the previous compilation batch. Fixes bug #358742.
	If AssemblyBuilder returns no results from BuildAssembly, it might
	mean we're dealing with a compilation of empty .as[hm]x files,
	with no code and only code-behind in bin/. Do not report an error
	in that case, only add the compiled types to the cache. Fixes bug
	#357624.

2008-02-05  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: GetAbsoluteVirtualPath correctly converts
	non-rooted relative paths to absolute ones now. Fixes bug
	#357504.

	* GenericBuildProvider.cs: introduced a new abstract method,
	GetReferencedAssemblies, which is called on descendant builders to
	get a list of assemblies referenced by the parsed file. Fixes bug
	#357499.

	* AssemblyBuilder.cs: added a new overload of the
	AddAssemblyReference method, to be used by build providers to
	register assemblies collected by the corresponding parser.

	* TemplateBuildProvider.cs, SimpleBuildProvider.cs: implemented
	overload of the new abstract method GetReferencedAssemblies.

	* AspGenerator.cs: introduced a new overload for the Parse method
	which accepts a bool indicating whether or not to initialize the
	parser. The overload is used when parsing server-side
	includes. Fixes bug #357498

2008-02-04  Marek Habersack  <mhabersack@novell.com>

	* AssemblyBuilder.cs: do not use WebEncoding.FileEncoding when
	generating source code files. Fixes bug #357053.

	* AspGenerator.cs: set isApplication before parsing. Fixes bug
	#357036.

2008-01-31  Jb Evain  <jbevain@novell.com>

	* AspGenerator.cs: correct typo. Fix #357547.
	Backport from trunk at r94456.

2008-01-27  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: GetReferencedAssemblies includes the extra
	assemblies and the App_Code assemblies. Patch from Mike Morano
	<mmorano@mikeandwan.us>, thanks!

2008-01-24  Marek Habersack  <mhabersack@novell.com>

	* WebHandlerBuildProvider.cs: derive from the new
	SimpleBuildProvider class.

	* BuildManager.cs: full implementation of the batch compilation
	for the 2.0 profile. The implementation is most probably different
	to MS.NET's but the effects are the same (or nearly the same -
	there are some minor differences). There are missing bits and
	pieces, but minor ones - to be added later.

	* SimpleBuildProvider.cs: new build provider abstract class
	deriving from the GenericBuildProvider that implements common code
	for building web handlers and web services.

	* GenericBuildProvider.cs: new generic abstract class used to
	implement base builder code for all the build provider types and
	maximize code reuse.

	* PageBuildProvider.cs: derive from the new TemplateBuildProvider
	class and implement all the necessary abstract members. 
	Handle "fake" virtual paths, to properly support generating of the
	WSDL helper code.

	* BuildProvider.cs: SetVirtualPath now converts the passed path to
	absolute URL.
	Added internal virtual method GenerateCode, used by derived
	classes.
	SetCommonParameters no longer sets the referenced assemblies, this
	is done in BuildManager now.
	Added an internal virtual property CodeUnit which returns the
	build provider's compilation unit.

	* PageCompiler.cs: fix assignment of base types for asynchronous
	pages, to match MS.NET.
	For asynchronous pages, add the necessary methods generation.

	* BaseCompiler.cs: default namespace is now set using a constant.
	Renamed the Init method into ConstructType, to better reflect its
	purpose and made the method internal - it is used by the build
	providers.
	Added several CreateProvider overloads for easier and more unified
	compilation provider creation.
	Added an internal MainClassType property to enable class type name
	retrieval from other parts of the class hierarchy.

	* ApplicationFileBuildProvider.cs: new build provider deriving
	from the TemplateBuildProvider class to compile the global.asax
	file.

	* AspGenerator.cs: properly handle parsers which have no input
	file path given, but use TextReader instead.
	Dependencies are virtual paths now, convert them to physical ones
	before creating cache dependency.

	* CachingCompiler.cs: parser dependencies are virtual paths now,
	convert them to physical ones before creating cache dependency.

	* AssemblyBuilder.cs: full implementation of the documented
	functionality as well as a lot of internal build code
	added. Produces assemblies using the same style what MS.NET for
	temporary and target file naming. Handles partial type squashing
	if the same partial type is used by several code compile units
	added to the same builder instance.

	* MasterPageBuildProvider.cs: use the new TemplateBuildProvider
	base class and add implementation of all the abstract methods
	required by it.

	* ThemeDirectoryBuildProvider.cs: new build provider to compile
	theme directories. Replaces the old ThemeDirectoryCompiler class.

	* UserControlBuildProvider.cs: use the new TemplateBuildProvider
	base class and add implementation of all the abstract methods
	required by it.

	* TemplateBuildProvider.cs: new internal abstract class which
	implements the common tasks for all the template control build
	providers.

	* WebServiceBuildProvider.cs: use the new SimpleBuildProvider base
	type to implement building.

2008-01-17  Igor Zelmanovich <igorz@mainsoft.com>

	* BaseCompiler.cs: Assign AppRelativeVirtualPath correctly

2008-01-08  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: statements to assign
	fields/properties from resources must be processed at the very end
	of the control creation method. Some controls (like HyperLink) can
	set their Text attribute using literal content. In such cases, in
	order to properly localize the control, the value read from the
	local page resources must be assigned after the literal value has
	been added to the control. Fixes bug #323494

2008-01-07  Marek Habersack  <mhabersack@novell.com>

	* CachingCompiler.cs: added an overload to the Compile method
	which accepts a flag whether or not to include debug information
	in the generated assembly.

2008-01-02  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: add line pragma wherever necessary.

	* PageCompiler.cs: reorder the statements to match MS.NET output.
	Output line pragma information for directive attributes.

	* BaseCompiler.cs: add a set of AddLinePragma methods for various
	CodeDOM elements. 
	Output line pragmas when adding server-side scripts to the CodeDOM
	tree.

	* AspGenerator.cs: use ServerSideScript to store script location
	in the original file.

	* UserControlCompiler.cs: output line pragmas for the init
	method.

2007-12-28  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs: MS.NET compatibility: added the
	__fileDependencies object to the generated class.
	Refactored the output to match MS.NET more closely.
	IHttpHandler or IHttpAsyncHandler are now added to the generated
	class list of implemented interfaces.
	
	* BaseCompiler.cs: Main class field references are prefixed with
	'global::' now. 
	Refactored the output to match MS.NET more closely.

2007-12-27  Marek Habersack  <mhabersack@novell.com>

	* BaseCompiler.cs: check for base type globality in all the
	location it is used.

2007-12-23  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* AppSettingsExpressionBuilder.cs: fixed GetAppSetting, should convert
	to property type

2007-12-21  Marek Habersack  <mhabersack@novell.com>

	* BaseCompiler.cs: Refactoring. Move the provider creation code to
	an internal static method, so that other piece of code which need
	to create the provider can do it using the same code. 
	Added setters to several internal properties, so that they can be
	shared with derivative classes.

	* WebServiceCompiler.cs: adjust to the changes above. Fixes bug
	#350398.

	* CachingCompiler.cs: adjust to the changes above. Also some
	refactoring.

2007-12-15  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: do not instantiate CodeDomProvider twice.

	* BaseCompiler.cs: do not use CreateCompiler () in the 2.0
	profile, it's obsoleted. CachingCompiler will use the
	CodeDomProvider methods directly in that case.

	* WebServiceCompiler.cs: Updated GetCompiledType to acquire
	compiler information for the 2.0 profile from system.codeDom.

	* CachingCompiler.cs: the Compile overloads do not use the
	compiler instance, but call appropriate methods on the
	CodeDomProvider instance directly.
	Updated some Compile overloads to acquire compiler information for
	the 2.0 profile from system.codeDom.

2007-12-14  Juraj Skripsky  <js@hotfeet.ch>

	* TemplateControlCompiler.cs (AddExpressionAssign):
	Make sure expression does not contain prefix.
	
	* AppSettingsExpressionBuilder.cs: Pass type of property to
	GetAppSetting, not type of declaring type.

2007-12-13  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs, AspComponentFoundry.cs,
	AssemblyBuilder.cs, AppResourcesCompiler.cs,
	AppResourcesAssemblyBuilder.cs, AppCodeCompiler.cs: speed
	optimization - use String.Concat instead of String.Format in some
	cases.

2007-11-22  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs: use
	pageParser.OutputCacheVaryByContentEncodings when initializing the
	output cache in the 2.0 profile.

2007-11-06  Marek Habersack  <mhabersack@novell.com>

	* BuildManager.cs: properly retrieve the BuildProviderCollection
	from configuration files.

2007-11-03  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: do not call converters specified in
	the member custom attributes if 'str' is null in
	GetExpressionFromString.

2007-10-23  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesAssemblyBuilder.cs: do not output preservation files
	for satellite assemblies, just for the main assembly. Also, don't
	add the satellite assemblies to the list of top-level assemblies.

2007-10-17  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs: added code to set the AsyncMode and
	AsyncTimeout Page properties.

2007-10-15  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs, WebServiceCompiler.cs,
	BuildProvider.cs, BaseCompiler.cs, CachingCompiler.cs: use
	HttpApplication.LoadType instead of Type.GetType.

2007-10-10  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: be careful when using type
	converters taken from attributes attached to class members. They
	may come from the System.Design namespace, which is mostly not
	implemented on Mono.

2007-10-01  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: resources are no longer compiled into a
	single assembly. Instead, the common assembly construction code
	has been moved to AppResourcesAssemblyBuilder to use satellite
	assemblies.

	* AppResourcesAssemblyBuilder.cs: new resource assembly
	construction code which takes care of outputting satellite
	assemblies.

2007-09-27  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: support nullable types in
	GenerateExpressionFromString.

2007-09-21  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: if we're running on a platform with
	the directory separator character that's different to the Unix
	style '/' one, convert the input file path to the virtual path
	style string, with path parts separated by '/'. Patch from Robert
	Jordan <robertj@gmx.net>, thanks! Fixes bug #324229.
	
2007-09-20  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: if a member passed to
	GetExpressionFromString has a TypeConverter attribute set, try to
	use the named type converter to convert the string value into the
	target type. Fixes bug #325489.

2007-09-14  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: use _culture and _resourceManager
	instead of culture and resourceManger in the generated code, to
	avoid case problems for languages that are case-insensitive.

2007-09-10  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: cast the expression to the field
	type whenever appropriate in GetExpressionFromString.
	When generating an object instance and one of the parameters is
	System.Type, return a typeof expression.

2007-09-07  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: another modification to the way
	TemplateInstance.Single templates are treated. The search for
	parent with this attribute set stops as soon as the first
	TemplateBuilder is encountered, no matter what the value of its
	TemplateInstance attribute is.

2007-09-06  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: ID must be assigned as soon as
	possible, before any other attributes of the control are
	accessed. The control code may rely on ID being set.
	Extend the process of checking if a control is located within a
	template with the TemplateInstance.Single attribute set, to all
	the parents of the current builder.

2007-09-05  Marek Habersack  <mhabersack@novell.com>

	* ThemeDirectoryCompiler.cs: all the skin files compiled in one
	batch must share the same component foundry. Under MS.NET if any
	earlier .skin file registers a control prefix any later .skin
	files may use it without registering.

2007-09-04  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: make sure that base class doesn't
	contain a field of the same name which is accessible from the
	current control if we're within a singleton template.
	When generating code for a property or field, use the name
	retrieved from the metadata by reflection instead of the one
	parsed from html. Fixes bug #82687. Patch from SunHo Kim
	<zsunno@gmail.com>, thanks!

2007-08-29  Marek Habersack  <mhabersack@novell.com>

	* CachingCompiler.cs: consider contents of the
	<compilation><assemblies> section when constructing a list of
	assemblies during compilation.

	* TemplateControlCompiler.cs: mark fields corresponding to the
	controls as global references.
	When control tree is constructed and the parent of the current
	builder is a TemplateBuilder marked with the TemplateInstance
	attribute set to Single, use the control's ID as the field
	name. This makes it possible to refer to controls inside templates
	by name instead of by using FindControl.

2007-08-23  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: use HttpApplication.BinDirectoryAssemblies
	and HttpApplication.LoadTypeFromBin.

	* BuildProvider.cs: use HttpApplication.BinDirectoryAssemblies in
	AddAssembliesInBin.

2007-08-21  Marek Habersack  <mhabersack@novell.com>

	* BuildProvider.cs: use HttpApplication.PrivateBinPath enumerator
	to look up assemblies in the binary path(s).

2007-08-19  Juraj Skripsky <js@hotfeet.ch>

	* GlobalAsaxCompiler.cs (ProcessObjects): Make string comparison
	for scope case insensitive. Fixes bug #82479.

2007-08-14  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: remove dead code.

	* AssemblyBuilder.cs: include actual exception information when
	reporting inability to load a compiled assembly.

	* AppCodeCompiler.cs: remove unused variables.

	* AspComponentFoundry.cs: use an ArrayList to implement LIFO for
	component collections, instead of the old Queue which implemented
	FIFO. Fixes situations when a control registered later for a
	certain prefix would not be used in preference to a previously
	registered one of the same name.

2007-08-06  Marek Habersack  <mhabersack@novell.com>

	* AspComponentFoundry.cs: properly add new foundry if the
	corresponding entry in the foundries collection is a Queue. Patch
	from Juraj Skripsky <juraj@hotfeet.ch>, thanks! Fixes bug #82285.

2007-07-31  Marek Habersack  <mhabersack@novell.com>

	* AspComponentFoundry.cs: do not overwrite previously registered
	foundries when a new one is registered with the same prefix. Fixes
	bug #82216

2007-07-18  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: on the 2.0 profile, GetContainerType
	does not look up the Item/Items properties to determine the
	container type, instead it just returns the type reported by the
	builder passed to this method. This change makes the generated
	code match MS.NET. Fixes bug #82119.

2007-07-02  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: don't use StartWith to see if a
	variable's value is a bind expression, as it erroneously renames
	all calls to methods starting with the string Bind. Use a regular
	expression now instead. Fixes bug #81928.

2007-06-20  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: use HttpRuntime.InternalCache to keep
	private entries.
	* CachingCompiler.cs: as above
	* AspGenerator.cs: as above

2007-06-13  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: make sure control has a writable
	TemplateControl property prior to assigning values to it.

2007-06-09  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: TemplateControl is assigned for
	controls that are placed within ContentPlaceHolder and not for the
	ContentPlaceHolder itself.
	No longer add the overriden version of TemplateSourceDirectory to
	the generated source, all the work is now done in
	Control.TemplateSourceDirectory.

	* BaseCompiler.cs: AppRelativeVirtualPath shouldn't end with a
	slash, for compatibility with MS.NET

2007-06-05  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: TemplateSourceDirectory in the 2.0
	profile uses the TemplateControl property instead of Parent. This
	allows to return the correct path.

2007-06-01  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: be case-insensitive when looking for
	Bind requests.

2007-05-29  Marek Habersack  <mhabersack@novell.com>

	* ThemeDirectoryCompiler.cs: pass the skin file's
	virtual path to the skin file parser as its first paramenter, and
	not a physical path.

2007-05-28  Marek Habersack  <mhabersack@novell.com>

	* ResourceExpressionBuilder.cs: properly cast
	GetGlobalResourceObject calls to the type of the property being
	assigned to.

2007-05-25  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: Changed a few incorrect 
	ObjectCreationExpression to the correct DelegateCreationExpression.
	Fixes #81706.

2007-05-24  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs: added support for the PreviousPageType directive.

	* Directive.cs: as above.

2007-05-22  Marek Habersack  <mhabersack@novell.com>

	* UserControlCompiler.cs: the Profile property should be present
	also in user controls.

2007-05-15  Marek Habersack  <mhabersack@novell.com>

	* ResourceExpressionBuilder.cs: added a static method to generate
	a GetLocalResourceObject call which properly handles types which
	cannot be converted from strings.

	* TemplateControlCompiler.cs: use code described above to generate
	code for properties assigned from resources.

	* WsdlBuildProvider.cs: make the code actually work - get the
	physical path of VirtualPath instead of converting it to absolute
	URI path.
	Do not generate source, add the code unit to assembly builder
	instead.

	* XsdBuildProvider.cs: added

2007-05-08  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: BuildTemplateMethod is a delegate,
	so use a delegate create expression - it may make difference for
	languages other than C# (e.g. VisualBasic).

2007-05-07  Marek Habersack  <mhabersack@novell.com>

	* AspGenerator.cs: if the parser's language is implicit (i.e. set
	from the default configuration), the first script with the
	language attribute present sets the language of the parser.

2007-05-04  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: do not query the parent for
	TemplateSourceDirectory if we are generating code for a Master
	Page.

2007-04-30  Marek Habersack  <mhabersack@novell.com>

	* ConnectionStringsExpressionBuilder.cs: support expressions with
	suffixes .ProviderName and .ConnectionString (case-insensitie) and
	generate a call to GetConnectionStringProviderName in the former
	case. Fixes bug #81490

	* AppCodeCompiler.cs: support for cases when there exists a custom
	profile class but there is no App_Code directory or it's
	empty. Fixes bug #81489. 

	* TemplateControlCompiler.cs: fix generation of code for
	declarative attribute assignments of the form Font-Size="small"
	(i.e. when a font size is assigned a symbolic, relative size
	value). This fixes for example rendering of the 0th level of
	TreeView controls.

2007-04-27  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: do not look at the number of errors, check
	the compiler return code instead.
	Resolve assembly names from the global web.config to their
	locations before passing them to the compiler provider.

	* AssemblyBuilder.cs: as above

	* AppResourcesCompiler.cs: as above
	
	* AspComponentFoundry.cs: formatting changes.
	AssemblyFoundry looks for the specified namespace+type in the
	top-level assemblies if necessary.

2007-04-26  Marek Habersack  <mhabersack@novell.com>

	* AssemblyBuilder.cs: handle compilation failures in a better
	way.

	* PageCompiler.cs: the Master property must be in the partial
	class if present. Fixes bug #81442

2007-04-20  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: fix App_Code build when the directory
	contains both known and unknown files.

2007-04-19  Gert Driesen  <drieseng@users.sourceforge.net>

	* AspComponentFoundry.cs: Fixed build on 1.0 profile. Spaces to
	tabs.

2007-04-19  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: yet another method of detecting if we have a
	custom profile.

	* BaseCompiler.cs: as above
	
	* AspComponentFoundry.cs: implemented delayed loading of control
	assemblies. Fixes bug #81058.

2007-04-19  Gert Driesen  <drieseng@users.sourceforge.net>

	* BaseCompiler.cs: On 2.0, when ClassName attribute contains namespace
	then use it instead of the default ASP namespace. Fixes part of bug
	#81399.

2007-04-19  Marek Habersack  <mhabersack@novell.com>

	* BaseCompiler.cs: don't look at the number of profile properties
	when deciding if we have a custom profile. It is possible to have
	a profile that just inherits from a base class and does not list
	any custom properties. Fixes bug #81396.

	* AppCodeCompiler.cs: as above

2007-04-15  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: properly convert physical file path to
	virtual path for build providers.
	Make sure there's actually anything to compile.

2007-04-11  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: move custom profile type check till after
	the App_Code compilation is done. That way we can have custom
	profile providers in there. Fixes bug #81307.

2007-04-10  Marek Habersack  <mhabersack@novell.com>

	* AppResourceFilesCollection.cs: watch App_LocalResources for
	changes.

2007-04-06  Marek Habersack  <mhabersack@novell.com>

	* BaseCompiler.cs: display the source of the file in which the
	error actually happened if the file exists, or the unit
	otherwise.

2007-04-03  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: global resources are put in the
	"Resources." namespace while local ones are not. Fixes bug #81174
	which was reopened after r75261.

2007-03-26  Marek Habersack  <mhabersack@novell.com>

	* TemplateControlCompiler.cs: refactor assining properties from
	resources a bit to support pages and user controls. Fixes bug
	#81204.
	Process meta:resourcekey after all the field/attribute assignments
	are done. Fixes bug #80809.
	Clean the code up a bit.
	Use GetExpressionFromString to generate a correct expression for
	custom page/control attributes. Fixes bug #81132.

2007-03-21  Marek Habersack  <mhabersack@novell.com>

	* BaseCompiler.cs: cast 'this' to CodeFileBaseClass in
	AssignAppRelativeVirtualPath if the attribute was defined.

	* TemplateControlCompiler.cs: added support for setting custom
	attributes of a base class from the Page or Control directive
	attributes.

2007-03-20  Marek Habersack  <mhabersack@novell.com>

	* ResourceExpressionBuilder.cs: if the resource class key is null
	or empty, call GetLocalResourceObject, if not,
	GetGlobalResourceObject. Fixes bug #81174.

2007-03-16  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: produce message that makes more sense.

2007-03-15  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: handle global resource keys with dots
	the way MS.NET does. All the dots are replaced with underscores
	when generating the stronly-typed property.

2007-03-14  Marek Habersack  <mhabersack@novell.com>

	* AppResourcesCompiler.cs: Fix a bug with global resources file
	grouping where no translated resources were processed due to base
	name mismatch.

	* TemplateControlCompiler.cs: hadle situations when there exist a
	control in the page with id matching the name of a field/property
	in the parent class. In this case we use 'protected new' to
	override the parent.

2007-03-13  Marek Habersack  <mhabersack@novell.com>

	* AspParser.cs: fix an off-by-one parsing bug with server-side
	includes.

	* PageThemeCompiler.cs: let property builders through, stop the
	builders that have no control type. Fixes bug #81092

	* PageCompiler.cs: interfaces are to be implemented by the parent
	partial class, not the generated one.

	* AppResourceFilesCollection.cs: added separate constructor for
	local resources handling.

	* TemplateControlCompiler.cs: request the local resource object
	with proper virtual path.
	Put field declarations for controls in the partial class.
	Make sure builders are in valid state before trying to use them.

	* BaseCompiler.cs: added code to assing AppRelativeVirtualPath
	property in the page/control constructor.
	Change the generated code model for pages/controls to comply with
	the way MS.NET does (partial class contains only two properties
	plus declarations of all the controls, the actual control/page
	class inherits from the partial class). Fixes bug #81001.

	* AppResourcesCompiler.cs: does not require specifying manually
	whether it's a global or local resource compiler anymore. New
	constructors take care of that.
	Changed to compile local resources on demand, when a control/page
	is parsed.

2007-03-12  Marek Habersack  <mhabersack@novell.com>

	* AspParser.cs: revert r73587 as it breaks more than it	fixes.

	* AspComponentFoundry.cs: try to register foundries from App_Code
	assemblies if tag prefix and its namespace are defined. Fixes bug
	#78797.

	* BuildManager.cs, BaseCompiler.cs: CodeAssemblies is a collection
	of Assembly instances, not strings.

	* CachingCompiler.cs: make sure items in the CodeAssemblies and
	TopLevelAssemblies are really instances of the Assembly class
	before trying to use them.
	CodeAssemblies is a collection of Assembly instances, not
	strings.

	* AppCodeCompiler.cs: on MS.NET CodeAssemblies is a collection of
	assemblies, not paths to assemblies.

2007-03-10  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs, BaseCompiler.cs: refactoring: moved the
	CreateProfileProperty and InternalCreatePageProperty to
	BaseCompiler from PageCompiler.

	* GlobalAsaxCompiler.cs: generate the Profile property for the
	Global_asax class.

2007-03-09  Marek Habersack  <mhabersack@novell.com>

	* AppCodeCompiler.cs: Add the GetProfile method to the
	ProfileCommon auto-generated class.

	* AppResourcesCompiler.cs: attempt to load the resource file
	earlier in the process, to gracefully handle empty files.

	* ThemeDirectoryCompiler.cs: make compiled themes depend on the
	.skin and .css files composing the theme.

2007-03-05  Marek Habersack  <mhabersack@novell.com>

	* PageThemeCompiler.cs: Use correct theme path for
	AppRelativeTemplateSourceDirectory.
	Do not process builders of type CodeRenderBuilder.
	Make sure builder.ControlType is not null before depending on it.

	* ThemeDirectoryCompiler.cs: theme parser should be passed the
	virtual directory of the theme.

2007-03-03  Marek Habersack  <mhabersack@novell.com>

	* PageCompiler.cs: Added support for setting the
	MaintainScrollPositionOnPostBack property if the corresponding
	page directive attribute is found.

	* Directive.cs: added the MaintainScrollPositionOnPostBack and
	LinePragmas directives.

2007-03-02  Marek Habersack  <grendello@gmail.com>

	* AppCodeCompiler.cs: Correctly process App_Code directories which
	have no compilable files in the top-level directory. Fixes bug
	#80998.
	Write preservation files for the App_Code assemblies.

2007-03-01  Marek Habersack  <grendello@gmail.com>

	* AspParser.cs: fix GetVerbatim for cases when the end is
	e.g. --> or --%> and the string matched is ---> or ---%>
	respectively. The new code always backs out to make sure the end is
	matched correctly.

2007-02-27  Marek Habersack  <grendello@gmail.com>

	* TemplateControlCompiler.cs: ParseExpression returns an object,
	don't assume any concrete type.
	Use the current culture when converting the expression to a
	string.

	* ConnectionStringsExpressionBuilder.cs: Implement support for
	expressions of the <%$ ConnectionStrings:StringName %> form

2007-02-19  Marek Habersack  <grendello@gmail.com>

	* ResourceExpressionBuilder.cs: Do not prepend the .Resources prefix here

2007-02-16  Marek Habersack  <grendello@gmail.com>

	* CachingCompiler.cs, BaseCompiler.cs: Make sure that no assembly
	is referenced twice by the compiler(s).

	* TemplateControlCompiler.cs: Fix the problem with cultures which
	have a comma as their decimal separator and font/whatever
	units. New code does not reparse the text representation of the
	unit on the runtime (e.g. 0.9em) but instead it constructs the
	property using the FontUnit/Unit constructors which take,
	respectively, Unit and double/unittype parameters. This avoids
	culture-specific parsing.
	Also fix converting from invariant strings in a culture-aware
	environment (e.g. in a page that uses Culture="auto") during the
	page parsing phase.

2007-02-12  Marek Habersack  <grendello@gmail.com>

	* PreservationFile.cs: Support preservation (assembly mapping)
	files (the ones with .compiled extension in the ASP.NET temporary
	directory). This one implements a loader/saver class.

	* AppResourcesCompiler.cs: support for assembly name mapping.

	* AppCodeCompiler.cs: support for assembly name mapping.

2007-02-08  Marek Habersack  <grendello@gmail.com>

	* TemplateControlCompiler.cs: Fix TemplateSourceDirectory.

	* AspComponentFoundry.cs: Avoid duplicate control registration
	exception.

	* ResourceExpressionBuilder.cs: Make sure all the global resources
	are looked up using the "Resources." prefix.

	* AppResourcesCompiler.cs: Make sure all the global resources are
	embedded with the "Resources." prefix.

2007-02-02  Marek Habersack  <grendello@gmail.com>

	* AspGenerator.cs: Move the cache insert code to a separate method, for
	use from other places.

	* AspComponentFoundry.cs: Register controls mentioned in web.config, but
	defer their compilation to the moment when they are actually requested.

2007-01-22  Marek Habersack  <grendello@gmail.com>

	* ThemeDirectoryCompiler.cs: Make sure the code works for empty themes.

2007-01-20  Miguel de Icaza  <miguel@novell.com>

	* ClientBuildManager.cs: Remove unused variable (this could be a
	real problem, we never use the appPhysicalTargetDir) 

	* AssemblyBuilder.cs: Remove unused field.

	* AppResourceFilesCollection.cs: Remove unused field.

	* TemplateControlCompiler.cs (GetExpressionFromString): Remove
	unused variable. 

	* AppResourcesCompiler.cs: Remove unused variable.

	* AppSettingsExpressionBuilder.cs (GetAppSetting): remove unused
	parameter. 

	* PageCompiler.cs: Put InternalCreatePageProperty inside the
	NET_2_0 block to eliminate warnings.

2007-01-20  Gert Driesen  <drieseng@users.sourceforge.net>

	* BaseCompiler.cs: Fixed build on 1.0 profile.

2007-01-20  Marek Habersack  <grendello@gmail.com>

	* BaseCompiler.cs: If the control base type is in the root
	namespace, make sure global:: is prepended to it.

	* TemplateControlCompiler.cs: AutoHandlers is obsolete in 2.0,
        mark it as such in the generated code as well.	

	* AppCodeCompiler.cs: Include debug information if configured in
	web.config. Fixes bug #80096.

2007-01-17  Marek Habersack  <grendello@gmail.com>

	* AppCodeCompiler.cs: Reference toplevel assemblies (at this stage
	App_GlobalResources) when compiling App_Code sources.

	* CachingCompiler.cs: Reference toplevel assemblies when compiling
	e.g. Global.asax

	* AppResourcesCompiler.cs: Close the streams properly.

	* AspGenerator.cs: Don't ignore thead/tbody anymore.

2007-01-15  Marek Habersack  <grendello@gmail.com>

	* WsdlBuildProvider.cs: New build provider for WSDL files.
	Compile only when System.Web.Services are present.

	* TemplateControlCompiler.cs: Forgotten in the previous commit -
	don't pass the current culture to GetLocalResourceObject, let the
	method figure it out on its own.

2007-01-05  Marek Habersack  <grendello@gmail.com>

	* AppResourceFilesCollection.cs: new class to keep and manage
	collection of resource files for the App_{Global,Local}Resources
	folders.

	* TemplateControlCompiler.cs: rely on
	HttpContext.GetLocalResourceObject to select the correct culture.

	* AppResourceFileInfo.cs: new class for keeping resource files
	information.

	* AppResourcesCompiler.cs: new implementation.

2006-12-20  Marek Habersack  <grendello@gmail.com>

	* AssemblyBuilder.cs: add an internal version of the
	AddCodeCompileUnit method.

	* AppCodeCompiler.cs: implement support for ProfileCommon
	generation from properties named in the <profile> element in
	Web.config.

	* PageCompiler.cs: create the Profile property in 2.0 code.

2006-12-12  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* ThemeDirectoryCompiler.jvm.cs: fixed virtual path for themes

2006-12-10 Igor Zelmanovich <igorz@mainsoft.com>

	* ThemeDirectoryCompiler.cs: refactoring.

2006-11-28  Marek Habersack  <grendello@gmail.com>

	* BuildManager.cs: Add an internal property to signal whether or
	not we have any resources from App_{Global,Local}Resources

	* AspGenerator.cs: Register controls from
	system.web/pages/controls collection before parsing.

	* AppResourcesCompiler.cs: Let the build process know if we have
	compiled any resources from App_{Global,Local}Resources

2006-11-27  Marek Habersack  <grendello@gmail.com>

	* CachingCompiler.cs: Automatically reference App_Code
	assemblies.

	* AppCodeCompiler.cs: Add ~/bin/*.dll to the referenced assemblies
	when compiling.

2006-11-25  Marek Habersack  <grendello@gmail.com>

	* AppResourcesCompiler.cs: small optimizations.

	* AppResourceFilesCompiler.cs: small optimizations.

2006-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebServiceCompiler.cs: add the type to the cache after getting it
	from the compiled assembly.

2006-11-20  Marek Habersack  <grendello@gmail.com>

	* AppCodeCompiler.cs: Reference assemblies listed in
	system.web/compilation/assemblies.
	Don't create empty assemblies.

2006-11-19 Igor Zelmanovich <igorz@mainsoft.com>

	* TemplateControlCompiler.cs: fixed:
	When <%# Bind(...) %>-expression is used more then once for same control
	The variable associated with this control is declared only once.

2006-11-18  Marek Habersack  <grendello@gmail.com>

	* AppResourceFilesCompiler.cs: Fixed an exception thrown when
	files with names like File.resources or File.resx are found in the
	resource directories.

2006-11-16  Marek Habersack  <grendello@gmail.com>

	* ForceCopyBuildProvider.cs: Added the build provider for
	copy-only files.

	* MasterPageBuildProvider.cs: Added the build provider for Master
	Pages.

	* IgnoreFileBuildProvider.cs: Make the class sealed.

	* AppCodeCompiler.cs: Fixed BuildProvider creation for a path. Now
	correctly uses the BuildProviderCollection to retrieve the
	appropriate builder and maps the physical input file path into
	application relative path when setting the virtual path of the
	build provider.

2006-11-13  Marek Habersack  <grendello@gmail.com>

	* AssemblyBuilder.cs: Added referenced assemblies support. Added a
	constructor with just the CodeDomProvider argument. CreateCodeFile
	now uses the code provider's file extension. Added internal method
	to add pre-generated source code files. Added a BuildAssembly
	overload that takes no virtual path as  the
	parameter. BuildAssembly now uses an array of source files instead
	of compile units and also handles embedded resources and
	referenced assemblies. BuildAssembly deletes the temporary files
	if MONO_ASPNET_NODELET isn't set in the environment.

	* AppCodeCompiler.cs: Use the FileUtils methods for temporary file
	creation. Use the build providers collection to build unknown
	files in App_Code. Use AssemblyBuilder to compile the assembly.

	* AppResourceFilesCompiler.cs: Use the FileUtils methods for
	temporary file creation.

	* WebHandlerBuildProvider.cs: Added the BuildProviderAppliesTo
	attribute.

	* UserControlBuildProvider.cs: Added the BuildProviderAppliesTo
	attribute.

	* PageBuildProvider.cs: Added the BuildProviderAppliesTo
	attribute.

	* WebServiceBuildProvider.cs: Added the BuildProviderAppliesTo
	attribute.

	* IgnoreFileBuildProvider.cs: Added the BuildProviderAppliesTo
	attribute.

2006-11-08  Marek Habersack  <grendello@gmail.com>

	* BuildProvider.cs: Implemented the GetCustomString
	method. Removed the necessity to retrieve the CompilationSection
	twice when GetDefaultCompilerType is called.

	* AppResourcesCompiler.cs: Added resource compiler results
	handling.

	* AppCodeCompiler.cs: The App_Code compiler classes

	* BuildManager.cs: Implement the CodeAssemblies property.
	Added an internal TopLevelTypes property to be used in the custom
	GetType methods. Implemented the GetCompiledCustomString method.
	Implemented the GetType method overloads. Implemented the
	GetVirtualPathDependencies method.

	* BaseCompiler.cs: Reference the assemblies from App_Code, if any

2006-10-18  Marek Habersack  <grendello@gmail.com>

	* TemplateControlCompiler.cs: add support for resource
	expressions in tag attributes.

	* ResourceExpressionBuilder.cs: add support for resource
	expressions in tag attributes.

	* BaseCompiler.cs: add global/local resource assemblies to
	compilation references, if present.

	* AppResourcesCompiler.cs: global/local resources compiler.

	* AppResourceFilesCompiler.cs: compiler of resource files.

2006-10-03 Igor Zelmanovich <igorz@mainsoft.com>

	* TemplateControlCompiler.cs: fixed: Bind functions (Data-Binding Syntax).
	At run time, the Bind method calls the Eval method, if there is DataItem
	!= null to bind to.
	If there is DataItem == null (like InsertItemTemplate in FormView) Bind
	method don't raise exception and works properly to extract data from
	bounded controls on postback.
		
2006-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: if we are tracking non-server tags for
	well-formedness, handle tags that do not need to be closed (br, img,...)
	Fixes bug #79437.

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

	* PageCompiler.cs: support the EnableEventValidation attribute.

2006-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: after parsing an include file, don't error out if we
	still have opened tags unless this was the last file to parse. Fixes
	bug #79318.

2006-09-05  Konstantin Triger <kostat@mainsoft.com>

	* ParseException.cs: Ensure the source file stream is closed.

2006-08-25  Kornél Pál  <kornelpal@gmail.com>

	* AppSettingsExpressionBuilder.cs: Use assembly name constants.
	* ConnectionStringsExpressionBuilder.cs: Use name reference
	  constants.
	* ResourceExpressionBuilder.cs: Use assembly name constants.

2006-08-20  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* ThemeDirectoryCompiler.jvm.cs: implemented GetCompiledInstance

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

	* ClientBuildManager.cs: handle domain shutdown and unload.
	Implemented some properties. Commented.

2006-08-10  Andrew Skiba  <andrews@mainsoft.com>

	* ThemeDirectoryCompiler.cs: render css path as a virtual path.

2006-08-08  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* added ThemeDirectoryCompiler.jvm.cs

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

	* PageThemeCompiler.cs: Don't generate a 'Items.Clear ()' call if
	the property Items does not exist. Patch by Marek Habersack that fixes
	bug #78971.

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

	* TemplateControlCompiler.cs: support assigning nullable types.
	Patch by Marek Habersack that fixes bug #78970.

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

	* TemplateControlCompiler.cs: make password work again.

2006-06-21 Juraj Skripsky <js@hotfeet.ch>

	* AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):
	MS.NET handles nested quotes differently for server controls and
	for "normal" controls. Add a property "AlternatingQuotes" to the
	tokenizer and let the parser decide whether it is well-formed or not.

2006-06-20 Andrew Skiba <andrews@mainsoft.com>

	* PageThemeCompiler.cs, TemplateControlCompiler.cs: take care of
	UrlPropertyAttribute.

2006-06-18 Andrew Skiba <andrews@mainsoft.com>

	* TemplateControlCompiler.cs: check IsWritablePropertyOrField before
	generating code for assignment statement and DataBind event.
	
2006-06-15 Juraj Skripsky <js@hotfeet.ch>

	* AspTokenizer.cs (ReadAttValue), AspParser.cs (GetAttributes):
	Don't allow an attribute value to contain the same quote characters
	as the ones used for delimiting the value itself. Add a token
	NOTWELLFORMED to signal that case to AspParser. Fixes bug #78643.

2006-06-08	Konstantin Triger <kostat@mainsoft.com>

	* ThemeDirectoryCompiler.cs: use physical path instead of virtual path.

2006-04-24  Andrew Skiba  <andrews@mainsoft.com>

	* ThemeDirectoryCompiler.cs: use UrlUtils.Combine to combine pathes

2006-04-23  Andrew Skiba  <andrews@mainsoft.com>

	* PageThemeCompiler.cs: initialize __linkedStyleSheets field with the
	array of style sheets from the parser
	* ThemeDirectoryCompiler.cs: scan *.css files in theme directory and
	put them in LinkedStyleSheets of PageThemeParser

2006-04-20  Chris Toshok  <toshok@ximian.com>

	* BaseCompiler.cs: for 2.0, emit the correct namespace and class
	names in the case where you use "NS.ClassName" in the Inherits
	attribute.  Fixes bug #78135.

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

	* CachingCompiler.cs: no need to play the Wait/PulseAll game, as we
	already acquired the lock even when we might have not created the 'key'
	to the compilation ticket.

2006-04-16  Andrew Skiba <andrews@mainsoft.com>

	* ThemeDirectoryCompiler.cs: add to the directory parser all the
	assemblies found by PageThemeFileParsers

2006-04-12  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Properly read all content of
	string properties.

2006-04-11  Andrew Skiba <andrews@mainsoft.com>

	* TemplateControlCompiler.cs : fix for partial parsers

2006-04-11  Andrew Skiba <andrews@mainsoft.com>

	* ThemeDirectoryCompiler.cs : map the virtual path to the physical
	path

2006-04-08  Miguel de Icaza  <miguel@novell.com>

	* TemplateControlCompiler.cs: An attempt to fix the regression
	introduced in r58505 (a bug fix for 77762).   This was reported in
	the mailing list with a batch of new 2.0 failures.

	We really need a test suite in NUnit to check on ASP.NET aspx
	changes.

2006-03-27  Robert Jordan  <robertj@gmx.net>

	* CachingCompiler.cs:  change the compilation locking scheme
	from "one mcs per process" to "one mcs per file".

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

	* System.Web.Compilation/TemplateControlCompiler.cs: handle the new
	StringPropertyBuilder.

2006-03-24  Chris Toshok  <toshok@ximian.com>

	* BaseCompiler.cs (GetCompiledType): fall back to CodeDomProvider
	if system.web/compilation doesn't list a compiler for our
	language.

2006-03-13  Chris Toshok  <toshok@ximian.com>

	* TemplateControlCompiler.cs (InitMethod): when generating the
	call to ApplyStyleSheetSkin, don't just blindly pass "this" as the
	argument to it.  Only do that if the class we're compiling is
	actually a subclass of Page.  If it's not, pass this.Page.

2006-03-07  Chris Toshok  <toshok@ximian.com>

	* AspGenerator.cs: refactor the parsing code so that we can
	initiate parsing from outside this class.

	* PageCompiler.cs (PrependStatementsToFrameworkInitialize): new
	method, add our StyleSheetTheme assignment here.
	(AppendStatementsToFrameworkInitialize): rename AddStatements* to
	this.

	* TemplateControlCompiler.cs (EnsureID): make protected.
	(CreateAssignStatementsFromAttributes): same
	(AddChildCall): same.
	(CreateControlTree): same.
	(CreateFrameworkInitializeMethod): change
	"AddStatementsToFrameworkInitialize" to
	"AppendStatementsToFrameworkInitialize", and add call to
	"PrependStatementsToFrameworkInitialize" before the generation of
	"base.FrameworkInitialize()."

	* PageThemeCompiler.cs (CreateControlSkinMethod): remove spew.

2006-03-07  Chris Toshok  <toshok@ximian.com>

	* ThemeDirectoryCompiler.cs: new file.

	* PageThemeCompiler.cs: new file.

2006-03-07  Chris Toshok  <toshok@ximian.com>

	* BaseCompiler.cs: fix typo in "initialize" in multiple places.
	(Init): move the CreateMethods call here.

2006-03-02  Chris Toshok  <toshok@ximian.com>

	* TemplateControlCompiler.cs (InitMethod): emit an assignment for
	SkinID just after the creation of our object, and right after that
	call "_ctrl.ApplyStyleSheetSkin (page)".
	(CreateAssignStatementsFromAttributes): split out the majority of
	this code to CreateAssignStatementFromAttribute, and change this
	method to simply a loop over the attribute keys.  In the 2.0 case,
	skip the SkinID property, since that's handled explicitly in
	InitMethod.

	* PageCompiler.cs (AddStatementsToInitMethod): emit assignments
	for Theme and StyleSheetTheme.

2006-02-23  Chris Toshok  <toshok@ximian.com>

	* TemplateControlCompiler.cs (AddContentTemplateInvocation): track
	change from ContentControlBuilderInternal to
	ContentBuilderInternal.
	(AddCodeRender): same.

2006-02-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AssemblyBuilder.cs:
	* BuildManager.cs: compile the assembly from AssemblyBuilder and use
	GetGeneratedType() on the BuildProvider instead of loading the assembly
	and trying a wild guess at the type name.

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

	* GlobalAsaxCompiler.cs:
	* PageCompiler.cs:
	* TemplateControlCompiler.cs: CreateMethods is now internal.

	* WebServiceBuildProvider.cs:
	* PageBuildProvider.cs:
	* UserControlBuildProvider.cs:
	* WebHandlerBuildProvider.cs: new build providers.

	* BuildProvider.cs: add assemblies.

	* BaseCompiler.cs: expose the provider and the compile unit through
	properties.

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

	* CompilerType.cs: implemented.

	* AssemblyBuilder.cs: implemented most of it.

	* WebServiceCompiler.cs:
	* CachingCompiler.cs: update 2.0 compiler instance creation code.

	* ClientBuildManager.cs: implemented some of its methods. Not yet
	ready.

	* BuildManager.cs: the more interesting methods are implemented now.

	* BaseCompiler.cs: delete the temporary files in case of error.

	* BuildProvider.cs: implemented the Get*Compiler* protected methods.

2006-02-07  Chris Toshok  <toshok@ximian.com>

	* TemplateControlCompiler.cs (AddParsedSubObjectStmt): append the
	calls to AddParsedSubObject to a special statement collection --
	builder.flushOutputStatements -- not to builder.method.Statements.
	(InitMethod): initially, set flushOutputStatements to
	method.Statements.  If we're dealing with a ContentPlaceHolder,
	set flushOutputStatements to be the else block of a conditional we
	create.  This causes the compiled control to fall back to the
	ContentPlaceHolder's child controls in case there's no
	corresponding Content template.
	(AddChildCall): use methodStatements instead of method.Statements.
	(CreateControlTree): same.

	* PageCompiler.cs (CreatePropertyAssign): factor out the
	string,string implementation and add one that also takes a
	CodeExpression; make the string,string implementation call the
	three arg one with thisRef.
	(AddStatementsToInitMethod): make use of the 3-arg form of
	CreatePropertyAssign to reduce code.  Also, add support for
	setting the page's Title from the parser's Title.

2006-02-07  Chris Toshok  <toshok@ximian.com>

	* UserControlCompiler.cs (AddStatementsToInitMethod): emit code to
	assign __ctrl.MasterPageFile to our master page, if we have one.

	* PageCompiler.cs (CreateContructor): remove the MasterPageFile
	assignment from here.
	(AddStatementsToInitMethod): and move it here.
	
	* TemplateControlCompiler.cs (InitMethod): in the case where
	builder is a RootBuilder (we're building the __BuildControlTree
	method), call a virtual method so that subclasses can add their
	own statements to the method (used by both Page and MasterPage);
	Also, in the RootBuilder case, the argument should be the
	parser.ClassName type (the class we're building); lastly, expand
	the ContentPlaceHolder logic to include all the
	ContentTemplates/InstantiateIn magic.
	(AddStatementsToInitMethod): empty virtual method.
	(AddContentTemplateInvocation): ContentControlBuilder ->
	ContentControlBuilderInternal.
	(CreateControlTree): same.
	(CallBaseFrameworkInitialize): new function, create call to
	base.FrameworkInitialize.
	(CreateFrameworkInitializeMethod): call CallBaseFrameworkIniitialize.

2006-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IgnoreFileBuildProvider.cs: it's not public.
	* BuildProvider.cs: mostly implemented.

2006-02-01  Chris Toshok  <toshok@ximian.com>

	* WebServiceCompiler.cs: CONFIGURATION_2_0 => NET_2_0, and use
	GetSection instead of GetWebApplicationSection.

	* CachingCompiler.cs: same.

	* AspGenerator.cs: same.

	* BaseCompiler.cs: same.
	
2006-01-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: ignore 'thead'. Fixes bug #77326.

2006-01-22  Chris Toshok  <toshok@ximian.com>

	* IgnoreFileBuildProvider.cs: build provider which does nothing.

2006-01-22  Chris Toshok  <toshok@ximian.com>

	* AspComponentFoundry.cs (.ctor): use a 2.0 friendly form of the
	Hashtable ctor to silence a couple of warning.
	(CompoundFoundry.ctor): same

	* Directive.cs (InitHash): use a 2.0 friendly form of the
	Hashtable ctor to silence a couple of warning.

	* TagAttributes.cs (MakeHash): use a 2.0 friendly form of the
	Hashtable ctor to silence a warning.
	(GetDictionary): same.

2006-01-22  Chris Toshok  <toshok@ximian.com>

	* AppSettingsExpressionBuilder.cs: implement this, patterning it
	after an example on msdn.  Also, enable the ExpressionEditor
	attribute, but use the string rather than the Type overload so we
	won't have yet another circular dep.

	* ConnectionStringsExpressionBuilder.cs: partial implementation.
	Same deal with the ExpressionEditor attribute.

	* ResourceExpressionBuilder.cs: same deal with the
	ExpressionEditor attribute.
	
2006-01-20  Chris Toshok  <toshok@ximian.com>

	* ResourceExpressionBuilder.cs (ParseExpression): implement.

	* ResourceExpressionFields.cs: implement.

2006-01-20  Chris Toshok  <toshok@ximian.com>

	* ClientBuildManagerParameter.cs: implement.

	* ClientBuildManagerCallback.cs: this class contains an empty
	default implementation.

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

	* AspGenerator.cs: add support for 'src' in <script runat="server">.
	Fixes bug #77150.

2006-01-04  Chris Toshok  <toshok@ximian.com>

	* WebServiceCompiler.cs (GetCompiledType): add CONFIGURATION_2_0
	code.

	* AspGenerator.cs (CheckLanguage): add CONFIGURATION_2_0 code.

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

	* AspGenerator.cs: fix yesterday's fix.

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

	* AspGenerator.cs: only do special processing for <script> if it has
	the runat="server" attribute. Fixes bug #76918.

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

	* TemplateControlCompiler.cs: treat LightGrey as a synonym of LightGray.
	Fixes bug #76677.

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

	* TemplateControlCompiler.cs: handle data bound attributes for html
	controls. Fixes bug #76785.

2005-11-28  Chris Toshok  <toshok@ximian.com>

	* CachingCompiler.cs (Compile): CONFIGURATION_2_0 work.

	* BaseCompiler.cs (GetCompiledType): CONFIGURATION_2_0 work.

2005-11-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebServiceCompiler.cs: fixed caching for web handlers.

2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: don't change case for verbatim IDs.
	Fixes bug #76657.

2005-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: when processing verbatim input, throw if we reach EOF
	before the expected end of the data.

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

	* CachingCompiler.cs: 
	* WebServiceCompiler.cs: when caching a type loaded from an assembly
	that we didn't compile, make it depend on the file itself, not on a
	non-existing cache key. This problem affected performance of web
	services and .ashx, making unnecessary extra calls to LoadFrom every
	time the cache was cleared.

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

	* BaseCompiler.cs: set the domain's DynamicBase property instead of
	guessing it in BaseCompiler.

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

	* WebServiceCompiler.cs: apply the same fix as in r45440 that fixed bug
	75146 for pages/controls.

2005-08-09  Miguel de Icaza  <miguel@novell.com>

	* WebServiceCompiler.cs: Use the new DynamicDir method.

	* BaseCompiler.cs: Use the DynamicBase property as a hint, but
	since this value is null most of the time, compute the real value.

	Added Bonus: if the directory has some kind of permission problem,
	try a different directory name.

2005-07-13  Miguel de Icaza  <miguel@novell.com>

	* AspGenerator.cs (AspGenerator.CheckLanguage): Use
	BaseParser.Context for the context. 

2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TagAttributes.cs:
	* AspParser.cs:
	* TemplateControlCompiler.cs: use invariant culture versions of starts/
	endswith.

2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: comparison between member name and the
	first part of the id provided by the user should also be
	case-insensitive. Fixes bug #75379.

2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CachingCompiler.cs: use cache.InsertPrivate.
	* AspGenerator.cs: use cache.InsertPrivate. Removed extra call to
	AddDependency.

2005-06-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CachingCompiler.cs: create the assemly in the DynamicBase directory,
	as all the others, when compiling an assembly from a Src file. Fixes
	bug #75371.

2005-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: if the property is not found, don't forget
	about trying the field.

2005-06-13  Lluis Sanchez Gual <lluis@novell.com>

	* Directive.cs: Register the MasterType directive.
	* PageCompiler.cs: If a MasterType is specified, add a type specific
	Master property. All this fixes bug #75192.

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

	* TemplateControlCompiler.cs: when mapping an attribute name to a field
	or property name, there's no need to try with every property and field,
	but just the one found when searching by name (no case). There was one
	call to ProcessPropertiesAndFields per property or field until found,
	now only one if the property/field is found, none otherwise.

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

	* TemplateControlCompiler.cs: allow more than 2 levels when looking for
	properties of fields for an attribute like "Prop1-Prop2-Prop3". Fixes
	bug #75234.

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

	* BaseCompiler.cs: when the OutputAssembly is null, we can still have
	the assembly file there and be able to load it. Thanks to Rogerio and
	Mark.

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

	* AspParser.cs: InvariantCulture love.

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

	* TemplateControlCompiler.cs: use the Page AddContentTemplate method,
	as the one in Master is protected. Fixes bug #75157.

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

	* AspComponentFoundry.cs: tagnames have precedence over types in
	assemblies when they use the same prefix. Fixes bug #71855.

2005-05-03  Lluis Sanchez Gual <lluis@novell.com>

	* WebServiceCompiler.cs: Create the temp directory before
	creating the web service source code file.

2005-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: when checking languages, try to match other aliases
	too (ie, 'cs' == 'c#').

2005-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* BaseCompiler.cs: check that DynamicBase directory exists before
	creating the TempFileCollection.

2005-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspGenerator.cs: use a stack for non-server tags even before getting
	to a form. Fixes bug #70274.

2005-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AspParser.cs: don't error out on ill formed tags if it's not a server
	tag (ie, allow something like '<table align="left cellpadding="0">' to
	work, as MS does. Fixes bug #67909.

2005-04-20 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
	* BaseCompiler.cs: do the bridge of Explicit/Strict attributes from
	@Page/@Control directives to CodeDOM (VB.NET support)

2005-04-19  Lluis Sanchez Gual <lluis@novell.com>

	* AspParser.cs: Fixed parsing of data binding tags in server
	tag attributes. Allow <%...%> blocks not assigned to
	attributes in client tags.
	* TagAttributes.cs: Make sure that data binding blocks in server
	tags are always assigned to attributes.

2005-04-15  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Implemented support for two-way
	binding.

2005-04-14  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Use the new BindingContainerType
	property to find the type of the binding container. 
	
2005-04-07  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Avoid using the GetConverter() trick
	for primitive types. Parse an empty color string as Color.Empty.
	Get the converter for a property using its PropertyDescriptor.
	
2005-04-05  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Don't autogenerate IDs for
	controls inside Content template.

2005-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TemplateControlCompiler.cs: make typedesc.aspx work again.

2005-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ExpressionBuilderContext.cs:
	* ExpressionBuilder.cs: implemented.

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

	* AspGenerator.cs: don't fail on <tbody runat=server>. Fixes bug #71856.

2005-01-28  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: When generating a property value,
	check for TypeConverterAttribute in the PropertyInfo, not only in the
	property type.
	Implemented code generation using InstanceDescriptor, when the type
	converter supports conversion to that type.

2005-01-21  Lluis Sanchez Gual <lluis@novell.com>

	* Directive.cs: Added MASTER directive.
	* AspGenerator.cs: Use UserControlCompiler for compiling master pages.
	* PageCompiler.cs: Set the master file name when generating the page.
	* TemplateControlCompiler.cs: When generating the method for a
	content holder, register the content holder in the base MasterPage.
	Added method for registering a Content control for a MasterPage.
	Generate code for Content controls.

2005-01-10  Lluis Sanchez Gual <lluis@novell.com>

	* TemplateControlCompiler.cs: Get the container type from the
	template (if it was defined using TemplateContainerAttribute.

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

	* AspGenerator.cs: correctly process script tags that self-closing.
	Fixes bug #69657.

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

	* CachingCompiler.cs: when compiling a single .cs file, add the file
	itself to dependencies. Fixes bug #68788.

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

	* ControlBuilder.cs: don't close server tags when we get to a closing
	tag that is not applied to a server control. Fixes bug #60323.

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

	* WebServiceCompiler.cs: fix buglet in my last commit.

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

	* BaseCompiler.cs:
	* CachingCompiler.cs:
	* WebServiceCompiler.cs: correctly cache Type instead of the assembly
	for ashx/asmx. Otherwise we need to open the file and check for the
	class name in there. Thanks to Ben for pointing this out.

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

	* AspParser.cs:
	* AspTokenizer.cs: prevent quotes from being swallowed when we're 
	inside a server tag and they are the next non-whitespace character.
	Fixes bug #63451.

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-08-02  Duncan Mak  <duncan@ximian.com>

	* BuildProviderResultFlags.cs: 	
	* IImplicitResourceProvider.cs: 
	* ImplicitResourceKey.cs:
	* IResourceReader.cs: Added.

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.