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

ChangeLog « System.Web.Hosting « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13df624e75d18a83b4aa55542135fb26dd116459 (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
2006-02-28  Chris Toshok  <toshok@ximian.com>

	* IAppDomainFactory.cs: corcompare work.

	* IAppManagerAppDomainFactory.cs: same

	* IISAPIRuntime.cs: same.

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

	* ApplicationManager.cs: implemented ShutdownAll().
	* HostingEnvironment.cs: remove MonoTODO.

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

	* BareApplicationHost.cs: class used as an entry point into each
	application domiain from the ApplicationManager.
	* ApplicationManager.cs: implemented most of the remaining methods.
	* HostingEnvironment.cs: object handling methods are now implemented.

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

	* DefaultVirtualPathProvider.cs: add some comments/TODO.
	* HostingEnvironment.cs: initialize the default value for
	VirtualPathProvider.

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

	* HostingEnvironment.cs: MapPath is done.

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

	* DefaultVirtualDirectory.cs: implemented missing bits.
	* DefaultVirtualFile.cs: fix ctor scope.
	* DefaultVirtualPathProvider.cs: implemented GetFile and GetDirectory.

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

	* DefaultVirtualDirectory.cs:
	* DefaultVirtualPathProvider.cs:
	* VirtualFile.cs:
	* DefaultVirtualFile.cs: almost done with the default
	VirtualPathProvider which just maps to on-disk directories/files.

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

	* SimpleWorkerRequest.cs: implemented RootWebConfigPath.
	* HostingEnvironment.cs: implemented RegisterVirtualPathProvider and
	a few other defaults.

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

	* AppManagerAppDomainFactory.cs: stubbed out.

	* ApplicationInfo.cs:
	* ApplicationManager.cs: add 2 new classes.

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

	* VirtualPathProvider.cs: implemented OpenFile.
	* VirtualFile.cs: removed stuff cut&pasted from VirtualDirectory.

	* SimpleWorkerRequest.cs: 
	* HostingEnvironment.cs: class status fixes.

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

	* IProcessHostFactoryHelper.cs:
	* IProcessPingCallback.cs:
	* IProcessHost.cs:
	* IProcessHostSupportFunction.cs:
	* IHttpWorkerRequestHandler.cs:
	* IQueueHost.cs:
	* IApplicationHost.cs: removed all this. They are not longer part of the
	public API.

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

	* VirtualDirectory.cs:
	* VirtualPathProvider.cs:
	* VirtualFileBase.cs:
	* VirtualFile.cs: implemented this base classes.

	* HostingEnvironment.cs: implemented a few properties by using the ones
	in HttpRuntime.

2006-01-24  Konstantin Triger <kostat@mainsoft.com>

	* ServletWorkerRequest.jvm.cs: convert .invoke requests to PathInfo,
		remove ToUpper usage.

2006-01-19  Konstantin Triger <kostat@mainsoft.com>

	* ServletWorkerRequest.jvm.cs: refactoring.

2005-11-28  Robert Jordan  <robertj@gmx.net>

	* SimpleWorkerRequest.cs: fixed MapPath () for the case
	app_virtual_dir.Length == 1 && path.Length == 1.
	* SimpleWorkerRequest.cs: implemented SendResponseFromMemory ().

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

	* ApplicationHost.cs: make this work with paths that that
	contain non-ASCII characters. Fixes bug #76807.

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

	* HostingEnvironment.cs: completely NIE'ed implementation of
	HostingEnvironment, just to get an MS example provider to compile.

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

	* ApplicationHost.cs: use the AbsolutePath from the Uri to remove the
	schema prefix if present.

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

	* SimpleWorkerRequest.cs: all tests pass now.

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

	* ApplicationHost.cs: append a directory separator char to the physical
	path. Fixes bug #76187.

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

	* SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'.

2005-09-10  Sebastien Pouliot  <sebastien@ximian.com>

	* AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for
	UnmanagedCode on ctor. Added TODO on unimplemented method.
	* ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for 
	UnmanagedCode on ctor. Removed duplicate null checks.
	* ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and 
	IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand 
	for UnmanagedCode on ctor.
	* SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not
	sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added
	FileIOPermission for PathDiscovery before returning processed paths.

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

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

2005-09-08  Eyal Alalouf  <eyala@mainsoft.com>
	* ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile

2005-07-24  Eyal Alalouf  <eyala@mainsoft.com>
	* ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG

2005-07-18  Eyal Alalouf  <eyala@mainsoft.com>

	* Added ServletWorkerRequest.jvm.cs

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

	* IISAPIRuntime.cs: GUID changed.

2004-08-03  Atsushi Enomoto  <atsushi@ximian.com>

	* IApplicationHost.cs : missing namespace import.

2004-08-02  Duncan Mak  <duncan@ximian.com>

	* IApplicationHost.cs (MapPath): Add [In] attribute.

	* IAppManagerAppDomainFactory.cs:
	* IProcessHostSupportFunction.cs: signature fixes.
	
2004-08-02  Duncan Mak  <duncan@ximian.com>

	* IApplicationHost.cs:
	* IHttpWorkerRequestHandler.cs:
	* IProcessHost.cs:
	* IProcessHostFactoryHelper.cs:
	* IProcessHostSupportFunction.cs:
	* IProcessPingCallback.cs:
	* IQueueHost.cs:
	* IRegisteredObject.cs: Added interfaces.
	
2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>

	* IAppDomainFactory.cs: added missing marshalling attributes
	* IISAPIRuntime.cs: added missing marshalling attributes

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

	* AppDomainFactory.cs: set the Dynamic base for the AppDomain.

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

	* SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes
	MapPath when the virtual directory is the root virtual directory.

2004-01-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IISAPIRuntime.cs: Fixed wrong attribute

2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* SimpleWorkerRequest.cs: Added missing attribute
	* IISAPIRuntime.cs: Added attributes, fixed signature
	* IAppDomainFactory.cs: Added attributes, fixed signature

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

	* ApplicationHost.cs: set hostingInstallDir.
	* SimpleWorkerRequest.cs: implemented a couple of properties.

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

	* SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a
	paranoid condition to ExtractPathInfo.

2003-06-25  Eric Lindvall <eric@5stops.com>

	* SimpleWorkerRequest.cs: 
		-adds PATH_INFO support
		- updates GetFilePathTranslated() to make use of Path.Combine()
		- gets rid of the null check in GetPathInfo() (we're setting
		_PathInfo to String.Empty now)
		- fixed CreatePath() so that it doesn't return String.Empty if
		  the _AppVirtualPath is not "/" (to match MS runtime -- does
		  anyone know why it was returning String.Empty?)

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

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

2003-03-17 George Kodinov <gkodinov@openlinksw.co.uk>
       
	* AppDomainFactory.cs: place the correct full path for Web.config when
	in Application host

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

	* AppDomainFactory.cs: Web.config takes precedence over web.config.

	* ApplicationHost.cs: removed hacks to work around an old bug.

2003-02-04  Tim Haynes <thaynes@openlinksw.com>

	* SimpleWorkerRequest.cs: changed the initialised values of
	_App{Install,Virtual}Path variables

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

	* System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile
	pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.

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

	* ApplicationHost.cs:
	* SimpleWorkerRequest.cs: workaround for bug #31245. 

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

	* ApplicationHost.cs: little fixes.

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

	* ApplicationHost.cs: use Assembly instead of Module.

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

	* AppDomainFactory.cs: implemented.
	* ApplicationHost.cs: implemented.
	* SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now
	fully implemented.

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

	* AppDomainFactory.cs:
	* IAppDomainFactory.cs:
	* IISAPIRuntime.cs:
	* ISAPIRuntime.cs: make them compile.

2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>

        * ApplicationHost.cs: Test implementation to support testing.
        * SimpleWorkerRequest.cs: Rewrite and a almost full implementation.

2001-08-30  Bob Smith  <bob@thestuff.net>

        * AppDomainFactory.cs: Stubbed.
        * ApplicationHost.cs: Stubbed.
        * IAppDomainFactory.cs: Stubbed.
        * IISAPIRuntime.cs: Stubbed.
        * ISAPIRuntime.cs: Implemented.
        * SimpleWorkerRequest.cs: Implemented.