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: 5cc7e298a5b0997d492c7a2344e9fa25add07354 (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
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.