for TARGET_J2EE only:
[mono.git] / mcs / class / System.Web / System.Web.Handlers / ChangeLog
1 2007-12-13  Marek Habersack  <mhabersack@novell.com>
2
3         * AssemblyResourceLoader.cs: speed optimization - use String.Concat
4         instead of String.Format in some cases.
5
6 2007-11-12 Igor Zelmanovich <igorz@mainsoft.com>
7
8         * AssemblyResourceLoader.cs:
9         according to the tests, GetResourseUrl never returns null.      
10
11 2007-11-12 Igor Zelmanovich <igorz@mainsoft.com>
12
13         * AssemblyResourceLoader.cs:
14         optimize performance of WebResource/ScriptResource feature.
15         All resource urls are cached for each assembly instead to be 
16         calculated each time when GetWebResourceUrl is called
17
18 2007-11-06 Igor Zelmanovich <igorz@mainsoft.com>
19
20         * AssemblyResourceLoader.cs:
21         makes it works for System.Web.Extensions.       
22
23 2007-11-02 Juraj Skripsky  <js@hotfete.ch>
24
25         * AssemblyResourceLoader.cs: As the assembly name is encrypted via
26         EncryptAssemblyResource, we mustn't UrlEncode it anymore.
27
28 2007-11-01  Marek Habersack  <mhabersack@novell.com>
29
30         * AssemblyResourceLoader.cs: added GetHexString, copied from
31         FormsAuthentication.cs. Encryption/decryption routines use methods
32         from the new MachineKeySectionUtils class. This is needed for the
33         same code to work from both System.Web and System.Web.Extensions.
34
35 2007-10-31  Marek Habersack  <mhabersack@novell.com>
36
37         * AssemblyResourceLoader.cs: implemented assembly+resource name
38         encryption in the URLs. This follows MS.NET behavior. Also the
39         code is not varying the cache on the 't' parameter. Fixes bug
40         #338051.
41
42 2007-10-30 Juraj Skripsky  <js@hotfete.ch>
43
44         * AssemblyResourceLoader.cs: Always use '&' as query parameter
45         separator, as HttpUtility does not support ';' anymore.
46
47 2007-08-23 Igor Zelmanovich <igorz@mainsoft.com>
48
49         * AssemblyResourceLoader.cs: for SYSTEM_WEB_EXTENSIONS only:
50         fixed JSON serialization of resources.
51
52 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
53
54         * AssemblyResourceLoader.cs: use the right static constructor name
55         if SYSTEM_WEB_EXTENSIONS is defined.
56
57 2007-08-06  Vladimir Krasnov  <vladimirk@mainsoft.com>
58
59         * AssemblyResourceLoader.cs: performance optimization, caching urls for
60         built-in resources
61         fixed CacheControl, should be private
62         added HttpException if resource is not found
63
64 2007-07-16 Igor Zelmanovich <igorz@mainsoft.com>
65
66         * AssemblyResourceLoader.cs:
67         fixed RegEx used for PerformSubstitution feature.
68
69 2007-07-11 Igor Zelmanovich <igorz@mainsoft.com>
70
71         * AssemblyResourceLoader.cs:
72         for System.Web.Extensions only:
73         ScriptResourceName may include ".resource" suffix.
74
75 2007-07-03 Igor Zelmanovich <igorz@mainsoft.com>
76
77         * AssemblyResourceLoader.cs:
78         implemented WebResourceAttribute.PerformSubstitution feature.
79
80 2007-06-20  Vladimir Krasnov  <vladimirk@mainsoft.com>
81
82         * AssemblyResourceLoader.cs: GetResourceUrl, fixed typo
83
84 2007-06-18 Igor Zelmanovich <igorz@mainsoft.com>
85
86         * AssemblyResourceLoader.cs: refactoring:
87         make the code reusable in System.Web.Extensions.        
88
89 2007-05-30  Vladimir Krasnov  <vladimirk@mainsoft.com>
90
91         * AssemblyResourceLoader.cs: GetResourceUrl, TARGET_JVM will use type's
92         hashcode for resource url
93
94 2007-04-06  Marek Habersack  <mhabersack@novell.com>
95
96         * AssemblyResourceLoader.cs: use the correct query parameter
97         separator char for the current platform version. Fixes bug
98         #80633.
99
100 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
101
102         * TraceHandler.cs: class status fixes.
103
104 2006-01-26  Chris Toshok  <toshok@ximian.com>
105
106         * AssemblyResourceLoader.cs (GetResourceUrl): if the assembly
107         corresponds to an on-disk file, append the last write time to the
108         url so we can enable client side caching.
109         (ProcessRequest): tell the client to cache the url for 1 year, and
110         have it vary by 'r' (resource name) and 't' (assembly timestamp).
111
112 2006-01-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
113
114         * TraceHandler.cs: when clearing trace data, remove 'clear=1' from the
115         query string. Fixes bug #77072.
116
117 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
118
119         * AssemblyResourceLoader.cs: Class is sealed in 2.0.
120         * TraceHandler.cs: Added security permissions on class (LinkDemand and
121         InheritanceDemand for AspNetHostingPermission) and on ctor (Demand for
122         UnmanagedCode). Stubbed new protected methods for 2.0.
123
124 2004-11-18  Lluis Sanchez Gual <lluis@novell.com>
125
126         * AssemblyResourceLoader.cs: Use a special name when encoding a resource
127         from the System.Web assembly.
128
129 2004-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
130
131         * TraceHandler.cs: error code is 403 and the message different when
132         trace is enabled but not for remote clients.
133
134 2004-07-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
135
136         * TraceHandler.cs: check that trace is enabled or throw.
137
138 2004-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
139
140         * TraceHandler.cs: Added protected missing members and attributes.
141
142 2004-01-10  Jackson Harper <jackson@ximian.com>
143
144         * TraceHandler.cs: Obey localOnly attribute.
145         
146 2004-01-10  Jackson Harper <jackson@ximian.com>
147
148         * TraceHandler.cs: Implement.
149         
150 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
151
152         * AssemblyResourceLoader.cs: fixed compilation under MS. Ben already
153         filed a bug report.
154
155 2003-11-04 Jackson Harper <jackson@ximian.com>
156
157         * AssemblyResourceLoader.cs: No method body for v1. This fixes the
158         build.
159         
160 2003-11-04 Ben Maurer  <bmaurer@users.sourceforge.net>
161
162         * AssemblyResourceLoader.cs: New file. New v2 handler.
163
164 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
165
166         * ChangeLog: New file.
167         * TraceHandler.cs: stubbed out. This should generate the trace page
168         when tracing is enabled.
169