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

ChangeLog « System.Web.Configuration « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f67b0fee83cf04019553664a31a173c4801fc83 (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
2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AuthorizationConfig.cs: really fix bug #60482. Thanks David!

2004-06-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AuthorizationConfig.cs: we must match [verb +] (role|user). Fixes bug
	#60482.

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

	* WebConfigurationSettings.cs: allow empty <configSections>.

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

	* GlobalizationConfigurationHandler.cs: if no culture given, use the
	default one, not the invariant.

2004-06-07  Alon Gazit <along@mainsoft.com>

	* HandlerFactoryConfiguration.cs: using cache to get performance
	improvement.
	

2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpCapabilitiesBase.cs: set the useragent of the new
	HttpBrowserCapabilities object.

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

	* HttpCapabilitiesBase.cs: ClientTarget takes precedence over UserAgent.

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

	* WebConfigurationSettings.cs: when the virtual path is not /, don't
	loop forever trying to read configuration from /. Fixes bug #59480.

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

	* GlobalizationConfiguration.cs: if we have no context, use
	GetAppConfig instead of GetConfig.

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

	* CompilationConfiguration.cs: a null value is ok for TempDirectory.

2004-05-12  Jaroslaw Kowalski <jaak@zd.com.pl>

	* AuthenticationConfigHandler.cs: fixed slidingExpiration and requireSSL

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

	* WebConfigurationSettings.cs: fixed loading of external files. Closes
	bug #57244.

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

	* WebConfigurationSettings.cs: now it defaults to 'web.config' and if
	not found, 'Web.config'. Don't throw exception if both exists. Thanks
	to urs and dru for bugging me about this.

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

	* WebConfigurationSettings.cs: fixed argument exception if the directory
	we're trying to watch does not exists.

2004-04-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebConfigurationSettings.cs: modify realpath when we reach the
	virtual root of the application.

2004-04-12  Nick Drochak <ndrochak@gol.com>

	* WebConfigurationSettings.cs: Fix build.  Forgot the '?'

2004-04-12  Atsushi Enomoto <atsushi@ximian.com>

	* WebConfigurationSettings.cs : On Windows "Web.config" is "web.config".

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

	* WebConfigurationSettings.cs: "/" is the virtual root directory of
	the application. This fixes a bug reported by Vlad that caused
	configuration error because files were read twice when there's an
	application different from "/" defined.

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

	* WebConfigurationSettings.cs: fixes bug 56267.

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

	* WebConfigurationSettings.cs: use FileSystemWatcher and really reload
	configuration when the file is created or modified.

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

	* WebConfigurationSettings.cs: we were loading web.config from / always!
	Thanks to Lluis for noticing this.

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

	* WebConfigurationSettings.cs: fix Web.config search for case
	insensitive filesystems.

2004-02-04  Lluis Sanchez Gual <lluis@ximian.com>

	* WebConfigurationSettings.cs: Load remoting configuration when reading
	  the web.config file.

2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AuthConfig.cs:
	* AuthenticationConfigHandler.cs: added RequireSSL and
	SlidingExpiration.

	* HandlerFactoryProxy.cs: not public.
	* HandlerItem.cs: not public.

2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebConfigurationSettings.cs: fix location path lookup. Closes bug
	#53072.

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

	* System.Web.Configuration/GlobalizationConfiguration.cs: undo old fix.

	* System.Web.Configuration/PagesConfiguration.cs:
	* System.Web.Configuration/PagesConfigurationHandler.cs: new files for
	processing system.web/pages section.

2004-01-10  Jackson Harper <jackson@ximian.com>

	* TraceConfig.cs: New class contains trace configuration data.
	* TraceConfigurationHandler.cs: New class parses trace
	configurations.
	
2004-01-05  Jackson Harper <jackson@ximian.com>

	* HandlerItem.cs: Fix typo so slashes are stripped from paths properly.
	
2003-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CustomErrorsConfigHandler.cs: handle <system.web><customErrors />..

2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpCapabilitiesBase.cs: use the new loader.

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

	* WebConfigurationSettings.cs: also cache parents when building the
	hierarchy up. Fixes bug #51818.

2003-12-09  Jackson Harper <jackson@ximian.com>

	* GlobalizationConfigurationHander.cs: Make unicode encodings case
	insensitive.
	
2003-12-08  Jackson Harper <jackson@ximian.com>

	* GlobalizationConfigurationHandler.cs: Handle creating some the unicode
	encodings here so we can create ones without BOMs.
	
2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* GlobalizationConfiguration.cs: return null when the configuration is
	not available.
	
	* WebConfigurationSettings.cs: handle configuration for System.Web. It
	replaces the default IConfigurationSystem with itself and handles
	web.config files oddities.

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

	* CompilationConfiguration.cs: don't throw an HttpException.
	* HttpRuntimeConfig.cs:
	* HttpRuntimeConfigurationHandler.cs: handle system.web/httpRuntime
	configuration section.

2003-11-10 Jackson Harper <jackson@ximian.com>

	* CompilationConfigurationHandler.cs: Append .dll to shortened
	assembly names. 
	
2003-11-08 Jackson Harper <jackson@ximian.com>

	* CompilationConfigurationHandler.cs: Trim extra versioning
	information off of assembly names. This is a workaround that fixes
	bug #50355.
	
2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* GlobalizationConfiguration.cs: added GetInstance method.

	* GlobalizationConfigurationHandler.cs: warn about unsupported encodings
	and provide reasonable defaults.

2003-10-17 Ben Maurer  <bmaurer@users.sourceforge.net>

	* CompilationConfiguration.cs (Init): you have to inherit copying
	files from the bin folders too.

2003-10-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CompilationConfiguration.cs: use the context passed in. If not, try
	the current context.

2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CompilationConfiguration.cs:
	* CompilationConfigurationHandler.cs:
	* CompilerCollection.cs:
	* WebCompiler.cs: new files that process and store
	system.web/compilation info (compilers + assemblies).

	* HttpHandlersSectionHandler.cs: added option for an attribute to be
	empty.

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

	* WebControlsSectionHandler.cs: new file to handle <webControls>
	configuration.

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

	* HandlerItem.cs: make it work for file names without wildcards.

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

	* ModuleItem.cs: it's not public.
	* ModulesConfiguration.cs: it's not public.

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

	* AuthenticationConfigHandler.cs: 'name' is optional in <forms>.

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

	* HandlerFactoryConfiguration.cs: first search in the mappings of this
	instance, then in the parent.

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

	* GlobalizationConfiguration.cs: added internal fields to hold the
	values in the globalization node.

	* GlobalizationConfigurationHandler.cs: handler to load
	<system.web/globalization> section.

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

	* AuthorizationConfigHandler.cs: handler for system.web/authorization
	section.

	* AuthorizationConfig.cs: keeps record of authorization configuration.

2003-01-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpModulesConfigurationHandler.cs: add a default authentication
	module at the end of the list.

	* ModuleItem.cs: new constructor.

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

	* AuthConfig.cs: LoginUrl defaults to login.aspx.

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

	* AuthConfig.cs:
	* AuthenticationConfigHandler.cs: handler and helper class for
	system.web/authentication configuration section.

	* HttpHandlersSectionHandler.cs: check for null in attributes.

	* MachineKeyConfig.cs:
	* MachineKeyConfigHandler.cs: handler and helper class for
	system.web/machineKey tag.

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

	* HttpHandlersSectionHandler.cs: more null checks.

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

	* HttpHandlersSectionHandler.cs: made a couple of static methods be
	part of a class used in other handlers.
	* HttpModulesConfigurationHandler.cs: handler for modules.
	* ModuleItem.cs: added IsMatch method.
	* ModulesConfiguration.cs: made it similar to the handlers class: added 	Clear, Remove.

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

	* HttpHandlerTypeMapper.cs: removed.
	* HandlerFactoryConfiguration.cs: readded. I removed it by mistake.
	* HandlerItem.cs: only load the type if we gotta validate it.
	Implemented initial IsMatch.
	* HttpConfigurationContext.cs: New file.
	* HttpHandlersSectionHandler.cs: validate is optional (default true). 
	Use HttpHandlerTypeMapper.

2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Web.Configuration/HandlerFactoryConfiguration.cs: removed.

	* System.Web.Configuration/HandlerItem.cs: added validation field.

	* System.Web.Configuration/HttpHandlerTypeMapper.cs: holds mappings
	between verbs and wilcards and their associated HandlerItem.

	* System.Web.Configuration/HttpHandlersSectionHandler.cs: this one
	processes system.web/httpHandlers section of machine.config file.

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

	* AuthenticationMode.cs:
	* ClientTargetSectionHandler.cs:
	* FormsAuthPasswordFormat.cs:
	* FormsProtectionEnum.cs:
	* HttpCapabilitiesBase.cs: fixes base on class status page.

2002-08-05  Patrik Torstensson <ptorsten@hotmail.com>

	* HandlerFactoryConfiguration.cs,
	   HandlerFactoryProxy.cs,
	   HandlerItem.cs	: New files to emulate HttpHandler configuration
	   
	* ModuleItem.cs,
	   ModulesConfiguration.cs : New files to emulate HttpModule configuration	

2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* System.Web.Configuration/HttpCapabilitiesBase.cs: New file.