2007-01-11 Adar Wesley <adarw@mainsoft.com>
[mono.git] / mcs / class / System.Web / System.Web.Hosting / ChangeLog
1 2007-01-11  Adar Wesley <adarw@mainsoft.com>
2
3         * ApplicationHost.cs: fixed AppDomain initialization of physical
4         path to be in file system semantics
5
6 2006-12-22  Marek Habersack  <grendello@gmail.com>
7
8         * HostingEnvironment.cs: implemented the SetCultures methods.
9
10 2006-12-19 Igor Zelmanovich <igorz@mainsoft.com>
11
12         * ServletWorkerRequest.cs: fixed:
13         Path.Combine is used in GetFilePathTranslated to consider 
14         platform-depended PathSeparator char.
15
16 2006-12-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
17
18         * ServletWorkerRequest.jvm.cs: fixed request uri unescaping in
19         ServletWorkerRequest ctor
20
21 2006-11-24  Miguel de Icaza  <miguel@novell.com>
22
23         * ApplicationHost.cs: In 2.0, as Todd reports the default is
24         "Web.Config", try that before we tell people to use MONO_IOMAP=all ;-)
25
26 2006-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27
28         * ApplicationHost.cs: the new Directory code throws if the directory
29         exists, so handle that as gracefully as possible.
30
31 2006-08-23 Konstantin Triger <kostat@mainsoft.com>
32
33         * ServletWorkerRequest.jvm.cs: fix default page resolution.
34
35 2006-08-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
36
37         * BareApplicationHost.cs:
38         * ApplicationManager.cs: remove unloaded domains.
39
40 2006-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
41
42         * SimpleWorkerRequest.cs: use UrlUtils instead of Path. Several fixes
43         to make PathInfo + SimpleWorkerRequest work as in MS.
44
45 2006-03-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
46
47         * ServletWorkerRequest.jvm.cs: fixed ctor, UrlDecode applied on 
48         requested url
49         fixed GetRawUrl, removed protocol, hostname and port
50         fixed GetUriPath, _requestUri is always initialized
51
52 2006-03-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
53
54         * ApplicationHost.cs: ShadowCopyDirectories is not a URL. Set
55         PrivateBinPath to the same value.
56
57 2006-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
58
59         * BareApplicationHost.cs: initialize paths from AppDomain data. New
60         GetCodeGenDir().
61         * ApplicationHost.cs: in 2.0 the physical path is turned into an
62         absolute path.
63
64 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
65
66         * ApplicationManager.cs: new internal method to create/reuse a
67         BareApplicationHost from ClientBuildManager.
68
69 2006-02-28  Chris Toshok  <toshok@ximian.com>
70
71         * IAppDomainFactory.cs: corcompare work.
72
73         * IAppManagerAppDomainFactory.cs: same
74
75         * IISAPIRuntime.cs: same.
76
77 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
78
79         * ApplicationManager.cs: implemented ShutdownAll().
80         * HostingEnvironment.cs: remove MonoTODO.
81
82 2006-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
83
84         * BareApplicationHost.cs: class used as an entry point into each
85         application domiain from the ApplicationManager.
86         * ApplicationManager.cs: implemented most of the remaining methods.
87         * HostingEnvironment.cs: object handling methods are now implemented.
88
89 2006-02-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
90
91         * DefaultVirtualPathProvider.cs: add some comments/TODO.
92         * HostingEnvironment.cs: initialize the default value for
93         VirtualPathProvider.
94
95 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
96
97         * HostingEnvironment.cs: MapPath is done.
98
99 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
100
101         * DefaultVirtualDirectory.cs: implemented missing bits.
102         * DefaultVirtualFile.cs: fix ctor scope.
103         * DefaultVirtualPathProvider.cs: implemented GetFile and GetDirectory.
104
105 2006-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
106
107         * DefaultVirtualDirectory.cs:
108         * DefaultVirtualPathProvider.cs:
109         * VirtualFile.cs:
110         * DefaultVirtualFile.cs: almost done with the default
111         VirtualPathProvider which just maps to on-disk directories/files.
112
113 2006-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
114
115         * SimpleWorkerRequest.cs: implemented RootWebConfigPath.
116         * HostingEnvironment.cs: implemented RegisterVirtualPathProvider and
117         a few other defaults.
118
119 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
120
121         * AppManagerAppDomainFactory.cs: stubbed out.
122
123         * ApplicationInfo.cs:
124         * ApplicationManager.cs: add 2 new classes.
125
126 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
127
128         * VirtualPathProvider.cs: implemented OpenFile.
129         * VirtualFile.cs: removed stuff cut&pasted from VirtualDirectory.
130
131         * SimpleWorkerRequest.cs: 
132         * HostingEnvironment.cs: class status fixes.
133
134 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
135
136         * IProcessHostFactoryHelper.cs:
137         * IProcessPingCallback.cs:
138         * IProcessHost.cs:
139         * IProcessHostSupportFunction.cs:
140         * IHttpWorkerRequestHandler.cs:
141         * IQueueHost.cs:
142         * IApplicationHost.cs: removed all this. They are not longer part of the
143         public API.
144
145 2006-01-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
146
147         * VirtualDirectory.cs:
148         * VirtualPathProvider.cs:
149         * VirtualFileBase.cs:
150         * VirtualFile.cs: implemented this base classes.
151
152         * HostingEnvironment.cs: implemented a few properties by using the ones
153         in HttpRuntime.
154
155 2006-01-24  Konstantin Triger <kostat@mainsoft.com>
156
157         * ServletWorkerRequest.jvm.cs: convert .invoke requests to PathInfo,
158                 remove ToUpper usage.
159
160 2006-01-19  Konstantin Triger <kostat@mainsoft.com>
161
162         * ServletWorkerRequest.jvm.cs: refactoring.
163
164 2005-11-28  Robert Jordan  <robertj@gmx.net>
165
166         * SimpleWorkerRequest.cs: fixed MapPath () for the case
167         app_virtual_dir.Length == 1 && path.Length == 1.
168         * SimpleWorkerRequest.cs: implemented SendResponseFromMemory ().
169
170 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
171
172         * ApplicationHost.cs: make this work with paths that that
173         contain non-ASCII characters. Fixes bug #76807.
174
175 2005-11-02  Chris Toshok  <toshok@ximian.com>
176
177         * HostingEnvironment.cs: completely NIE'ed implementation of
178         HostingEnvironment, just to get an MS example provider to compile.
179
180 2005-11-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
181
182         * ApplicationHost.cs: use the AbsolutePath from the Uri to remove the
183         schema prefix if present.
184
185 2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
186
187         * SimpleWorkerRequest.cs: all tests pass now.
188
189 2005-09-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
190
191         * ApplicationHost.cs: append a directory separator char to the physical
192         path. Fixes bug #76187.
193
194 2005-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
195
196         * SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'.
197
198 2005-09-10  Sebastien Pouliot  <sebastien@ximian.com>
199
200         * AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for
201         UnmanagedCode on ctor. Added TODO on unimplemented method.
202         * ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for 
203         UnmanagedCode on ctor. Removed duplicate null checks.
204         * ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and 
205         IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand 
206         for UnmanagedCode on ctor.
207         * SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not
208         sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added
209         FileIOPermission for PathDiscovery before returning processed paths.
210
211 2005-09-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
212
213         * ApplicationHost.cs: set the domain's DynamicBase property instead of
214         guessing it in BaseCompiler.
215
216 2005-09-08  Eyal Alalouf  <eyala@mainsoft.com>
217         * ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile
218
219 2005-07-24  Eyal Alalouf  <eyala@mainsoft.com>
220         * ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG
221
222 2005-07-18  Eyal Alalouf  <eyala@mainsoft.com>
223
224         * Added ServletWorkerRequest.jvm.cs
225
226 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
227
228         * IISAPIRuntime.cs: GUID changed.
229
230 2004-08-03  Atsushi Enomoto  <atsushi@ximian.com>
231
232         * IApplicationHost.cs : missing namespace import.
233
234 2004-08-02  Duncan Mak  <duncan@ximian.com>
235
236         * IApplicationHost.cs (MapPath): Add [In] attribute.
237
238         * IAppManagerAppDomainFactory.cs:
239         * IProcessHostSupportFunction.cs: signature fixes.
240         
241 2004-08-02  Duncan Mak  <duncan@ximian.com>
242
243         * IApplicationHost.cs:
244         * IHttpWorkerRequestHandler.cs:
245         * IProcessHost.cs:
246         * IProcessHostFactoryHelper.cs:
247         * IProcessHostSupportFunction.cs:
248         * IProcessPingCallback.cs:
249         * IQueueHost.cs:
250         * IRegisteredObject.cs: Added interfaces.
251         
252 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
253
254         * IAppDomainFactory.cs: added missing marshalling attributes
255         * IISAPIRuntime.cs: added missing marshalling attributes
256
257 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
258
259         * AppDomainFactory.cs: set the Dynamic base for the AppDomain.
260
261 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
262
263         * SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes
264         MapPath when the virtual directory is the root virtual directory.
265
266 2004-01-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
267
268         * IISAPIRuntime.cs: Fixed wrong attribute
269
270 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
271
272         * SimpleWorkerRequest.cs: Added missing attribute
273         * IISAPIRuntime.cs: Added attributes, fixed signature
274         * IAppDomainFactory.cs: Added attributes, fixed signature
275
276 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
277
278         * ApplicationHost.cs: set hostingInstallDir.
279         * SimpleWorkerRequest.cs: implemented a couple of properties.
280
281 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
282
283         * SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a
284         paranoid condition to ExtractPathInfo.
285
286 2003-06-25  Eric Lindvall <eric@5stops.com>
287
288         * SimpleWorkerRequest.cs: 
289                 -adds PATH_INFO support
290                 - updates GetFilePathTranslated() to make use of Path.Combine()
291                 - gets rid of the null check in GetPathInfo() (we're setting
292                 _PathInfo to String.Empty now)
293                 - fixed CreatePath() so that it doesn't return String.Empty if
294                   the _AppVirtualPath is not "/" (to match MS runtime -- does
295                   anyone know why it was returning String.Empty?)
296
297 2003-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
298
299         * AppDomainFactory.cs: hacks to work-around our buggy System.Uri.
300
301 2003-03-17 George Kodinov <gkodinov@openlinksw.co.uk>
302        
303         * AppDomainFactory.cs: place the correct full path for Web.config when
304         in Application host
305
306 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
307
308         * AppDomainFactory.cs: Web.config takes precedence over web.config.
309
310         * ApplicationHost.cs: removed hacks to work around an old bug.
311
312 2003-02-04  Tim Haynes <thaynes@openlinksw.com>
313
314         * SimpleWorkerRequest.cs: changed the initialised values of
315         _App{Install,Virtual}Path variables
316
317 2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
318
319         * System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile
320         pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
321
322 2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
323
324         * ApplicationHost.cs:
325         * SimpleWorkerRequest.cs: workaround for bug #31245. 
326
327 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
328
329         * ApplicationHost.cs: little fixes.
330
331 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
332
333         * ApplicationHost.cs: use Assembly instead of Module.
334
335 2002-08-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
336
337         * AppDomainFactory.cs: implemented.
338         * ApplicationHost.cs: implemented.
339         * SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now
340         fully implemented.
341
342 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
343
344         * AppDomainFactory.cs:
345         * IAppDomainFactory.cs:
346         * IISAPIRuntime.cs:
347         * ISAPIRuntime.cs: make them compile.
348
349 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
350
351         * ApplicationHost.cs: Test implementation to support testing.
352         * SimpleWorkerRequest.cs: Rewrite and a almost full implementation.
353
354 2001-08-30  Bob Smith  <bob@thestuff.net>
355
356         * AppDomainFactory.cs: Stubbed.
357         * ApplicationHost.cs: Stubbed.
358         * IAppDomainFactory.cs: Stubbed.
359         * IISAPIRuntime.cs: Stubbed.
360         * ISAPIRuntime.cs: Implemented.
361         * SimpleWorkerRequest.cs: Implemented.