320e428260ba29f14c83dae1eecd1e422c90bd54
[mono.git] / mcs / class / System.Web / System.Web / ChangeLog
1 2010-07-21  Miguel de Icaza  <miguel@novell.com>
2
3         * HttpApplication.cs, HttpRuntime.cs, HttpApplicationFactory.cs:
4         Prepare for the runtime change that will terminate threadpool
5         threads when exception are not caught.
6
7 2010-06-27  Marek Habersack  <mhabersack@novell.com>
8
9         * HttpUtility.cs: if IHtmlString instance is passed to HtmlEncode
10         (object), use IHtmlString.ToHtmlString () to return the value
11         without encoding it.
12
13 2010-06-02  Marek Habersack  <mhabersack@novell.com>
14
15         * DefaultHttpHandler.cs: implemented, so that static file requests
16         work again in 4.0
17
18 2010-06-01  Marek Habersack  <mhabersack@novell.com>
19
20         * HttpUtility.cs: moved chunks of code to the new
21         System.Web.Util.HttpEncoder class.
22
23         * HttpResponseHeader.cs: encode header names and values using
24         HttpEncoder.
25
26         * HttpRequest.cs: added internal method Validate, to validate the
27         request in 4.0 profile.
28
29         * HttpHeaderCollection.cs: added. A helper class to encode header
30         names/values on add.
31
32         * HttpApplication.cs: Pipeline () validates request by calling
33         HttpRequest.Validate in the 4.0 profile.
34
35 2010-05-17  Marek Habersack  <mhabersack@novell.com>
36
37         * HttpApplicationFactory.cs: pre-application start methods must be
38         called even before App_Code is compiled.
39
40 2010-05-16  Marek Habersack  <mhabersack@novell.com>
41
42         * HttpApplicationFactory.cs: let BuildManager know when it's safe
43         to cache referenced assemblies.
44
45 2010-05-15  Marek Habersack  <mhabersack@novell.com>
46
47         * HttpResponse.cs: added internal Context property
48
49         * HttpRequest.cs: added a setter to the internal Context property
50
51         * HttpContext.cs: set request and response Context properties to
52         'this' in the constructor.
53
54 2010-05-12  Marek Habersack  <mhabersack@novell.com>
55
56         * HttpApplicationFactory.cs: when initializing new application
57         type, make sure to call pre-application start methods.
58
59         * HttpServerUtility.cs: Execute checks whether
60         IAsyncResult.AsyncWaitHandle is not null before attempting to use
61         it. Fixes bug #604502
62
63 2010-05-06  Marek Habersack  <mhabersack@novell.com>
64
65         * PreApplicationStartMethodAttribute.cs: added. New 4.0 type.
66
67         * HttpUtility.cs: HtmlEncode, UrlEncode changes for 4.0
68         Implemented JavaScriptStringEncode for 4.0
69
70         * HttpServerUtility.cs: added TransferRequest methods.
71
72         * HttpRuntime.cs: added AspClientScriptPhysicalPath,
73         AspClientScriptVirtualPath, UsingIntegratedPipeline properties and
74         the GetNamedPermissionSet method.
75
76         * HttpResponse.cs: implemented the following 4.0 methods:
77         RedirectPermanent, RedirectToRoute, RedirectToRoutePermanent and
78         RemoveOutputCacheItem.
79         Output property no longer lazily creates a writer object - it's
80         created in the internal constructors. If a user sets it to null,
81         it remains null for good or bad.
82         Added Output setter for 4.0+
83
84 2010-05-05  Marek Habersack  <mhabersack@novell.com>
85
86         * HttpRequest.cs: implemented new 4.0 property - RequestContext
87
88 2010-04-29  Marek Habersack  <mhabersack@novell.com>
89
90         * HttpRequest.cs: added 4.0 InsertEntityBody overloads (not
91         supported when running under Mono)
92         Added the HttpChannelBinding 4.0 property.
93         Added the CurrentExecutionFilePathExtension 4.0 property.
94
95 2010-04-27  Marek Habersack  <mhabersack@novell.com>
96
97         * HttpException.cs: implemented 4.0 property WebEventCode, also
98         made it available in the 2.0 profile as internal.
99         Added a method with several overloads, NewWithCode, which creates
100         an instance of HttpException and sets the web error code.
101
102         * HttpApplication.cs, HttpRequest.cs, HttpRuntime.cs: use HttpException.NewWithCode for some
103         exceptions.
104
105 2010-04-21  Marek Habersack  <mhabersack@novell.com>
106
107         * HttpApplication.cs: update to fix for bug #572469 - ProcessError
108         clears the error after handler return only if stop_processing is
109         true. Also, stop_processing is never set before calling ProcessError
110
111 2010-04-02  Marek Habersack  <mhabersack@novell.com>
112
113         * HttpException.cs: handle situations when current exception is an
114         instance of a class derived from HttpException and there's no
115         InnerException.
116
117         * HttpApplication.cs: ProcessError must call ClearError on the
118         current context after the handler returns without error. Fixes bug
119         #572469
120
121 2010-03-30 Gonzalo Paniagua Javier <gonzalo@novell.com>
122
123         * HttpResponseStream.cs: speed up short writes.
124
125 2010-03-20  Marek Habersack  <mhabersack@novell.com>
126
127         * SiteMapNode.cs: avoid calling ChildNodes twice in HasChildNodes.
128         Cache child nodes in the ChildNodes property.
129
130 2010-03-06  Marek Habersack  <mhabersack@novell.com>
131
132         * HttpRequest.cs: cache RawUrl value.
133         Added new internal property, PathNoValidation, which returns
134         request path without validating it.
135         Implemented 4.0 extensible validation.
136
137         * HttpApplication.cs: Pipeline () validates the request path, if
138         new validation mode is enabled, before doing anything else.
139         Added a generic LoadType overload which checks whether the loaded
140         type, if any, derives from the type specified in the method's
141         specialization.
142
143         * HttpUtility.cs: decode entities which use hexadecimal
144         encoding. Fixes bug #585992. Patch from Sebastien Morin
145         <smsisko@gmail.com>, thanks!
146
147 2010-03-04  Marek Habersack  <mhabersack@novell.com>
148
149         * HttpRuntime.cs: do less work in the static constructor. Most of
150         the code was moved to System.Web.Util.RuntimeHelpers. Properties
151         which have been moved: MonoVersion, RunningOnWindows,
152         CaseInsensitive, IsDebuggingEnabled
153
154 2010-02-27  Marek Habersack  <mhabersack@novell.com>
155
156         * HttpRuntime.cs: added internal property DomainUnloading.
157
158         * HttpApplication.cs: when app domain is unloading, catch
159         ThreadAbortExceptions and reset the abort.
160
161 2010-02-03  Marek Habersack  <mhabersack@novell.com>
162
163         * HttpApplication.cs: GetOutputCacheProviderName returns the value
164         of OutputCache.DefaultProviderName
165
166         * HttpRuntime.cs: internal cache is used to hold the dependencies
167         now.
168
169 2010-01-20  Marek Habersack  <mhabersack@novell.com>
170
171         * HttpContext.cs: implemented the 4.0 SetSessionStateBehavior
172         method
173
174         * HttpCacheVaryByContentEncodings.cs, HttpCacheVaryByHeaders.cs,
175         HttpCacheVaryByParams.cs : parameterless constructors are public
176         in 4.0
177
178         * HttpApplication.cs: implemented the 4.0
179         GetOutputCacheProviderName method
180
181 2010-01-19  Marek Habersack  <mhabersack@novell.com>
182
183         * StaticSiteMapProvider.cs: AddNode checks the url of node
184         returned by FindSiteMapNode to see if it indeed was a
185         duplicate. It is necessary if application derives from
186         StaticSiteMapProvider and overrides FindSiteMapNode to return
187         RootNode if rawUrl doesn't match any existing node. Fixes bug
188         #570194
189
190 2010-01-09  Marek Habersack  <mhabersack@novell.com>
191
192         * VirtualPathUtility.cs: small optimizations for GetDirectory
193
194 2009-11-23  Marek Habersack  <mhabersack@novell.com>
195
196         * HttpRequest.cs: PathInfo returns an empty string when worker
197         request is absent or its GetPathInfo method returns a null. Patch
198         from Tiaan <tagdev@gmail.com>, thanks!
199
200 2009-11-19  Marek Habersack  <mhabersack@novell.com>
201
202         * VirtualPathUtility.cs: made Normalize internal
203
204 2009-11-16  Marek Habersack  <mhabersack@novell.com>
205
206         * HttpContext.cs: RewritePath now treats non-rooted and
207         app-relative paths correctly - the former are formed by
208         concatenating base virtual path with the passed file path and the
209         latter by calling VirtualPathUtility.ToAbsolute. Rooted and
210         absolute paths are left unmodified. Fixes bug #550103
211
212 2009-11-13  Marek Habersack  <mhabersack@novell.com>
213
214         * HttpResponse.cs: added parameter checks to Redirect ().
215         If the passed url starts with http:, https:, file: or ftp: then it
216         is treated as a fully qualified one and no attempt to rewrite the
217         url to the fully qualified form (if system.web/httpRuntime
218         UseFullyQualifiedRedirectUrl is true) is made.
219
220 2009-11-09  Marek Habersack  <mhabersack@novell.com>
221
222         * HttpCookie.cs: made HttpCookie.CookieNVC serializable. Patch
223         from Sean Foy <sean.foy+novell@gmail.com>, thanks! Fixes bug
224         #553063
225
226         * HttpCookieCollection.cs: Add allows for duplicate cookie
227         names. Fixes bug #553150
228
229 2009-10-30  Marek Habersack  <mhabersack@novell.com>
230
231         * HttpRequest.cs: added internal property ClientFilePath, which
232         may have a different value than FilePath when virtual path has
233         been rewritten, but the caller specified that the client paths
234         should still be constructed using the original url.
235
236         * HttpContext.cs: RewritePath always sets Request.FilePath,
237         Request.ClientFilePath is set only when setClientFilePath is
238         true. This makes client urls work correctly when url rewriting is
239         being used.
240
241 2009-10-20  Marek Habersack  <mhabersack@novell.com>
242
243         * HttpResponse.cs: implemented the WriteSubstitution method,
244         thus enabling post-cache substitution.
245
246 2009-10-12  Marek Habersack  <mhabersack@novell.com>
247
248         * HttpResponse.cs: actually _use_ the url passed to Redirect when
249         fully qualified redirect url is requested, doh. Fixes bug #542846
250
251 2009-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
252
253         * StaticFileHandler.cs: it's the last flush even when a VPP is used.
254
255 2009-10-07  Marek Habersack  <mhabersack@novell.com>
256
257         * TraceData.cs: make long execution times stand out.
258
259 2009-09-29  Miguel de Icaza  <miguel@novell.com>
260
261         * HttpUtility.cs: Do not use CAS Attributes when using MonoTouch.
262
263         Remove unnecesasry using clause.
264
265 2009-09-29  Marek Habersack  <mhabersack@novell.com>
266
267         * HttpResponse.cs: use full url in redirect if
268         UseFullyQualifiedRedirectUrl is set to true in httpRuntime
269         configuration section. Patch from Brett Kiefer
270         <brett@fogcreek.com>, thanks! Fixes bug #542846
271
272 2009-09-28  Marek Habersack  <mhabersack@novell.com>
273
274         * HttpContext.cs: GetResourceProvider - renamed the 'key' argument
275         to 'virtualPath' in order to reflects its purpose better. Local
276         resource providers are created for the passed virtualPath and not
277         for the current request's path. Fixes bug #542484
278
279 2009-09-25  Marek Habersack  <mhabersack@novell.com>
280
281         * StaticSiteMapProvider.cs: MapUrl must normalize paths. Fixes bug
282         #541969
283
284         * XmlSiteMapProvider.cs: siteMapFile parameter must be mapped in
285         Initialize. Fixes bug #541969
286
287 2009-09-24  Marek Habersack  <mhabersack@novell.com>
288
289         * XmlSiteMapProvider.cs: added "securityTrimmingEnabled" to the
290         list of supported attributes in Initialize. Fixes bug #541607
291
292 2009-09-07  Marek Habersack  <mhabersack@novell.com>
293
294         * HttpContext.cs: when creating local resource provider, pass the
295         current file's virtual path to CreateLocalResourceProvider. Fixes
296         bug #536757
297
298         * XmlSiteMapProvider.cs: do not allow the provider to be
299         intialized more than once.
300         Initialize throws if it finds unknown attributes in the
301         'attributes' collection.
302         AddNode checks its arguments and throws if they are null or aren't
303         from the same provider.
304         FindStartingNode throws exceptions in several erroneous situations
305         now.
306         Added private method GetConfigDocument which performs several
307         checks on the source .sitemap file and throws exceptions if it
308         finds any errors.
309         BuildSiteMap clears provider state before building the map.
310         BuildSiteMapRecursive correctly deals with custom providers. Fixes
311         bug #465696
312         FindSiteMapNode maps url before searching. Fixes bug #465696
313
314         * VirtualPathUtility.cs: Combine a bit more efficient
315
316         * StaticSiteMapProvider.cs: FindSiteMap node checks if rawUrl is
317         relative to application root and if yes, makes it absolute.
318         MapUrl converts both rooted and not rooted urls to absolute.
319
320         * SiteMapProvider.cs: check if HttpContext.Request exists before
321         using it in FindSiteMapnode
322
323         * SiteMap.cs: Providers collection must be read-only.
324
325 2009-09-04  Marek Habersack  <mhabersack@novell.com>
326
327         * HttpRuntime.cs: retrieve real Mono version from the runtime and
328         store it in the MonoVersion internal static property.
329
330         * HttpException.cs: report real Mono version when backtrace is
331         displayed.
332
333 2009-08-24  Marek Habersack  <mhabersack@novell.com>
334
335         * VirtualPath.cs: Added new constructor which takes virtual and
336         physical paths as well as a boolean marking the instance as
337         referring to a fake location. Part of fix for bug #463813
338
339 2009-07-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
340
341         * HttpApplicationFactory.cs: allow subclasses of EventHandler for
342         event handlers in global.asax.
343         Fixes bug #525743.
344
345 2009-07-23  Marek Habersack  <mhabersack@novell.com>
346
347         * HttpException.cs: if an exception is processed which refers to
348         internal "files", don't show the internal name.
349
350 2009-07-18  Marek Habersack  <mhabersack@novell.com>
351
352         * HttpContext.cs: GetGlobalResourceObject must look for resources
353         in the 'Resources' "namespace" - it was a regression from the
354         previous change to that method.
355
356 2009-07-15  Marek Habersack  <mhabersack@novell.com>
357
358         * HttpApplicationFactory.cs: added internal methods to
359         enable/disable specific watchers. Part of fix for bug #522017
360
361 2009-07-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
362
363         * ApplicationShutdownReason.cs: add new 3.5 value.
364         * ParserErrorCollection.cs: add setter for ParserError.
365         Patch from Daniel Gagne.
366
367 2009-07-14  Marek Habersack  <mhabersack@novell.com>
368
369         * HttpApplicationFactory.cs: OnFileChanged doesn't reload
370         application if reload suppression is active.
371
372 2009-07-13  Marek Habersack  <mhabersack@novell.com>
373
374         * HttpApplication.cs: LoadType - wrap call to LoadTypeFromBin in
375         try/catch so that we can decide whether or not to throw
376         exceptions. LoadTypeFromBin - ignore the FileLoadException and
377         BadImageException exceptions as they don't matter in this
378         context.
379
380 2009-07-13  Gert Driesen  <drieseng@users.sourceforge.net>
381
382         * HttpResponseStream.cs: Added argument checks to Write. Modified
383         methods/properties that requires a readable stream to throw
384         NotSupportedException instead of InvalidOperationException for
385         compatibility with MS.
386
387 2009-07-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
388
389         * HttpApplication.cs: use GetSection instead of
390         OpenWebConfiguration+GetSection.
391
392 2009-07-09  Marek Habersack  <mhabersack@novell.com>
393
394         * HttpContext.cs: fall back to default resource provider factory
395         if the factory provided by user doesn't have the required object
396         in Get{Global,Local}ResourceObject. Fixes bug #520397
397         Refactored the GetResourceObject method and the
398         ResourceManagerCacheKey class to DefaultResourceProvider.
399
400 2009-07-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
401
402         * ParserError.cs: add 3 missing setters. Patch from Daniel Gagne.
403
404 2009-06-15  Marek Habersack  <mhabersack@novell.com>
405
406         * HttpCachePolicy.cs: SetHeaders adds max-age when MaxAge is set
407         to TimeSpan.Zero by calling SetMaxAge. Fixes bug #513000
408
409 2009-06-05  Marek Habersack  <mhabersack@novell.com>
410
411         * VirtualPathUtility.cs: IsValidVirtualPath no longer uses
412         WebConfigurationManager.GetSection to retrieve the verification
413         setting. Instead, the setting is retrieved in the static
414         constructor.
415
416         * HttpRequest.cs: ApplyUrlMapping must not use
417         WebConfigurationManager.GetSection as it would cause a recursive
418         call loop. Code to detect whether url mappings are in effect has
419         been moved to a static constructor.
420
421 2009-06-04  Marek Habersack  <mhabersack@novell.com>
422
423         * HttpResponse.cs: version header configuration is read lazily
424         now.
425
426         * HttpException.cs: do not show version info if custom errors are
427         in effect. Fixes bug #509092
428         Don't generate trace for 403. Fixes bug #509092
429
430         * HttpApplicationFactory.cs: OnFileChanged ignores the directory
431         part of the file triggering the event. Fixes bug #509998
432
433 2009-06-03  Marek Habersack  <mhabersack@novell.com>
434
435         * VirtualPathUtility.cs: IsValidVirtualPath now checks the value
436         of the
437         HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ASP.NET\VerificationCompatibility
438         registry key when running on Windows and also consults the
439         mono-specific system.web/monoSettings configuration section to see
440         what is the verificationCompatibility property set to. If either
441         of the two is set to 1, Mono will not verify the validity of
442         the current request's path. Fixes bug #509163
443
444         * HttpApplicationFactory.cs: OnFileChanged must check whether the
445         modified location is a directory before it decides to ignore it
446         when watcher's filter is "?eb.?config". Fixes bug #509450 (see
447         also bug #495011)
448
449         * HttpForbiddenHandler.cs: updated the error message to match
450         .NET, added requested path and description. Fixes bug #509092
451
452         * HttpException.cs: if trace is not requested, don't output <!--
453         following the version information in WriteFileBottom. Fixes bug
454         #509475
455         GetDefaultErrorMessage appends trace only if showTrace is
456         true. Fixes bug #509092
457
458 2009-06-02  Marek Habersack  <mhabersack@novell.com>
459
460         * HttpApplication.cs: LocateHandler needs to pass current request
461         path and filepath to WebConfigurationManager when retrieving
462         system.web/httpHandlers section as only this will guarantee that
463         any <location> elements relating to the current request's which
464         contain system.web/httpHandlers section will be correctly read and
465         used. Also fixes reading httpHandlers section if it's found in
466         web.config located in a subdirectory. Fixes bug #509069
467
468         * HttpException.cs: 403 errors get same treatment as 404
469         below. Fixes bug #509092
470
471 2009-06-01  Marek Habersack  <mhabersack@novell.com>
472
473         * HttpException.cs: if custom errors are enabled and the error
474         code is 404 show the "standard" 404 error message instead of the
475         default custom error mode one. Fixes bug #508649
476
477 2009-05-28  Marek Habersack  <mhabersack@novell.com>
478
479         * HttpUtility.cs: fixed UrlDecode for encoded strings which
480         should be converted to byte sequences longer than 2 bytes. Fixes
481         bug #507666
482
483 2009-05-14  Marek Habersack  <mhabersack@novell.com>
484
485         * HttpApplication.cs: LocateHandler won't cache if a default
486         handler was returned.
487
488 2009-05-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
489
490         * MimeTypes.cs: add silverlight related types.
491
492 2009-04-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
493
494         * HttpContext.cs:
495         * HttpWorkerRequest.cs:
496         * HttpRuntime.cs: if other parts of the system are using the
497         threadpool and we queue requests, once the threadpool is free we
498         might still not get back to use it to the maximum extent possible.
499         Adding a few more calls to QueuePendingRequest ensures that does not
500         happen.
501
502 2009-04-24  Marek Habersack  <mhabersack@novell.com>
503
504         * HtmlizedException.cs: make HtmlException derive from
505         HttpException. System.Web.Mvc relies upon compile and parse
506         exception being descendants of HttpException or otherwise it will
507         catch and ignore compilation/parsing errors.
508
509 2009-04-16  Marek Habersack  <mhabersack@novell.com>
510
511         * HttpContext.cs: local resources code now uses the custom
512         resource provider factory, just like the global resources
513         code. Fixes bug #493263
514
515 2009-04-15  Marek Habersack  <mhabersack@novell.com>
516
517         * HttpApplicationFactory.cs: if a notification is received from a
518         FileSystemWatcher which was configured to watch for
519         subdirectories, uses a filter (currently we have just one such
520         watcher - waiting for changes to '?eb.?onfig') and the event
521         doesn't match the filter, ignore the event. Fixes bug #495011
522
523 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
524
525         * HttpUtility.cs: the collection returned from ParseQueryString knows
526         how to convert the key/value pairs to a string.
527
528 2009-04-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
529
530         * HttpResponseStream.cs: use the unsafe version when copying buffers.
531
532 2009-04-06  Marek Habersack  <mhabersack@novell.com>
533
534         * HttpRuntime.cs: added a new internal static property
535         IsDebuggingEnabled
536
537         * HttpContext.cs: IsDebuggingEnabled now calls
538         HttpRuntime.IsDebuggingEnabled
539
540 2009-04-03  Gert Driesen  <drieseng@users.sourceforge.net>
541
542         * HttpRuntime.cs: Avoid ANE on Windows when HttpRuntime is used
543         outside of ASP.NET. Fixed compiler warning by setting
544         assemblyMappingEnabled.
545
546 2009-04-02  Marek Habersack  <mhabersack@novell.com>
547
548         * HttpException.cs: if there are more lines with errors, display
549         them all.
550
551 2009-03-31  Marek Habersack  <mhabersack@novell.com>
552
553         * HttpApplicationFactory.cs: use glob patterns to watch for
554         changes to global.asax and web.config files.
555         Set up recursive watch on web.config in a separate thread, to
556         minimize application startup delay. Fixes bug #490497
557
558         * VirtualPath.cs: added code to detect whether the VirtualPath
559         instance represents a fake virtual path (IsFake property).
560         Added new property DirectoryNoNormalize which returns
561         non-normalized directory for the VirtualPath instance.
562         Made ToString () a bit more friendly and well-behaved.
563
564 2009-03-26  Marek Habersack  <mhabersack@novell.com>
565
566         * HttpWorkerRequest.cs: use a generic dictionary to keep header
567         names in 2.0+.
568         GetKnown{Request,Response}HeaderIndex doesn't use the switch
569         anymore.
570
571         * HttpResponse.cs: WriteHeaders now checks whether a header to be
572         sent is a known one or not and uses the appropriate method to send
573         that header. Partial fix for bug #488702
574
575 2009-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
576
577         * HttpResponse.cs: ClearHeaders() also resets cacheability.
578         Bug #485557 fixed.
579
580 2009-03-21  Marek Habersack  <mhabersack@novell.com>
581
582         * HttpResponse.cs: added two missing 3.0+ properties -
583         SubStatusCode and TrySkipIisCustomErrors.
584
585 2009-03-04  Marek Habersack  <mhabersack@novell.com>
586
587         * HttpRuntime.cs: do not clean the dynamic base directory in
588         DoUnload, it can cause race conditions.
589
590 2009-03-03  Marek Habersack  <mhabersack@novell.com>
591
592         * HttpResponse.cs: fully implemented the Headers property.
593         It is also used in the 1.1 profile, but is internal.
594
595         * HttpCookie.cs: GetCookieHeader renamed to GetCookieHeaderValue -
596         now returns a string with the header value.
597
598         * HttpCacheVaryByParams.cs: GetResponseHeader renamed to
599         GetResponseHeaderValue - now returns a string with the header
600         value.
601
602         * HttpCachePolicy.cs: SetHeaders now takes a NameValueCollection
603         instead of an ArrayList
604
605         * HttpRequest.cs: avoid calculating the same value twice in
606         MakeInputStream
607
608 2009-03-02 Everaldo Canuto <ecanuto@novell.com>
609
610         * HttpResponse.cs: Headers property implementation.
611         
612 2009-02-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
613
614         * Web/HttpResponseHeader.cs:
615         * Web/HttpResponse.cs:
616         * Web/QueueManager.cs:
617         * Web/HttpRequest.cs:
618         * Web/TraceManager.cs:
619         * Web/HttpServerUtility.cs:
620         * Web/HttpApplication.cs: use GetWebApplication
621         instead of GetSection for application level configuration.
622
623 2009-02-26  Marek Habersack  <mhabersack@novell.com>
624
625         * HttpResponse.cs: added DisableKernelCache and TransmitFile
626         methods.
627
628         * IisTraceListener.cs: added + implemented
629
630 2009-02-25  Marek Habersack  <mhabersack@novell.com>
631
632         * HttpApplication.cs: let the current context known that
633         MapRequestHandler is done.
634
635         * HttpContext.cs: implemented RemapHandler
636
637 2009-02-24  Marek Habersack  <mhabersack@novell.com>
638
639         * TempFileStream.cs: the class is internal
640
641         * VirtualPathUtility.cs: ToAbsolute (string, string, bool) is
642         internal
643
644         * HttpException.cs: made the HttpException (int httpCode, string
645         message, Exception innerException, string resourceName) internal.
646
647 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
648
649         * HttpServerUtility.cs: allow Transfer to static files too.
650
651 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
652
653         * HttpWriter.cs: new Response property and WriteUTF8Ptr
654         method.
655         * HttpResponseStream.cs: added support for writing from an
656         IntPtr. copied the memcpy method from String.cs.
657
658 2009-02-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
659
660         * HttpApplicationFactory.cs: check of global.asax was precompiled.
661
662 2009-01-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
663
664         * HttpApplicationFactory.cs: fix check that avoids lock. Keep one
665         HttpApplication instance ready to be returned in an instance variable
666         to avoid a few locks.
667
668 2009-01-29  Marek Habersack  <mhabersack@novell.com>
669
670         * HttpApplicationFactory.cs: optimize lock usage.
671
672 2009-01-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
673
674         * HttpResponse.cs: make sure config is not null here.
675         * HttpApplication.cs: add a timer (-d:PIPELINE_TIMER) for the pipeline.
676         Handle timeouts for OutputPage() too.
677
678 2009-01-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
679
680         * HttpApplicationFactory.cs: set/reset the context for the application
681         when creating/disposing. Dispose() out of the lock.
682
683 2009-01-24  Marek Habersack  <mhabersack@novell.com>
684
685         * XmlSiteMapProvider.cs: if a nested sitemap is used (via the
686         siteMapFile node attribute) watch the named file for
687         changes. Fixes bug #465693
688
689 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
690
691         * QueueManager.cs: Implement requests queued performance counter.
692         * HttpRuntime.cs: Implement requests total counter.
693         * HttpApplication.cs: Implement requests total counter.
694
695 2009-01-13  Dean Brettle  <dean@brettle.com>
696
697         * HttpApplicationFactory.cs: if there are any *.browser files in
698         App_Data/Mono_Machine_Browsers/, use those instead of the default
699         machine browser files.  This allows app developers to workaround
700         limitations with Mono's default browser files without causing
701         incompatibilities with MS's implementation.
702
703 2009-01-09  Marek Habersack  <mhabersack@novell.com>
704
705         * HttpContext.cs: RewritePath now treats relative and absolute
706         file paths with more care. If a path is of the ~/file.aspx form,
707         then the ~/ part is removed and the rest is combined with the base
708         virtual path. If the file path is of the ~ or /file.aspx forms,
709         then it is combined verbatim with the base virtual path. Fixes bug
710         #463964
711         Make sure the path returned from HttpRequest.BaseVirtualPath
712         contains the trailing slash before combining. Fixes bug #463964
713
714 2008-12-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
715
716         * ServerVariablesCollection.cs: use IndexOf (char).
717
718 2008-12-24  Marek Habersack  <mhabersack@novell.com>
719
720         * HttpApplicationFactory.cs: watch for changes to web.config also
721         in the subdirectories.
722
723 2008-12-20  Marek Habersack  <mhabersack@novell.com>
724
725         * HttpResponse.cs: the code in TransmitFile (VirtualFile, bool)
726         was an abomination - dear children, don't do this at home (never,
727         ever, allocate a buffer to load entire file). I will wear a brown
728         paper bag every 2nd Sunday in the next 6 months for writing the
729         old version of this code.
730         New code optimizes the write when DefaultVirtualFile is used (as
731         it refers to a physical file on disk) and reads/writes other
732         virtual files in chunks.
733
734 2008-12-16  Marek Habersack  <mhabersack@novell.com>
735
736         * StaticFileHandler.cs: use HttpRuntime.RunningOnWindows instead
737         of checking the platform directly.
738
739 2008-12-09  Marek Habersack  <mhabersack@novell.com>
740
741         * HttpServerUtility.cs: when Execute finishes, clear
742         Request.QueryStringRaw. Backport of r121010 by Vladimir Krasnov.
743
744 2008-12-03  Gert Driesen  <drieseng@users.sourceforge.net>
745
746         * NoParamsInvoker.cs:
747         * HttpApplicationFactory.cs: Fixed support for static eventhandlers.
748
749 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
750
751         * HttpContext.cs: MS does not throw. They just return null.
752
753 2008-11-24  Marek Habersack  <mhabersack@novell.com>
754
755         * HttpRuntime.cs: take PlatformID.MacOSX into account when
756         determining whether we're running on Windows or not. Possible fix
757         for #447874
758
759 2008-11-21  Marek Habersack  <mhabersack@novell.com>
760
761         * HttpParseException.cs, HtmlizedException.cs: added
762         deserialization constructor.
763
764 2008-10-31  Marek Habersack  <mhabersack@novell.com>
765
766         * HttpContext.cs: RewritePath correctly rewrites paths for cases
767         when application is running under a virtual directory different to
768         '/'. Fixes bug #371581
769         RewritePath checks the passed virtual path for validity.
770
771         * HttpRequest.cs: MapPath now uses
772         VirtualPathUtility.IsValidVirtualPath.
773
774         * VirtualPathUtility.cs: made Canonize () internal.
775         Added a new method - IsValidVirtualPath () which checks whether a
776         passed path contains only characters allowed for virtual paths.
777
778 2008-10-22  Marek Habersack  <mhabersack@novell.com>
779
780         * HttpApplicationFactory.cs: use only the first matching method in
781         GetApplicationTypeEvents, since it will be the one coming from the
782         topmost type. Partial fix for bug #437691
783
784 2008-10-21  Marek Habersack  <mhabersack@novell.com>
785
786         * HttpApplication.cs: if context.Session is null in get_Session,
787         throw an exception. Fixes bug #437289
788
789         * CapabilitiesLoader.cs: seal BrowserData.
790         Seal CapabilitiesLoader.
791         Do not lock on typeof (CapabilitiesLoader) in GetCapabilities ().
792
793 2008-10-16  Marek Habersack  <mhabersack@novell.com>
794
795         * HttpApplicationFactory.cs: when looking up application type
796         event handlers (the Application_* methods), look deep in the
797         parent chain - we must support private handler methods in base
798         types as well.
799
800 2008-10-15  Marek Habersack  <mhabersack@novell.com>
801
802         * HttpResponse.cs: CacheabilityUpdatedEvent is no longer
803         used. cached_response is allocated only when the IsCached property
804         is assigned the 'true' value. 
805
806         * HttpCachePolicy.cs: CacheabilityUpdatedEvent is no longer used,
807         removed all the traces of it. SetCacheability should not switch
808         output caching on.
809
810 2008-10-12  Gert Driesen  <drieseng@users.sourceforge.net>
811
812         * HttpResponse.cs: Simplify code for outputting ASP.NET version, as
813         version header cannot be configured. MS corrected this documenation
814         error in .NET 2.0 SDK.
815
816 2008-10-03 Gonzalo Paniagua Javier <gonzalo@novell.com>
817
818         * HttpApplication.cs: make sure we release the resources used by the
819         request and/or the response at the end of the request.
820         Fixes bug #430040.
821
822 2008-10-01  Marek Habersack  <mhabersack@novell.com>
823
824         * BrowserCapabilities.cs: IsBrowser needs to compare browser names
825         case insensitively.
826
827 2008-09-29  Marek Habersack  <mhabersack@novell.com>
828
829         * HttpApplication.cs: do not assume the passed IAsyncResult is a
830         is a valid object in async_handler_complete_cb. Fixes bug #430488
831
832 2008-09-28  Sebastien Pouliot  <sebastien@ximian.com>
833
834         * HttpRequest.cs: Make sure the result of the multiplications are
835         longs (not integers casted into longs since they could overflow).
836         [Found using Gendarme's ReviewCastOnIntegerMultiplicationRule]
837
838 2008-09-23  Marek Habersack  <mhabersack@novell.com>
839
840         * HttpWorkerRequest.cs: implemented a SendCalculatedContentLength
841         overload. This method apparently does nothing in MS.NET.
842
843 2008-09-16  Juraj Skripsky  <js@hotfeet.ch>
844
845         * HttpServerUtility.cs (UrlDecode, UrlEncode): Respect request/response
846         encoding. Fixes bug #426539.
847
848 2008-08-29  Marek Habersack  <mhabersack@novell.com>
849
850         * HttpApplication.cs: do not cache handlers which aren't
851         reusable.
852
853 2008-08-20  Marek Habersack  <mhabersack@novell.com>
854
855         * HttpResponseHeader.cs: encode header values if
856         httpRuntime.enableHeaderChecking is true (default). Fixes bug
857         #418620
858
859 2008-08-13  Marek Habersack  <mhabersack@novell.com>
860
861         * HttpException.cs: do not use StringBuilder.AppendFormat when
862         there is no need.
863
864 2008-08-08  Marek Habersack  <mhabersack@novell.com>
865
866         * XmlSiteMapProvider.cs: a better bugfix for bug #412495.
867         Do not call RootNode within BuildSiteMap, as it induces
868         recursion. Fixes bug #415685.
869
870 2008-07-29  Marek Habersack  <mhabersack@novell.com>
871
872         * HttpRequest.cs: if the FilePath contains embedded cookie-less
873         session identifier, remove it before computing the base virtual
874         directory. Fixes bug #397418
875
876 2008-07-28  Marek Habersack  <mhabersack@novell.com>
877
878         * XmlSiteMapProvider.cs: set the base ResourceKey to the name of
879         our associated site map file, so that localization works
880         correctly. Fixes bug #412493
881         Do not add the root node retrieved from BuildSiteMapRecursive in
882         BuildMap, if the node is already the current root node. Fixes bug
883         #412495
884
885 2008-07-26  Gert Driesen  <drieseng@users.sourceforge.net>
886
887         * HttpCachePolicy.cs: Only add Expires header if expire date is
888         actually set. Removed extra tabs and regions. Code formatting.
889
890 2008-07-23  Marek Habersack  <mhabersack@novell.com>
891
892         * HttpApplication.cs: do not register handlers for
893         BeginRequest/EndRequest when called from within the
894         Application_Start handler. Fixes bug #411213
895
896         * HttpApplicationFactory.cs: let the application know we're
897         running the Application_Start handler so that it can suppress
898         registering some events from inside that handler (see bug
899         #381971). Fixes bug #411213
900
901 2008-06-30  Marek Habersack  <mhabersack@novell.com>
902
903         * HttpRuntime.cs, HttpApplication.cs: hush the warnings
904
905         * HttpContext.cs: GetGlobalObjectFromFactory caches the
906         ResourceManager objects now. Patch from Zoltan Varga
907         <vargaz@gmail.com>, thanks!
908         The GetGlobalObjectFromFactory caches are thread local to avoid
909         locking.
910         GetResourceObject ResourceManager cache is now a thread local
911         Dictionary to avoid cloning.
912         Hush the warnings.
913
914 2008-06-27  Robert Jordan  <robertj@gmx.net>
915
916         * HttpCachePolicy.cs: map default HttpCacheability to
917         "Cache-control: private" for MS.NET compatibility.
918         Fixes bug #404083. Contributed by
919         Hubert FONGARNAND <informatique.internet@fiducial.fr>.
920
921 2008-06-21  Robert Jordan  <robertj@gmx.net>
922
923         * HttpRuntime.cs (.cctor): Workaround for bug #402263.
924
925 2008-06-19  Marek Habersack  <mhabersack@novell.com>
926
927         * MimeTypes.cs: added a mime type entry for .xpi files.
928
929 2008-06-18  Juraj Skripsky  <js@hotfeet.ch>
930
931         * HttpResponse.cs (AddHeadersNoCache): Add "X-AspNet-Version" header if
932         enabled.
933
934 2008-06-16  Noam Lampert  <noaml@mainsoft.com>
935
936         * HttpContext.cs: improve support for RewritePath
937
938 2008-06-10  Marek Habersack  <mhabersack@novell.com>
939
940         * HttpRuntime.cs: do not create a new thread to run the
941         application, reuse the thread from the hosting application (XSP's
942         thread comes from threadpool).
943
944 2008-06-06  Marek Habersack  <mhabersack@novell.com>
945
946         * SiteMap.cs: FindCurrentNode is no longer needed. CurrentNode
947         uses Provider.CurrentNode to find the return value.
948         AddNode doesn't throw a duplicate key exception for nodes not
949         belonging to the current provider.
950         Check whether keys exist before removing entries from the
951         dictionaries.
952
953         * XmlSiteMapProvider.cs: implemented support for child providers
954         (the AddProvider method). FindSiteMapNode* methods look for the
955         node also in the collection of child providers. Fixes bug #397040
956
957 2008-06-04  Marek Habersack  <mhabersack@novell.com>
958
959         * HttpResponse.cs: correctly modify virtual path to include the
960         session ID in cookieless session mode. Fixes bug #396628.
961
962         * HttpServerUtility.cs: remove session hash from the URL if in the
963         cookieless mode. Fixes bug #396628.
964
965         * HttpRequest.cs: make sure that BaseVirtualDir always returns
966         some value.
967
968 2008-06-02  Miguel de Icaza  <miguel@novell.com>
969         
970         * HttpRuntime.cs: Thanks to Christian Hergert for finding this
971         one.  
972
973         Do not throw NIEX on IsOnUNCShare, instead compute the value. 
974
975 2008-05-30  Marek Habersack  <mhabersack@novell.com>
976         
977         * HttpApplication.cs, HttpCachePolicy.cs, SiteMapProvider.cs,
978         TraceContext.cs: do not use synthetized event accessors (to avoid
979         locks).
980
981 2008-05-19 Noam Lampert <noaml@mainsoft.com>
982
983         * HttpServerUtility.cs: Fix bug in UrlPathEncode when URL contains '?' 
984
985 2008-05-12 Noam Lampert <noaml@mainsoft.com>
986
987         * HttpApplication.cs: Fix regressions introduced by latest commit
988
989 2008-05-07 Gonzalo Panigua Javier <gonzalo.mono@gmail.com>
990
991         * HttpApplication.cs: create a fake context while loading the
992         modules on the first request so that the modules don't mess up
993         with the actual output of that request.
994
995 2008-05-07  Marek Habersack  <mhabersack@novell.com>
996
997         * HttpRequest.cs: StripPath should handle UNC paths too. Fixes bug
998         #385870. Patch from Ivan Hamilton <ivan@chimerical.com.au>,
999         thanks!
1000
1001 2008-05-06  Marek Habersack  <mhabersack@novell.com>
1002
1003         * MimeTypes.cs: mime type keys might not exist in the dictionary,
1004         in the 2.0 profile. Patch from Rolf Kvinge <rkvinge@novell.com>
1005         and Jean-Baptiste Evain <jbevain@novell.com>, thanks! Fixes bug
1006         #386008
1007
1008 2008-04-30  Marek Habersack  <mhabersack@novell.com>
1009
1010         * HttpApplication.cs: when the Start method is called in a new
1011         thread, the thread's culture and ui culture are set to their
1012         defaults, thus ignoring whatever their values were in the parent
1013         thread. This is now fixed by passing an array containing the
1014         culture values to the Start method, so that the new thread can be
1015         properly initialized. Fixes bug #323566
1016
1017         * SiteMapNode.cs: the implicitResourceKey parameter to one of the
1018         constructors sets the value of the ResourceKey property.
1019         GetImplicitResourceString uses the provider's ResourceKey as the
1020         global resource object key and the node's ResourceKey to construct
1021         the resource name. Fixes bug #323994
1022         ResourceKey setter throws an InvalidOperationException now, when
1023         the node is read-only.
1024
1025 2008-04-29  Marek Habersack  <mhabersack@novell.com>
1026
1027         * HttpException.cs: safe guard against context being null in
1028         GetHtmlErrorMessage.
1029
1030 2008-04-26  Marek Habersack  <mhabersack@novell.com>
1031
1032         * VirtualPath.cs: added a new property, PhysicalPath.
1033
1034 2008-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
1035
1036         * HttpResponse.cs: Use double quotes in link to match MS.
1037
1038 2008-04-25  Marek Habersack  <mhabersack@novell.com>
1039
1040         * HttpApplication.cs: use Request.CurrentExecutionFilePath when
1041         querying for the handler. Makes requests work if request path was
1042         rewritten without modifying the FilePath. Fixes bug #383652
1043
1044         * HttpContext.cs: set Request.FilePath in RewritePath only if
1045         setClientFilePath is true. Fixes bug #383652
1046         Revert the change in revision 100273 - the real bug was in a
1047         different overload of RewritePath, fixed with the commit for the
1048         above bug #383652
1049
1050 2008-04-24  Marek Habersack  <mhabersack@novell.com>
1051
1052         * HttpApplication.cs: added a new overload of GetHandler which
1053         allows the caller to ignore the handler found in the context
1054         passed to the method.
1055
1056         * HttpServerUtility.cs: have HttpApplication.GetHandler ignore the
1057         handler found in the current context when Execute'ing another
1058         page. Fixes bug #316166
1059
1060 2008-04-23  Marek Habersack  <mhabersack@novell.com>
1061
1062         * VirtualPath.cs: introduced the CurrentRequestDirectory property,
1063         which returns the virtual directory for the current request. The
1064         information is taken from either current request's
1065         CurrentExecutionFilePath property (if not null) or from the path
1066         set externally (by setting the property or using the appropriate
1067         VirtualPath constructor). The new property is used to construct
1068         the correct absolute virtual path in the MakeRooted method. Fixes
1069         bug #381715.
1070
1071         * HttpApplication.cs: events registered from Application_Start are
1072         silently ignored - any event registered after the one-time
1073         application initialization is completed, is ignored. Fixes bug
1074         #381971
1075
1076         * HttpApplicationFactory.cs: call app.DisposeInternal instead of
1077         app.Dispose.
1078
1079         * HttpContext.cs: Fix bug #371581 for 1.1 as well.
1080
1081 2008-04-19  Marek Habersack  <mhabersack@novell.com>
1082
1083         * HttpException.cs: don't write the stack trace inside html
1084         comment if custom errors are enabled.
1085
1086 2008-04-15  Kornél Pál  <kornelpal@gmail.com>
1087
1088         * HttpRuntime.cs: Don't add Date header for error pages either. Fixes bug
1089         #363404.
1090
1091 2008-04-15  Marek Habersack  <mhabersack@novell.com>
1092
1093         * HttpRequest.cs: dispose of streams the way it should
1094         be done.
1095
1096 2008-04-14  Igor Zelmanovich <igorz@mainsoft.com>
1097
1098         * HttpRuntime.cs: refactoring.
1099
1100 2008-04-14  Marek Habersack  <mhabersack@novell.com>
1101
1102         * XmlSiteMapProvider.cs: FindStartingNode throws an exception when
1103         it is passed a file which ends in an extension other than
1104         .sitemap.
1105         Fixed a check for the siteMapFile attribute presence. Fixes bug
1106         #379566.
1107
1108         * SiteMap.cs: FindCurrent node uses the default provider
1109         exclusively. Fixes bug #379566
1110
1111 2008-04-10  Marek Habersack  <mhabersack@novell.com>
1112
1113         * HttpApplicationFactory.cs: compile web references before
1114         App_Code. Fixes bug #377934
1115
1116         * MimeTypes.cs: added some missing MIME types. New entries
1117         contributed by Albert Ritmeester
1118         <aritmeester@vitalhealthsoftware.nl>, thanks! Fixes bug #372290
1119
1120 2008-04-09  Marek Habersack  <mhabersack@novell.com>
1121
1122         * HttpContext.cs: make RewritePath work correctly in the 2.0
1123         profile, fixes bug #371581
1124
1125         * HttpApplicationFactory.cs: compile web references. Fixes bug
1126         #377934
1127
1128         * VirtualPath.cs: added a method to convert a physical path into a
1129         virtual one, if the physical path is under the application root.
1130
1131 2008-04-08  Dean Brettle <dean@brettle.com>
1132
1133         * HttpApplicationFactory.cs (CapabilitiesProcessor): changed to
1134         use etc/mono/2.0/Browser/*.browser files in addition to 
1135         ~/App_Browsers/*.browser files.
1136
1137 2008-04-07  Marek Habersack  <mhabersack@novell.com>
1138
1139         * VirtualPath.cs: added
1140
1141 2008-04-02  Marek Habersack  <mhabersack@novell.com>
1142
1143         * HttpRequest.cs: make sure QueryStringRaw is always returned with
1144         a leading '?' and that we return something meaningful even if the
1145         url components weren't collected before. Fixes bug #376352
1146
1147 2008-04-01  Marek Habersack  <mhabersack@novell.com>
1148
1149         * HttpApplication.cs: set context.Handler to the detected handler
1150         object before firing application events. Fixes bug #372897
1151
1152 2008-03-31  Marek Habersack  <mhabersack@novell.com>
1153
1154         * StaticFileHandler.cs: added code to use custom
1155         VirtualPathProvider, if present, to serve files from virtual
1156         storage.
1157
1158         * HttpResponse.cs: added two internal TransmitFile overloads which
1159         take a VirtualFile as a parameter.
1160
1161 2008-03-27  Marek Habersack  <mhabersack@novell.com>
1162
1163         * HttpRequest.cs: make UrlComponents internal.
1164
1165         * HttpContext.cs: added support for resource provider factories.
1166
1167 2008-03-13  Marek Habersack  <mhabersack@novell.com>
1168
1169         * HttpApplicationFactory.cs: use HttpApplication.BinDirs to
1170         create watchers for binary application directories.
1171
1172         * HttpApplication.cs: use HttpRuntime.CaseInsensitive instead of
1173         own IsRunningOnWindows.
1174         Remove the BinDirectories enumerator property, replaced with a
1175         BinDirectory one returning a string with path to the binary
1176         directory.
1177
1178         * HttpRuntime.cs: introduce two static properties -
1179         CaseInsensitive (set to true whenever the environment is
1180         case-insensitive - i.e. MONO_IOMAP="all" or MONO_IOMAP="case", or
1181         running on Windows) and RunningOnWindows.
1182
1183 2008-03-12  Marek Habersack  <mhabersack@novell.com>
1184
1185         * HttpApplication.cs: HttpContext.Handler may be set by a module
1186         in any of the event handlers between acquiring the initial handler
1187         and processing the request. Honor the setting and use
1188         HttpContext.Handler instead of the matched one if set.
1189
1190 2008-03-10  Marek Habersack  <mhabersack@novell.com>
1191
1192         * HttpApplication.cs: synchronize Modules and Dispose with
1193         InitOnce. Should prevent firing module events before the modules
1194         are fully initialized.
1195
1196 2008-03-09  Dean Brettle <dean@brettle.com> 
1197
1198         * HttpApplicationFactory.cs: Added support for detecting 
1199         App_Browsers/*.browser files and using them to determine capabilities.
1200         Also restart the app if the App_Browsers, App_Code, or App_GlobalResources
1201         directories are created.
1202
1203         * BrowserCapabilities.cs (TagWriter): get value via internal virtual
1204         GetTagWriter() method, which is overridden in nBrowser.Result.
1205
1206         * HttpRequest.cs (BrowserMightHaveSpecialWriter, BrowserMightHaveAdapters):
1207         internal properties added to allow Page and Control methods to avoid
1208         accessing Request.Browser to get browser-specific HtmlTextWriters or 
1209         ControlAdapters.  Those things only exist when there are App_Browsers
1210         files.
1211
1212 2008-03-09  Marek Habersack  <mhabersack@novell.com>
1213
1214         * HttpUtility.cs: HTML-decode the query string prior to parsing
1215         it.
1216
1217 2008-03-01  Marek Habersack  <mhabersack@novell.com>
1218
1219         * HttpRuntime.cs: SettingsMappingManager has been moved to
1220         Mono.Web.
1221
1222 2008-02-28  Marek Habersack  <mhabersack@novell.com>
1223
1224         * HttpParamsCollection.cs: restore the GetValues overrides only to
1225         make sure the collections are merged before invoking the base
1226         implementation. 
1227         Remove code that's no longer needed.
1228
1229 2008-02-27  Marek Habersack  <mhabersack@novell.com>
1230
1231         * HttpException.cs: error message output format changes.
1232
1233 2008-02-26  Kornél Pál  <kornelpal@gmail.com>
1234
1235         * HttpResponse.cs: Don't add Date header because servers usually add
1236         a Date header that would result in duplicate Date header sent to the
1237         client. Fixes bug #363404.
1238
1239 2008-02-25  Marek Habersack  <mhabersack@novell.com>
1240
1241         * HttpException.cs: fix a buglet with unfoldable hidden divs which
1242         contain the full compiler output and the full source code.
1243
1244         * HttpContext.cs: correctly set the timeout if the user has
1245         specified a timeout which, when converted to milliseconds yields a
1246         value larger than one allowed by Timer.Change. This can happen,
1247         for instance, when HttpServerUtility.ScriptTimeout is set to
1248         Int32.MaxValue. Previously, when something like that happened, the
1249         value was converted to 0ms, giving an instantenous timer
1250         expiration and, what follows, a request "timeout".
1251
1252 2008-02-19  Marek Habersack  <mhabersack@novell.com>
1253
1254         * HttpParamsCollection.cs: do not override the NVC behavior for
1255         GetValues - values from different sources (Form, Query, Cookies,
1256         ServerVariables) must be kept separate for this purpose. This is
1257         also the behavior of MS.NET. Fixes bug #362189
1258
1259 2008-02-18  Marek Habersack  <mhabersack@novell.com>
1260
1261         * HttpRuntime.cs: When app is offline, send status code 503
1262         instead of 200. Fixes bug #357565
1263
1264 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
1265
1266         * HttpException.cs: Avoid IndexOutOfRangeException when there are no
1267         error lines.
1268
1269 2008-02-07  Gert Driesen  <drieseng@users.sourceforge.net>
1270
1271         * HttpException.cs: Removed CWL.
1272
1273 2008-02-07  Marek Habersack  <mhabersack@novell.com>
1274
1275         * HttpException.cs: more exception output compatibility changes to
1276         match MS.NET.
1277
1278 2008-02-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
1279
1280         * HttpContext.jvm.cs: added CurrentHandlerInternal property
1281
1282 2008-02-07  Marek Habersack  <mhabersack@novell.com>
1283
1284         * HttpException.cs: moved several strings to constants, for easier
1285         maintenance. 
1286         Added 3 new constructors which let the caller to set the exception
1287         description.
1288         The Description property is now settable.
1289         The stack trace at the bottom of the file is written after the
1290         terminating </html>, inside a HTML comment. Format changed to
1291         match MS.NET.
1292         Error 404 is handled in a special way, to match the output with
1293         MS.NET.
1294
1295         * HttpContext.cs, StaticFileHandler.cs, HttpApplication.cs: use
1296         the new HttpException constructor for 404.
1297
1298 2008-02-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
1299
1300         * HttpResponse.cs: fixed AddHeadersNoCache, removed date_header since
1301         java app server adds it, under TARGET_J2EE.
1302
1303 2008-02-06  Marek Habersack  <mhabersack@novell.com>
1304
1305         * HttpApplicationFactory.cs: in FireOnAppEnd, set app_type to null
1306         after the event has been fired.
1307
1308         * HttpRuntime.cs: when switching to offline mode fire the
1309         shutdown events. Fixes bug #357565.
1310         Watch for Created event in the FileSystemWatcher for the
1311         app_offline.htm files.
1312
1313 2008-01-29  Vladimir Krasnov  <vladimirk@mainsoft.com>
1314
1315         * HttpRequest.cs: performance optimization of QueryStringRaw
1316
1317 2008-01-27  Igor Zelmanovich <igorz@mainsoft.com>
1318
1319         * HttpResponse.cs: rise PreSendRequestHeaders befire headers_sent 
1320         initialization to allow set additional headers or status code at 
1321         PreSendRequestHeaders event handlers.
1322
1323 2008-01-24  Marek Habersack  <mhabersack@novell.com>
1324
1325         * HttpApplicationFactory.cs: use BuildManager.GetCompiledType to
1326         build the application (global.asax) file.
1327
1328 2008-01-22  Konstantin Triger <kostat@mainsoft.com>
1329
1330         * HttpResponse.cs: move headers_sent initialization up to prevent additional
1331                 trial to send headers if an exception is thrown.
1332
1333 2008-01-21  Konstantin Triger <kostat@mainsoft.com>
1334
1335         * HttpRequest.cs: Form validation: ensure the collection is accessible after
1336                 validation failed.
1337
1338 2008-01-16  Juraj Skripsky  <js@hotfeet.ch>
1339
1340         * HttpRequest.cs (get_UrlReferrer): Handle case when headers contain
1341         invalid Url for referer.
1342
1343 2008-01-16  Juraj Skripsky  <js@hotfeet.ch>
1344
1345         * HttpCookieCollection.cs (AllKeys): Use Keys.CopyTo().
1346
1347 2008-01-14  Sebastien Pouliot  <sebastien@ximian.com>
1348
1349         * HttpCookie.cs: Fix HttpOnly setter. Found using Gendarme.
1350
1351 2008-01-02  Vladimir Krasnov  <vladimirk@mainsoft.com>
1352
1353         * HttpContext.cs: added resource manager caching in GetResourceObject
1354         * HttpContext.jvm.cs: added resourceManagerCache storing in appdomain
1355
1356 2007-12-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1357
1358         * HttpContext.cs: added HasError method
1359         * HttpApplication.cs: refactored thread abort handling
1360
1361 2007-12-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1362
1363         * HttpRuntime.cs: fixed HttpRuntime, added Cache.DependencyCache
1364         initialization
1365
1366 2007-12-26 Igor Zelmanovich <igorz@mainsoft.com>
1367         
1368         * TraceContext.cs:
1369         * TraceData.cs:
1370         make trace considers control state info.                
1371
1372 2007-12-25 Igor Zelmanovich <igorz@mainsoft.com>
1373         
1374         * HttpApplication.cs: initialize culture each request.
1375         makes it consider culture settings from nested web.config               
1376
1377 2007-12-19  Juraj Skripsky <js@hotfeet.ch>
1378
1379         * HttpContext.cs, HttpApplication.cs: Move timeout tracking from
1380         TimeoutManager into HttpContext. Replace periodic timeout checks with
1381         separate per-context timeout timers.  
1382         * HttpRuntime.cs: remove TimeoutManager.
1383
1384 2007-12-18  Miguel de Icaza  <miguel@novell.com>
1385
1386         * HttpCookieCollection.cs (Get): implement using the indexer to
1387         share some code.   Should fix #349564.
1388
1389 2007-12-16 Igor Zelmanovich <igorz@mainsoft.com>
1390         
1391         * HttpContext.cs: added IsProcessingInclude property.
1392         * HttpServerUtility.cs: set IsProcessingInclude value within Execute.
1393
1394 2007-12-13  Marek Habersack  <mhabersack@novell.com>
1395
1396         * HttpRequest.cs, HttpResponse.cs, SiteMapNode.cs, HttpRuntime.cs,
1397         HttpResponseStream.cs, HttpApplication.cs, HttpCachePolicy.cs:
1398         speed optimization - use String.Concat instead of String.Format in
1399         some cases.
1400
1401 2007-12-13 Igor Zelmanovich <igorz@mainsoft.com>
1402         
1403         * HttpApplication.cs:
1404         * HttpContext.cs:
1405         * HttpRequest.cs:
1406         * HttpServerUtility.cs:
1407         - When Transfer/Execute is called with preserveForm=true, transferred 
1408         page is not processed as PostBack but form collection is preserved.
1409         - When Execute is called more than once, PreviousPage property is set 
1410         correct.
1411
1412 2007-12-09  Vladimir Krasnov  <vladimirk@mainsoft.com>
1413
1414         * HttpApplication.cs: added TARGET_JVM to LoadType method
1415
1416 2007-12-08  Marek Habersack  <mhabersack@novell.com>
1417
1418         * HttpRuntime.cs: initialize the Settings Mapping Manager once per
1419         application, just after initalizing the WebConfigurationManager.
1420
1421 2007-11-28  Marek Habersack  <mhabersack@novell.com>
1422
1423         * HttpApplication.cs: peform the check of whether we're running on
1424         Windows from within a static constructor.
1425
1426 2007-11-23  Marek Habersack  <mhabersack@novell.com>
1427
1428         * RequestNotificationStatus.cs: fix the order of enum members.
1429
1430         * RequestNotification.cs: assign correct values to the enum
1431         members.
1432
1433         * StaticSiteMapProvider.cs: change visibility of the constructor.
1434
1435         * HttpRequest.cs: added missing property LogonUserIdentity.
1436
1437         * HttpCacheVaryByContentEncodings.cs: this constructor should not
1438         be public.
1439
1440 2007-11-23  Daniel Nauck  <dna@mono-project.de>
1441
1442         * TraceContextRecord.cs: implemented
1443
1444 2007-11-23  Marek Habersack  <mhabersack@novell.com>
1445
1446         * BrowserCapabilities.cs: the JavaScript property is obsolete in
1447         2.0sp1.
1448
1449 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1450
1451         * IPartitionResolver.cs: implemented
1452
1453 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1454
1455         * WebPageTraceListener.cs: implemented
1456
1457 2007-11-22  Marek Habersack  <mhabersack@novell.com>
1458
1459         * RequestNotificationStatus.cs: added
1460
1461         * RequestNotification.cs: added
1462
1463         * HttpCacheVaryByContentEncodings.cs: added
1464
1465         * HttpCachePolicy.cs: added the HttpCacheVaryByContentEncodings
1466         property.
1467
1468         * HttpApplication.cs: added 3 new events to the pipeline (for
1469         compatibility with the 2.0sp1/3.5 version of System.Web)
1470
1471 2007-11-22  Daniel Nauck  <dna@mono-project.de>
1472
1473         * WebPageTraceListener.cs: initial checkin (stubs).
1474
1475 2007-11-17  Marek Habersack  <mhabersack@novell.com>
1476
1477         * HttpResponse.cs: make sure fileDependencies is not null before
1478         attempting to use it. Fixes bug #342511.
1479
1480 2007-11-07 Igor Zelmanovich <igorz@mainsoft.com>
1481
1482         * TraceContext.cs:
1483         * TraceData.cs: implemented TraceMode feature.  
1484
1485 2007-11-07 Igor Zelmanovich <igorz@mainsoft.com>
1486
1487         * BaseParamsCollection.cs:
1488         ensure collection will not be changed during enumeration.
1489
1490 2007-11-06  Marek Habersack  <mhabersack@novell.com>
1491
1492         * HttpResponse.cs: trigger the PreSendRequestHeaders event before
1493         setting the output headers. Fixes bugs #334521, #339538
1494
1495         * TraceData.cs: do not use DataTable for trace data storage
1496         anymore. Instead, a set of classes is used to hold data and a
1497         Queue container (generic version in 2.0) is used to hold the data
1498         rows. Fixes bug #325267.
1499
1500 2007-11-05  Marek Habersack  <mhabersack@novell.com>
1501
1502         * HttpRequest.cs: cope with UriBuilder.Query being null.
1503
1504 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
1505
1506         * HttpRuntime.cs: Always return a path with trailing directory
1507         separator character. Spaces to tabs.
1508
1509 2007-11-03  Marek Habersack  <mhabersack@novell.com>
1510
1511         * HttpApplication.cs: removed unused internal PrivateBinPath
1512         property.
1513
1514         * HttpRuntime.cs: BinDirectory returns a path that ends with the
1515         directory separator character.
1516
1517 2007-11-02  Marek Habersack  <mhabersack@novell.com>
1518
1519         * HttpServerUtility.cs: in 2.0, Transfer is allowed only from
1520         pages. Fixes bug #334931
1521         Also, according to MSDN docs, transfer in 2.0+ is possible only to
1522         other pages.
1523
1524         * HttpRuntime.cs: BinDirectory returns a full path to the actual
1525         bin directory in the application root. If no bin directory is
1526         found, it defaults to returning <applicationPath>/bin. Fixes bug
1527         338116.
1528
1529         * HttpApplication.cs: introduced HTTP handler cache to save time
1530         on repetitive handler collection traversals. On busy sites the
1531         traversal of the default 26 handlers may account for thousands of
1532         unnecessary calls to configsystem.LocateHandler method, which may
1533         also involve executing a regex. The cache is cleared whenever the
1534         HTTP handler collection is modified.
1535
1536 2007-10-30 Igor Zelmanovich <igorz@mainsoft.com>
1537
1538         * HttpUtility.cs: fixed HtmlEncode for TARGET_JVM.
1539
1540 2007-10-30 Igor Zelmanovich <igorz@mainsoft.com>
1541
1542         * HttpUtility.cs: fixed UrlPathEncode.
1543
1544 2007-10-24  Gert Driesen  <drieseng@users.sourceforge.net>
1545
1546         * StaticFileHandler.cs: Modified 404 message to match MS.
1547
1548 2007-10-24  Marek Habersack  <mhabersack@novell.com>
1549
1550         * HttpUtility.cs: MS.NET does not support the ';' query parameter
1551         separator. Fixes bug #335615
1552
1553 2007-10-18  Juraj Skripsky  <js@hotfeet.ch>
1554
1555         * StaticSiteMapProvider.cs: Replace Hashtables by Dictionaries,
1556         don't allocate them on-demand, there will never be many
1557         Provider instances around.
1558         AddNode(): Check for duplicate keys before adding any item to
1559         hashtables.
1560         RemoveNode(): Use fact that Hashtable.Remove() never throws,
1561         remove item from keyToNode as well, make symmetric to AddNode().
1562         MapUrl(): Use VirtualPathUtility, allow for full urls
1563         (e.g. http://www.google.com).
1564         
1565 2007-10-17  Marek Habersack  <mhabersack@novell.com>
1566
1567         * StaticFileHandler.cs: fixed an bug with Mono running under
1568         Windows operating systems which caused XSP to return source of the
1569         requested page if the file name used in the request ended in any
1570         number of spaces or dots. The problem lies in the way the Win32
1571         subsystem treats such file names - it ignores the trailing
1572         characters and allows the calling application to open a file on
1573         disk even when its name does not contain the trailing characters
1574         used in the open request. Such file names may be supported by the
1575         underlying filesystem (e.g. NTFS) but they are not supported by
1576         the I/O Win32 subsystem. The security issue is reported in
1577         CVE security report CVE-2007-5473. Fixes bug #332401
1578         
1579 2007-10-17  Igor Zelmanovich <igorz@mainsoft.com>
1580
1581         * HttpResponse.cs:
1582         response status is sent after PreSendRequestHeaders invoked.
1583         Redirect method set RedirectLocation property
1584         fixes bug #334521
1585                 
1586 2007-10-15  Marek Habersack  <mhabersack@novell.com>
1587
1588         * HttpApplication.cs: do not return a non-existing bin directory
1589         from BinDirectories. Patch from Atsushi Enomoto
1590         <atsushi@ximian.com>, thanks! Fixes bug #332434. 
1591
1592 2007-10-04  Marek Habersack  <mhabersack@novell.com>
1593
1594         * HttpApplication.cs: call the Init method after loading the
1595         modules and hooking up application events. Fixes bug #330416.
1596
1597 2007-10-01  Marek Habersack  <mhabersack@novell.com>
1598
1599         * HttpServerUtility.cs: set a flag when transferring control to
1600         another page.
1601
1602         * HttpContext.cs: added an internal InTransit property to carry
1603         information that HttpServerUtility.Transfer has been used, over to
1604         the target page.
1605
1606 2007-09-12  Juraj Skripsky <js@hotfeet.ch>
1607
1608         * StaticSiteMapProvider.cs (AddNode): Add message text to
1609         InvalidOperationException (duplicate url case).
1610
1611 2007-09-06  Marek Habersack  <mhabersack@novell.com>
1612
1613         * HttpCachePolicy.cs: implemented setting the ETag and
1614         Last-Modified headers from file dependencies.
1615
1616         * HttpResponse.cs: implemented file dependency methods.
1617
1618 2007-09-01  Marek Habersack  <mhabersack@novell.com>
1619
1620         * HttpRuntime.cs: rewrote the app_offline.htm support. It now uses
1621         filesystem watchers instead of checking for existence of the
1622         file(s) at the beginning of every request. No performance penalty
1623         that way.
1624
1625 2007-08-31  Marek Habersack  <mhabersack@novell.com>
1626
1627         * HttpApplicationFactory.cs: added methods to enable/disable
1628         watchers.
1629
1630         * HttpRuntime.cs: implemented handling of app_offline.htm file in
1631         the application root directory. Fixes bug #81127.
1632
1633         * HttpResponse.cs: make sure neither context or
1634         context.ApplicationInstance are null in End ().
1635
1636 2007-08-27  Marek Habersack  <mhabersack@novell.com>
1637
1638         * HttpCookie.cs: make sure a key is output even if it has no
1639         values set. Fixes bug #81333.
1640
1641 2007-08-23  Marek Habersack  <mhabersack@novell.com>
1642
1643         * HttpApplication.cs: added a static array BinDirs which contains
1644         the common bin directory names we can encounter.
1645         Added internal static property IsRunningOnWindows.
1646         Added internal enumerable property BinDirectories to iterate over
1647         the full paths of the available binary directories.
1648         Added internal enumerable property BinDirectoryAssemblies to
1649         iterate over .dll files in the bin directories.
1650         LoadTypeFromPrivateBin renamed to LoadTypeFromBin.
1651         LoadTypeFromBin uses BinDirectoryAssemblies.
1652         
1653         * HttpApplicationFactory.cs: use HttpApplication.BinDirectories to
1654         interate over the list of bin dirs.
1655
1656 2007-08-21  Marek Habersack  <mhabersack@novell.com>
1657
1658         * HttpApplicationFactory.cs: watch for changes in all the
1659         private binary directories for the current application domain.
1660
1661         * HttpApplication.cs: turn the PrivateBinPath property into an
1662         internal enumerable, so that code throughout the assembly can
1663         iterate over the list of private bin directories configured for
1664         the application domain.
1665         Added a new internal method LoadTypeFromPrivateBin, for sharing
1666         with other parts of the assembly.
1667
1668 2007-08-18  Juraj Skripsky <js@hotfeet.ch>
1669
1670         * HttpRequest.cs (StripPath): Fix off-by-one error, make static.
1671
1672 2007-08-18  Marek Habersack  <mhabersack@novell.com>
1673
1674         * HttpRequest.cs: IE sends the full input file path when uploading
1675         a file via the upload input control. Detect the situation and
1676         strip the leading path. Fixes bug #82059.
1677
1678         * HttpServerUtility.cs: set the current context's path(s) to the
1679         Transfer/Execute target only to retrieve the new handler, and
1680         restore them immediately afterwards. It has a two-fold effect:
1681         first it avoids an extra round trip to the original page which
1682         called Transfer/Execute, second it makes FilePath etc. return
1683         information about the original page (that is the one which called
1684         Transfer/Execute). Fixes bug #82439.
1685
1686 2007-08-14  Marek Habersack  <mhabersack@novell.com>
1687
1688         * XmlSiteMapProvider.cs: do not hide this_lock.
1689
1690 2007-08-09  Marek Habersack  <mhabersack@novell.com>
1691
1692         * HttpApplicationFactory.cs: unconditionally watch for changes
1693         (including creation) to Global.asax, global.asax, Web.config,
1694         web.config and Web.Config. This makes the application restart once
1695         any of those is created. Patch from Juraj Skripsky
1696         <juraj@hotfeet.ch>, thanks! Fixes bug #82380.
1697
1698 2007-08-08  Marek Habersack  <mhabersack@novell.com>
1699
1700         * StaticSiteMapProvider.cs, HttpApplicationFactory.cs,
1701         HttpStaticObjectsCollection.cs, SiteMapProvider.cs,
1702         XmlSiteMapProvider.cs, HttpApplication.cs, CapabilitiesLoader.cs,
1703         TimeoutManager.cs: do not use lock (this), replace it with lock
1704         (this_object), where this_object is an instance variable. Prevents
1705         deadlocks in situation when external code locks on the class
1706         instance.
1707
1708 2007-08-05  Vladimir Krasnov  <vladimirk@mainsoft.com>
1709
1710         * HttpUtility.cs: performance refactoring, optimized UrlEncode
1711
1712 2007-08-05 Igor Zelmanovich <igorz@mainsoft.com>
1713
1714         * SiteMapNode.cs: refactoring + typo fix: 
1715         variable is declared in scope where is used.
1716
1717 2007-07-31  Vladimir Krasnov  <vladimirk@mainsoft.com>
1718
1719         * VirtualPathUtility.cs: refactored GetDirectory, ToAbsolute, added
1720         internal api to skip path normalizing
1721
1722 2007-07-30  Vladimir Krasnov  <vladimirk@mainsoft.com>
1723
1724         * HttpResponseStream.jvm.cs: optimized CharBucket
1725
1726 2007-07-22  Vladimir Krasnov  <vladimirk@mainsoft.com>
1727
1728         * HttpServerUtility.cs: fixed Execute, SetCurrentExePath should be 
1729         called after ApplicationInstance.GetHandler call in case of GetHandler
1730         fails for some reason
1731
1732 2007-07-21  Marek Habersack  <mhabersack@novell.com>
1733
1734         * HttpRuntime.cs: clean up the dynamic base directory on domain
1735         shutdown.
1736
1737 2007-07-10  Vladimir Krasnov  <vladimirk@mainsoft.com>
1738
1739         * HttpUtility.cs: optimized HtmlEncode and HtmlAttributeEncode methods
1740
1741 2007-07-05  Miguel de Icaza  <miguel@novell.com>
1742
1743         * HttpApplication.cs (AsyncRequestState.Complete): Add the
1744         try/catch for the callback here to ensure that we only call
1745         complete_event.Set once. 
1746
1747         (PipelineDone): This is where the core of the bug fix is: do not
1748         call Complete() or call done.Set() (depending on the invocation
1749         case) until we are actually done cleaning up the request.
1750
1751         The problem was that we signaled that we were done, but we had not
1752         completed the shut down, so another thread could have been
1753         scheduled on the same HttpApplication and had its variables be
1754         modified as we completed the shutdown on the first thread. 
1755
1756         This fixes #81400 which was a very long standing bug.  
1757
1758         (Tick): Remove the pipeline check against null, this is not
1759         necessary and it will help us find problems like this one in the
1760         future.
1761
1762         Reverts patch r66072 which was a described as:
1763
1764                 band-aid patch to help debugging hang running 2.0
1765                 tests.
1766
1767 2007-07-02  Marek Habersack  <mhabersack@novell.com>
1768
1769         * CapabilitiesLoader.cs: provide default capability values for all
1770         the 2.0+ capabilities which are not defined in our
1771         browscap.ini. The default values have been assigned as per
1772         MSDN. Fixes bug #81927
1773
1774 2007-06-28  Vladimir Krasnov  <vladimirk@mainsoft.com>
1775
1776         * HttpResponse.cs: fixed AddHeadersNoCache, removed content-length
1777         header for TARGET_JVM
1778         * HttpWorkerRequest.cs: made this class partial, moved TARGET_JVM stuff
1779         to .jvm part
1780         * HttpWriter.cs: fixed write methods, output_stream can write char[]
1781         and string in TARGET_JVM
1782         added HttpWorkerRequest.jvm.cs, HttpResponseStream.jvm.cs
1783
1784 2007-06-25 Juraj Skripsky <js@hotfeet.ch>
1785
1786         * HttpRuntime.cs (ShutdownAppDomain): Re-introduce call to
1787         "Cache.InvokePrivateCallbacks".
1788
1789 2007-06-24  Vladimir Krasnov  <vladimirk@mainsoft.com>
1790
1791         * HttpUtility.cs: fixed HtmlAttributeEncode, performance improvement
1792
1793 2007-06-20  Marek Habersack  <mhabersack@novell.com>
1794
1795         * HttpRuntime.cs: added new internal property, InternalCache, to
1796         keep all the internal cache entries instead of mixing them with
1797         the public cache ones.
1798         Do not invoke Cache.InvokePrivateCallbacks - this method no longer
1799         exists.
1800
1801         * HttpResponse.cs: private entries are now kept in
1802         Context.InternalCache.
1803
1804         * HttpContext.cs: added new internal property, InternalCache,
1805         which returns the HttpRuntime.InternalCache value.
1806
1807         * HttpApplication.cs: check all the loaded assemblies for the type
1808         being looked up. Patch from Juraj Skripsky <juraj@hotfeet.ch>,
1809         thanks! Fixes bug #81697.
1810
1811 2007-06-18 Igor Zelmanovich <igorz@mainsoft.com>
1812
1813         * HttpUtility.cs: refactoring:
1814         removed constants to another class.     
1815
1816 2007-06-18 Igor Zelmanovich <igorz@mainsoft.com>
1817
1818         * AssemblyResourceLoader.cs: refactoring:
1819         make the code reusable in System.Web.Extenssions.       
1820
1821 2007-05-31  Marek Habersack  <mhabersack@novell.com>
1822
1823         * SiteMapProvider.cs: implemented proper logic of authorizing
1824         user's access to a sitemap node, as per MSDN2 docs. Patch from
1825         Dumitru Ban <dban@dako.ro>, thanks!
1826
1827 2007-05-30  Marek Habersack  <mhabersack@novell.com>
1828
1829         * TraceManager.cs: Catch all the possible exceptions in the
1830         constructor - the object MUST be created successfully (even if
1831         there are errors).
1832
1833         * HttpRequest.cs: do not attempt to apply url mappings if the
1834         configuration manager has errors.
1835
1836         * HttpRuntime.cs: handle static constructor exceptions later on,
1837         during the first call to ReallyProcessRequest.
1838
1839         * QueueManager.cs: provide defaults for the parameters to be read
1840         from the config file(s).
1841         Catch all the possible exceptions in the constructor - the object
1842         MUST be created successfully (even if there are errors).
1843
1844 2007-05-29  Marek Habersack  <mhabersack@novell.com>
1845
1846         * SiteMapProvider.cs: updated the node accessibility comments.
1847         If Roles not null and user is not in at least one of the
1848         specified roles, return false.
1849         If there Url is null or empty, return false.
1850
1851 2007-05-28  Marek Habersack  <mhabersack@novell.com>
1852
1853         * HttpRequest.cs: since Path is used from within
1854         WebConfigurationManager, under some conditions it may lead to
1855         endless recursion if the UrlComponents is not instantiated when
1856         Path_get is called.
1857
1858 2007-05-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
1859
1860         * HttpContext.cs: added ProfileInitialized boolean property
1861
1862 2007-05-16  Vladimir Krasnov  <vladimirk@mainsoft.com>
1863
1864         * VirtualPathUtility.cs: Normalize method check more carefully if need
1865         to normalize, performance fix
1866
1867 2007-05-16  Konstantin Triger <kostat@mainsoft.com>
1868
1869         * HttpContext.cs: correctly check for request locality.
1870
1871 2007-05-15  Marek Habersack  <mhabersack@novell.com>
1872
1873         * HttpApplication.cs: refactoring - moved LoadType from
1874         WebConfigurationHost here and made it internal static, in order to
1875         make the code avaliable from all the places where extended type
1876         loading is required.
1877
1878 2007-05-14  Marek Habersack  <mhabersack@novell.com>
1879  
1880         * HttpUtility.cs: when parsing query strings, skip the leading ?
1881         for the first parameter name.
1882
1883         * HttpRequest.cs: added support for mapping urls, as defined in
1884         the system.web/urlMappings section.
1885
1886 2007-05-14  Vladimir Krasnov  <vladimirk@mainsoft.com>
1887         
1888         * HttpWriter.cs: GetMaxByteCount was used in Write and WriteString
1889         methods to improve performance of HttpWriter
1890
1891 2007-05-14 Igor Zelmanovich <igorz@mainsoft.com>
1892
1893         * HttpApplication.cs:
1894         prevent DOS attack: remove configuration from the cache in case 
1895         of invalid resource not exists  
1896
1897 2007-05-14  Vladimir Krasnov  <vladimirk@mainsoft.com>
1898
1899         * TraceContext.cs: refactoring, cached TraceManager
1900
1901 2007-05-03 Igor Zelmanovich <igorz@mainsoft.com>
1902
1903         * HttpApplication.cs:
1904         * HttpContext.cs:
1905         handling exceptions occurred if  <system.web/customError> 
1906         section is not valid.   
1907
1908 2007-05-08  Vladimir Krasnov  <vladimirk@mainsoft.com>
1909
1910         * BaseParamsCollection.cs: fixed Get(string) property, fixed collection
1911         lazy initialization
1912
1913 2007-05-07  Marek Habersack  <mhabersack@novell.com>
1914
1915         * HttpResponseStream.cs: use BufferOutput
1916
1917         * HttpResponse.cs: support Buffer, but use BufferOutput
1918
1919 2007-05-03 Igor Zelmanovich <igorz@mainsoft.com>
1920
1921         * BrowserCapabilities.cs:
1922         added missing API.      
1923
1924 2007-04-30 Igor Zelmanovich <igorz@mainsoft.com>
1925
1926         * HttpApplication.cs: reverted r74717.
1927
1928 2007-04-29 Igor Zelmanovich <igorz@mainsoft.com>
1929
1930         * HttpContext.jvm.cs: Response.End() must abort thread if not async.    
1931
1932 2007-04-29 Igor Zelmanovich <igorz@mainsoft.com>
1933
1934         * HttpApplication.cs: doesn't cache httpHandlersSection in instance, 
1935         that allows to consider httpHandlers section in nested web.config.      
1936
1937 2007-04-27  Marek Habersack  <mhabersack@novell.com>
1938
1939         * XmlSiteMapProvider.cs: add support for siteMapFile attribute.
1940
1941 2007-04-24  Marek Habersack  <mhabersack@novell.com>
1942
1943         * CapabilitiesLoader.cs: Hashtables used as property containers
1944         should not be case-insensitive as we now preload the property
1945         hashes with default properties, to make the code work in case
1946         browscap.ini is broken or missing. Instead, the keys are
1947         lower-cased and trimmed before indexing the Hashtable.
1948         Added all the missing capabilities to the defaultCaps Hashtable.
1949         The returned Hashtable is not reversed in GetCapabilities anymore
1950         - it might make the code faster, but it also makes it mismatch
1951         browsers (e.g. Firefox 2.0 is mismatched for Mozilla 1.8).
1952         All of the above fixes bug #81437.
1953
1954         * HttpRequest.cs: MS.NET throws HttpException for invalid paths,
1955         not ArgumentNullException.
1956
1957         * HttpException.cs: wrap GetHtmlErrorMessage internals in
1958         try/catch to capture possible exceptions in HttpContext.
1959
1960         * HttpContext.cs: IsCustomErrorEnabled is used from within
1961         HttpException, make sure it gets the section in a safe way and
1962         resorts to the default settings.
1963         
1964         * HttpResponse.cs: HeaderEncoding is used in the same context as
1965         above. Take the same precautions.
1966         
1967 2007-04-22 Joshua Tauberer <jit@occams.info>
1968  
1969         * HttpParamsCollection.cs: Fix IndexOutOfRangeException.
1970
1971 2007-04-19  Miguel de Icaza  <miguel@novell.com>
1972
1973         * BaseParamsCollection.cs (Get (string)): Call LoadInfo here to
1974         fix #81385
1975
1976 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1977
1978         * HttpException.cs: used GetBaseException() instead InnerException.
1979
1980 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1981
1982         * HttpException.cs: shows message of InnerException in head of Page.
1983
1984 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1985
1986         * HttpException.cs: fixed generated HTML formating.
1987
1988 2007-04-17 Igor Zelmanovich <igorz@mainsoft.com>
1989
1990         * HttpContext.cs: GetGlobalResourceObject, GetLocalResourceObject
1991         use case-insensitive ResourceManager
1992
1993 2007-04-15  Marek Habersack  <mhabersack@novell.com>
1994
1995         * VirtualPathUtility.cs: converted to LF line endings and set the
1996         svn:eol-style property to 'native'
1997
1998 2007-04-13  Marek Habersack  <mhabersack@novell.com>
1999
2000         * SiteMap.cs: try to look up the current map node in providers
2001         other than the current one. Patch from Mike Morano
2002         <mmorano@mikeandwan.us>. Fixes bug #81366. 
2003
2004 2007-04-12  Vladimir Krasnov  <vladimirk@mainsoft.com>
2005
2006         * HttpRequest.cs: fixed Params property to be lazy initialzation
2007         collection
2008         * added HttpParamsCollection.cs
2009
2010 2007-04-11  Konstantin Triger <kostat@mainsoft.com>
2011
2012         * HttpRequest.cs: IsLocal should return true for loopback addresses.
2013
2014 2007-04-10  Marek Habersack  <mhabersack@novell.com>
2015
2016         * HttpCookie.cs: format the output of HttpCookie.Values.ToString()
2017         in the same way MS.NET does. Fixes bug #81333. Patch from Mike
2018         Morano <mmorano@mikeandwan.us>.
2019
2020         * XmlSiteMapProvider.cs: add the NotifyFilters.Size to the
2021         watcher flags, so that we watch for modifications to a file when
2022         using Linux inotify.
2023
2024         * HttpApplicationFactory.cs: add the NotifyFilters.Size to the
2025         watcher flags, so that we watch for modifications to a file when
2026         using Linux inotify.
2027         App_Code, App_Browsers and App_GlobalResources watchers must watch
2028         for events with the '*' mask so that they can notice events
2029         related to subdirectory creation/deletion.
2030         Watch for subdirectory events with the App_Code watcher.
2031
2032 2007-04-07  Marek Habersack  <mhabersack@novell.com>
2033
2034         * HttpException.cs: show a default custom error message if custom
2035         errors are enabled.
2036         Cleaned up the errors HTML, made it XHTML-compliant. Generated
2037         HTML now uses inline CSS styles.
2038
2039 2007-04-06  Marek Habersack  <mhabersack@novell.com>
2040
2041         * HttpUtility.cs: added a constant that contains the default query
2042         parameter character.
2043         ParseQueryString supports queries with both '&' and ';' parameter
2044         separators.
2045
2046 2007-04-05  Marek Habersack  <mhabersack@novell.com>
2047
2048         * CapabilitiesLoader.cs: Make sure that the capability names
2049         (keys) are stored in lowercase.
2050
2051 2007-04-05 Igor Zelmanovich <igorz@mainsoft.com>
2052
2053         * XmlSiteMapProvider.cs: 
2054         custom attributes of siteMapNode are loaded properly.
2055
2056 2007-04-05  Marek Habersack  <mhabersack@novell.com>
2057
2058         * CapabilitiesLoader.cs: add a full default set of capabilities
2059         for cases when browscap.ini is broken, missing or doesn't contain
2060         definition for the client's User-Agent. Makes it possible to surf
2061         asp.net sites from unsupported clients.
2062
2063 2007-04-04 Juraj Skripsky <js@hotfeet.ch>
2064
2065         * HttpApplicationFactory.cs: Make sure an web application is
2066         shutdown only once (and Application_End in global.asax is called
2067         only once as well). This is necessary because FileSystemWatcher
2068         emits multiple events when e.g. global.asax is changed.
2069
2070 2007-04-01  Vladimir Krasnov  <vladimirk@mainsoft.com>
2071
2072         * HttpRequest.cs: fixed Headers property to use optimized
2073         HeadersCollection
2074         * WebROCollection.cs: used StringComparer.OrdinalIgnoreCase for
2075         NET_2_0
2076         * ServerVariablesCollection.cs: used lazy collection fill optimization
2077         * added: HeadersCollection.cs, BaseParamsCollection.cs
2078
2079 2007-04-01  Konstantin Triger <kostat@mainsoft.com>
2080
2081         * HttpContext.cs: 
2082                 GetLocalResourceObject - should not prefix resources with 'Resources.'.
2083
2084 2007-04-01  Konstantin Triger <kostat@mainsoft.com>
2085
2086         * BrowserCapabilities.cs: Default Browser (userAgent) property to 'Unknown'.
2087
2088 2007-03-29  Vladimir Krasnov  <vladimirk@mainsoft.com>
2089
2090         * HttpContext.cs: timeout methods removed from TARGET_J2EE compilation
2091         * HttpContext.jvm.cs: added stubs for timeout methods
2092
2093 2007-03-28 Igor Zelmanovich <igorz@mainsoft.com>
2094
2095         * StaticSiteMapProvider.cs:
2096         GetChildNodes does not return null but SiteMapNodeCollection.EmptyCollection.
2097
2098 2007-03-28  Konstantin Triger <kostat@mainsoft.com>
2099
2100         * BrowserCapabilities.cs: 
2101                 1. refactoring.
2102                 2. Break recoursion in case 'browser' capability is not found.
2103
2104 2007-03-28 Igor Zelmanovich <igorz@mainsoft.com>
2105
2106         * SiteMapNode.cs: fixed GetAllNodes method.
2107
2108 2007-03-27 Igor Zelmanovich <igorz@mainsoft.com>
2109
2110         * XmlSiteMapProvider.cs: fixed:
2111         resolve app-relative path from config such siteMapFile="~/Web.sitemap".
2112
2113 2007-03-27 Igor Zelmanovich <igorz@mainsoft.com>
2114
2115         * SiteMapNode.cs:
2116         * XmlSiteMapProvider.cs: fixed: Localize Site-Map Data.
2117
2118 2007-03-26  Konstantin Triger <kostat@mainsoft.com>
2119
2120         * HttpRequest.cs: correctly handle null and empty virtual pathes in MapPath.
2121
2122 2007-03-25  Vladimir Krasnov  <vladimirk@mainsoft.com>
2123
2124         * HttpContext.cs: AppGlobalResourcesAssembly static member stored in
2125         AppDomain for TARGET_JVM
2126
2127 2007-03-24  Marek Habersack  <mhabersack@novell.com>
2128
2129         * HttpRuntime.cs: use ICalls.GetMachineConfigPath instead of
2130         opening the machine.config file and getting its path.
2131
2132         * CapabilitiesLoader.cs: use HttpRuntime.MachineConfigurationDirectory 
2133         instead of opening the machine config file and getting its path.
2134
2135 2007-03-23  Konstantin Triger <kostat@mainsoft.com>
2136
2137         * HttpApplication.cs: complete the pipeline in case of exception during
2138                 InitOnce() to avoid a deadlock.
2139
2140 2007-03-22  Adar Wesley <adarw@mainsoft.com>
2141
2142         * BrowserCapabilities.cs: Added implementation for all capabilities.
2143         changed implementation to throw when capability is not defined in browscaps.ini.
2144
2145         * CapabilitiesLoader.cs: fixed parent resultion bug.  added internal support for
2146         browser and browsers capabilities.
2147
2148 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2149
2150         * HttpContext.jvm.cs, HttpRuntime.cs: cached instance of HttpRuntime
2151         in context in addition to AppDomain
2152
2153 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2154         
2155         * HttpCookie.cs, HttpCookieCollection.cs: used OrdinalIgnoreCase
2156         StringComparer for cookies and values collections 
2157
2158 2007-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2159
2160         * HttpApplication.cs: refactred handlers configuration section as
2161         member of class
2162
2163 2007-03-20  Marek Habersack  <mhabersack@novell.com>
2164
2165         * HttpRequest.cs: implement AppRelativeCurrentExecutionFilePath.
2166
2167 2007-03-18 Igor Zelmanovich <igorz@mainsoft.com>
2168
2169         * VirtualPathUtility.cs: fixed GetFileName(), GetExtension() methods.
2170
2171 2007-03-18 Igor Zelmanovich <igorz@mainsoft.com>
2172
2173         * VirtualPathUtility.cs: fixed GetDirectory() method.
2174
2175 2007-03-15  Marek Habersack  <mhabersack@novell.com>
2176
2177         * XmlSiteMapProvider.cs: handle cases with no default for the
2178         reskey properly.
2179
2180 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2181
2182         * HttpRequest.cs: fixed MapPath () method.
2183
2184 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2185
2186         * VirtualPathUtility.cs: fixed ToAbsolute() method.
2187
2188 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2189
2190         * VirtualPathUtility.cs: refactoring: class is shared with 1.x.
2191
2192 2007-03-15  Marek Habersack  <mhabersack@novell.com>
2193
2194         * XmlSiteMapProvider.cs: add support for the enableLocalization
2195         <siteMap> attribute and handle per-node localization resource
2196         strings for explicit localization as well as the resourceKey
2197         attribute to <siteMapNode> for implicit localization (closes bug
2198         #81103).
2199
2200         * SiteMapNode.cs: add support for the resource keys and foreign
2201         attributes.
2202         Implement GetImplicitResourceString.
2203         Add support for translation of the Title and Description
2204         attributes (closes bug #81103) as well as foreign attributes.
2205
2206 2007-03-15 Igor Zelmanovich <igorz@mainsoft.com>
2207
2208         * VirtualPathUtility.cs: fixed: works properly with appRelative path.
2209
2210 2007-03-13  Marek Habersack  <mhabersack@novell.com>
2211
2212         * HttpApplicationFactory.cs: resources compiler no longer accepts
2213         a boolean parameter.
2214
2215         * HttpRuntime.cs: Do not compile local resources here anymore.
2216
2217         * HttpContext.cs: if App_LocalResources assembly corresponding to
2218         the virtual path is not found, compile it here.
2219         Look up resources in the "Resources." class path.
2220
2221 2007-03-13 Igor Zelmanovich <igorz@mainsoft.com>
2222
2223         * HttpUtility.cs: fixed HttpUtillity.HtmlAttributeEncode
2224          '<' char must be encoded.      
2225
2226 2007-03-12  Vladimir Krasnov  <vladimirk@mainsoft.com>
2227
2228         * CapabilitiesLoader.cs: added TARGET_JVM part of static members,
2229         added caching to GetCapabilities method for performance improvement
2230
2231 2007-03-12  Marek Habersack  <mhabersack@novell.com>
2232
2233         * XmlSiteMapProvider.cs: support custom site map providers. Fixes
2234         bug #81115
2235
2236 2007-03-06  Vladimir Krasnov  <vladimirk@mainsoft.com>
2237
2238         * StaticFileHandler.cs: fixed ProcessRequest TARGET_JVM path,
2239         if_modified_since fixed in WAR mode
2240
2241 2007-02-25  Vladimir Krasnov  <vladimirk@mainsoft.com>
2242
2243         * HttpRequest.jvm.cs: fixed LoadWwwForm, should distinguish between
2244         query string and form values
2245
2246 2007-02-21  Marek Habersack  <grendello@gmail.com>
2247
2248         * HttpRuntime.cs: BinDirectory returns the bin directory
2249         determined by the application host on the application startup.
2250
2251         * HttpApplicationFactory.cs: Watch the bin directory determined by
2252         the application host on the application startup.
2253
2254 2007-02-20  Vladimir Krasnov  <vladimirk@mainsoft.com>
2255
2256         * HttpRequest.cs: fixed MapPath, removed TARGET_J2EE block that checks
2257         war root symbol
2258
2259 2007-02-19  Marek Habersack  <grendello@gmail.com>
2260
2261         * HttpContext.cs: Make sure all the global resource objects are
2262         sought in the Resources. namespace.
2263
2264 2007-02-18  Eyal Alaluf  <eyala@mainsoft.com>
2265
2266         * HttpContext.jvm.cs, HttpRequest.jvm.cs: Adapt for tunning under test
2267           harness where we don't have a SevletRequest/Response.
2268
2269 2007-02-13  Vladimir Krasnov  <vladimirk@mainsoft.com>
2270
2271         * HttpApplication.cs: fixed InitOnce, httpModules section is global and
2272         taken from the root web.config
2273
2274 2007-02-12  Robert Jordan  <robertj@gmx.net>
2275
2276         * HttpResponseStream.cs (BlockManager.EnsureCapacity):
2277         don't call Marshal.ReAllocHGlobal on NULL because, unlike
2278         realloc(3) and g_realloc, it doesn't support this semantic.
2279         Fixes a part of bug #77075.
2280
2281 2007-02-12  Marek Habersack  <grendello@gmail.com>
2282
2283         * HttpRuntime.cs: support for preservation (.compiled) assembly
2284         mapping files.
2285
2286 2007-02-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2287
2288         * HttpApplication.cs: added exception pass through from processAction
2289         in j2ee portal
2290
2291 2007-02-02  Marek Habersack  <grendello@gmail.com>
2292
2293         * HttpApplicationFactory.cs: make code a bit more compact.
2294
2295 2007-01-30  Vladimir Krasnov  <vladimirk@mainsoft.com>
2296
2297         * HttpResponse.cs: fixed TARGET_J2EE part of Redirect for portlet
2298
2299 2007-01-30  Adar Wesley <adarw@mainsoft.com>
2300
2301         * VirtualPathUtility.cs: fixed exceptions thrown from Combine
2302         so they are compatible with MS.
2303
2304 2007-01-25  Marek Habersack  <grendello@gmail.com>
2305
2306         * HttpApplication.cs: Make sure that a specific culture is used
2307         when setting the current thread culture.
2308
2309 2007-01-21 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
2310
2311         * HttpServerUtility.cs: implement Execute/Transfer overloads that take
2312         an IHttpHandler. Still missing the documented check for page IsCallback.
2313         Also, on MS when i derive from Page for my IHttpHandler, it works fine,
2314         but if I just implement IHttpHandler, an exception is thrown. This needs
2315         to be researched but, by now, the IHttpHandler version works on mono
2316         and fails on MS.
2317
2318 2007-01-20  Miguel de Icaza  <miguel@novell.com>
2319
2320         * SiteMapNode.cs (GetExplicitResourceString): implement.
2321
2322         * HttpContext.cs (GetGlobalResourceObject): remove unused variable.
2323
2324         * StaticFileHandler.cs (ProcessRequest): remove unused variable.
2325
2326         * HttpApplication.cs (ProcessError): Remove unused variable. 
2327
2328         * HttpServerUtility.cs (Execute): Add new overload and rename
2329         parameter to match MS (as they are normative).
2330
2331 2007-01-17  Marek Habersack  <grendello@gmail.com>
2332
2333         * HttpApplicationFactory.cs: Implement code and framework to
2334         enable automatic application restarts on changes to folders/files
2335         in a generic way. Patch from Damien Churchill
2336         <damien.churchill@ukplc.net>, thanks!
2337         Make sure the top-level assemblies (App_Code, resources) are not
2338         referenced twice should a compilation error occur.
2339
2340 2007-01-16  Atsushi Enomoto  <atsushi@ximian.com>
2341
2342         * TraceData.cs : page could be null. Fixed bug #80480.
2343
2344 2007-01-15  Ilya Kharmatsky   <ilya -at- decode-systems.com>
2345
2346         * VirtualPathUtility.cs: fixed bugs in methods - GetDirectory and
2347         GetExtension, according to the VirtualPathUtilityTest
2348
2349 2007-01-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
2350
2351         * SiteMapProvider.cs: fixed IsAccessibleToUser, true if
2352         SecurityTrimmingEnabled not enabled, true if Roles exists on node and
2353         rolename is '*'
2354
2355 2007-01-14  Eyal Alaluf  <eyala@mainsoft.com>
2356
2357         * HttpRequest.jvm.cs, HttpContext.jvm.cs: Added TARGET_J2EE specific files.
2358         * HttpContext.cs, HttpResponse.cs, HttpRequest.cs, HttpCookie.cs:
2359           Add J2EE Portal support for TARGET_J2EE.
2360
2361 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2362
2363         * HttpRequest.cs: fixed IsLocal, should check all ip addresses of host
2364
2365 2007-01-05  Marek Habersack  <grendello@gmail.com>
2366
2367         * HttpApplicationFactory.cs: Use the new app resources compiler.
2368
2369         * HttpRuntime.cs: Use the new app resources compiler.
2370
2371         * HttpContext.cs: Reimplement the GetGlobalResourceObject
2372         methods, implement the GetLocalResourceObject methods.
2373
2374         * HttpResponse.cs: Implement the HeaderEncoding property.
2375
2376 2007-01-04  Andreia Gaita  <avidigal@novell.com>
2377
2378         * HttpRuntime.cs: Add check for NET_2_0 when initializing
2379         WebConfigurationManager, build failing on 1.1 profile
2380         
2381 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2382
2383         * HttpApplicationFactory.cs, HttpRuntime.cs: WebConfigurationManager
2384         should be initializaed before any possible access to it
2385
2386 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2387
2388         * HttpRequest.cs: fixed Path property, add call of
2389         Uri.UnescapeDataString in net_2_0
2390
2391 2007-01-04  Vladimir Krasnov  <vladimirk@mainsoft.com>
2392
2393         * HttpApplication.cs: fixed PreStart, should not set thread culture
2394         to invariant
2395
2396 2007-01-03  Vladimir Krasnov  <vladimirk@mainsoft.com>
2397
2398         * HttpRequest.cs: fixed jvm version of MakeInputStream, should not
2399         throw exception on zero content length
2400
2401 2007-01-03  Vladimir Krasnov  <vladimirk@mainsoft.com>
2402
2403         * SiteMap.cs, SiteMapNodeCollection.cs: TARGET_JVM of static members
2404
2405 2006-12-20  Marek Habersack  <grendello@gmail.com>
2406
2407         * HttpContext.cs: add internal setter for the Profile property.
2408
2409         * HttpApplicationFactory.cs: Added a shortcut version of
2410         InvokeSessionEnd for use from the 2.0 SessionState code.
2411
2412 2006-12-18  Vladimir Krasnov  <vladimirk@mainsoft.com>
2413
2414         * HttpRequest.cs: fixed Path property, returns unescaped url
2415
2416 2006-12-16  Marek Habersack  <grendello@gmail.com>
2417
2418         * HttpRequest.cs: Fix for http exception during first visit to an
2419         application when the visit path is not the app's virtual root.
2420
2421 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2422
2423         * SiteMapProvider.cs.cs:
2424         * XmlSiteMapProvider.cs: fixed: because more then one node with empty url
2425         is allowed unique key is generated for each node.               
2426
2427 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2428
2429         * SiteMapProvider.cs.cs: fixed: IsAccessibleToUser resolvs relative url.
2430         * StaticSiteMapProvider.cs: fixed: RemoveNode   
2431
2432 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2433
2434         * VirtualPathUtility.cs: fixed: Combine(), ToAbsolute() methods.
2435
2436 2006-12-12 Igor Zelmanovich <igorz@mainsoft.com>
2437
2438         * VirtualPathUtility.cs: fixed: IsAppRelative() method.
2439
2440 2006-12-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
2441
2442         * BrowserCapabilities.cs: fixed MSDomVersion property
2443
2444 2006-12-05 Igor Zelmanovich <igorz@mainsoft.com>
2445
2446         * VirtualPathUtility.cs: fixed: ToAbsolute() method.
2447
2448 2006-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2449
2450         * HttpRequest.cs: call MapPath on the HttpWorkerRequest so that if
2451         FilePath is changed we get the new physical path, not the one of the
2452         original request. Fixes bug #80152.
2453
2454 2006-12-03 Igor Zelmanovich <igorz@mainsoft.com>
2455
2456         * HttpWriter.cs: reverted r38835.
2457
2458 2006-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2459
2460         * HttpWriter.cs: remove unused WriteBytes method.
2461
2462 2006-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2463
2464         * HttpRequest.cs: physical path comes from GetFilePathTranslated to
2465         avoid trimming in HttpRequest.MapPath.
2466
2467 2006-11-29  Marek Habersack  <grendello@gmail.com>
2468
2469         * HttpApplication.cs: Make use of the handler stack implemented
2470         in HttpContext.
2471
2472         * HttpCacheVaryByHeaders.cs: Optionally omit the vary:* header
2473         value in the 2.0 profile.
2474
2475         * HttpServerUtility.cs: Make use of the handler stack implemented
2476         in HttpContext.
2477         Implemented the UrlToken{Encode,Decode} 2.0 methods.
2478
2479         * HttpResponse.cs: Implemented the IsRequestBeingRedirected
2480         property.
2481
2482         * HttpContext.cs: Implemented the CurrentHandler and PreviousHandler
2483         methods, together with helper functions to handle the handler
2484         stack.
2485         GetSection(string) should be present only in the 2.0 profile.
2486
2487         * HttpCachePolicy.cs: implement the SetNoServerCaching,
2488         SetNoStore, SetNoTransforms, SetValidUntilExpires and
2489         SetOmitVaryStar methods.
2490         Added code to set the no-store and no-transform options of the
2491         Cache-Control header.
2492
2493 2006-11-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2494
2495         * HttpServerUtility.cs: don't prepend extra '?' when the original url
2496         already has a query string. Fixes bug #80042.
2497
2498 2006-11-24  Miguel de Icaza  <miguel@novell.com>
2499
2500         * HttpApplicationFactory.cs (InitType): Also look for "Web.Config"
2501         casing here.
2502
2503 2006-11-20  Marek Habersack  <grendello@gmail.com>
2504
2505         * HttpApplication.cs: Added support for automatic detection of
2506         user's preferred language.
2507
2508 2006-11-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2509
2510         * HttpApplication.cs: don't leak the directory name for non-local
2511         connections.
2512
2513 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2514
2515         * CapabilitiesLoader.cs: made the hasstable that contains the properties
2516         for the brower case insensitive. Fixes bug #79795.
2517
2518 2006-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2519
2520         * HttpResponse.cs: fix typo that prevented Server.Execute from restoring
2521         the initial output stream used. Closes bug #79916.
2522
2523 2006-11-12  Marek Habersack  <grendello@gmail.com>
2524
2525         * HttpContext.cs: Implemented the 2.0 RewritePath overloads.
2526
2527 2006-11-08  Marek Habersack  <grendello@gmail.com>
2528
2529         * HttpRuntime.cs: Moved the resource compiler results handling to
2530         the resource compiler itself.
2531
2532         * HttpApplicationFactory.cs: Add invocation of the App_Code
2533         compiler. Moved the resource compiler results handling to the
2534         resource compiler itself. Removed compilation of the local
2535         resources from here - it should be done only when a request
2536         determines that the App_LocalResources directory exists.
2537         
2538
2539 2006-11-07  Andrew Skiba  <andrews@mainsoft.com>
2540
2541         * HttpRuntime.cs: TARGET_JVM ifdef
2542
2543 2006-11-05  Andrew Skiba  <andrews@mainsoft.com>
2544
2545         * SiteMapProvider.cs: don't iterate through Roles when they are null.
2546
2547 2006-11-05  Vladimir Krasnov  <vladimirk@mainsoft.com>
2548
2549         * HttpContext.cs: implemented Profile property
2550
2551 2006-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2552
2553         * HttpApplication.cs: the unexpected 'tick' exceptions can be an abort
2554         exception due to timeout or end of the request.
2555
2556 2006-10-18  Marek Habersack  <grendello@gmail.com>
2557
2558         * HttpRuntime.cs: add support for compilation of local resources
2559         at the start of request.
2560
2561         * HttpContext.cs: implement the GetGlobalResourceObject APIs
2562
2563         * HttpApplicationFactory.cs: include the bootstrap code for the
2564         global/local resources compiler.
2565
2566 2006-10-09  Marek Habersack  <grendello@gmail.com>
2567
2568         * HttpApplication.cs: change the pipeline order for ASP.NET 2.0 to
2569         comply with the Microsoft documentation.
2570
2571 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2572
2573         * HttpApplication.cs: this makes the test run successfully. Still need
2574         to figure out why that is null.
2575
2576 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2577
2578         * HttpApplication.cs: band-aid patch to help debugging hang running 2.0
2579         tests.
2580
2581 2006-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2582
2583         * HttpServerUtility.cs: 1.1 Execute(s) preserves the query string.
2584         Thanks to Hubert Fongarnand. Fixes bug #79506.
2585
2586 2006-09-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2587
2588         * QueueManager.cs: if disposed, always return null for next request.
2589         * HttpRuntime.cs: dispose the queue manager when shutting down the
2590         domain. This will close pending requests with a 503.
2591         * HttpApplication.cs: release the handler before marking the request
2592         as completed. If in PipelineDone context is null, use
2593         HttpContext.Current. Fixes some of those "Tick detected an unhandled
2594         exception" errors printed out.
2595
2596 2006-09-11  Andrew Skiba <andrews@mainsoft.com>
2597
2598         * XmlSiteMapProvider.cs: ifdef TARGET_JVM
2599
2600 2006-09-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
2601
2602         * HttpWriter.cs: fixed WriteLine to work correctly in utf-16 encoding
2603
2604 2006-09-08  Robert Jordan  <robertj@gmx.net>
2605
2606         * TraceData.cs: fixed NRE if `sizes' is null, which may happen
2607         if a page was unable to save its viewstate and size.
2608
2609 2006-09-07 Andrew Skiba <andrews@mainsoft.com>
2610
2611         * HttpApplicationFactory.cs: ifdef the previous fix with TARGET_JVM to
2612         pass compilation.
2613
2614 2006-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2615
2616         * HttpApplicationFactory.cs: watch web.config too. Fixes bug #78356.
2617
2618 2006-09-05  Konstantin Triger <kostat@mainsoft.com>
2619
2620         * SiteMapProvider.cs: consider authorization section for access decision.
2621
2622 2006-09-04 Igor Zelmanovich <igorz@mainsoft.com>
2623
2624         * HttpUtility.cs: fixed UrlPathEncode method.
2625
2626 2006-08-31      Boris Kirzner <borisk@mainsoft.com>
2627
2628         * VirtualPathUtility.cs : pass parameters in correct order.
2629
2630 2006-08-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2631
2632         * HttpApplicationFactory.cs: handle the 'renamed' event too.
2633
2634 2006-08-08  Vladimir Krasnov  <vladimirk@mainsoft.com>
2635
2636         * HttpApplication.cs: fixed BeginProcessRequest, TARGET_JVM part
2637         merged
2638
2639 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2640
2641         * HttpApplication.cs: don't leak local path names when a file is not
2642         found.
2643
2644 2006-06-21 Konstantin Triger <kostat@mainsoft.com>
2645
2646         * XmlSiteMapProvider.cs: if the url is relative, make it relative to the
2647                 context root.
2648
2649 2006-06-07 Juraj Skripsky <js@hotfeet.ch>
2650
2651         * HttpException.cs (GetHtmlizedErrorMessage): Beautify compilation error
2652         page by showing multiple errors on separate lines.
2653
2654 2006-06-05 Juraj Skripsky <js@hotfeet.ch>
2655
2656         * HttpRequest.cs: simplify code around uri_builder (and rename 
2657         to url_components). Move storage of query_string into 
2658         uri_builder.Query and initialize it lazily using 
2659         worker_request.GetQueryStringRawBytes() or GetQueryString().
2660         (QueryString): Use HttpUtility.ParseQueryString instead of 
2661         duplicating its functionality.
2662
2663 2006-06-05 Juraj Skripsky <js@hotfeet.ch>
2664
2665         * HttpUtility.cs (ParseQueryString): move core of
2666         ParseQueryString into internal method to make it available to 
2667         HttpRequest.
2668
2669 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2670
2671         * HttpApplication.cs: assign the context when run from a thread not in
2672         the threadpool. Patch by Andrew Skiba. Fixes bug #78583.
2673
2674 2006-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2675
2676         * HttpApplication.cs: context.Handler does not change for
2677         HttpServerUtility.Execute, so moved setting it into the pipeline instead
2678         of GetHandler.
2679
2680 2006-05-17  Kazuki Oikawa  <kazuki@panicode.com>
2681
2682         * HttpUtility.cs: implemented ParseQueryString
2683
2684 2006-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2685
2686         * HttpUtility.cs: get rid of TryParseHexa.
2687
2688 2006-04-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2689
2690         * HttpApplicationFactory.cs: make sure that the application start event
2691         is run before any request is processed.
2692
2693 2006-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2694
2695         * HttpServerUtility.cs: don't reset the query string in Execute() when
2696         the path does not contain it and we have one from the previous request.
2697         Fixes bug #78177.
2698
2699 2006-04-20 Andrew Skiba <andrews@mainsoft.com>
2700
2701         * SiteMapNode.cs: fix few null reference exceptions
2702
2703 2006-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2704
2705         * HttpResponse.cs:
2706         (TransmitFile): make sure we can read the file before buffering it.
2707
2708 2006-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2709
2710         * HttpApplicationFactory.cs: don't fail on events that are not
2711         EventHandlers. Patch by Matthew Metnetsky.
2712
2713 2006-04-11 Andrew Skiba <andrews@mainsoft.com>
2714
2715         * HttpRequest.cs: remove code duplication (see UrlUtils.Combine)
2716
2717 2006-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2718
2719         * HttpUtility.cs: allow "%%" as a escape for '%' and ignore invalid
2720         hexadecimal characters. Based on a patch by Vladimir Krasnov.
2721
2722 2006-04-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2723
2724         * HttpWriter.cs: only keep the byte buffer around if its size is less
2725         than or equals to 32K.
2726
2727 2006-04-08  Miguel de Icaza  <miguel@novell.com>
2728
2729         * HttpWriter.cs (Write): Added missing check for null string as
2730         something is now calling it like that. 
2731
2732 2006-03-27 Joshua Tauberer <tauberer@for.net>
2733
2734         * HttpWriter.cs: Avoid creation of a byte[] on each Write()
2735           by reusing and resizing a private array.
2736
2737 2006-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2738
2739         * HttpRequest.cs: the field content_length can be < 0 and then we try to
2740         read when there's no data and block.
2741
2742 2006-04-05 Andrew Skiba <andrews@mainsoft.com>
2743
2744         * HttpUtility: UrlEncode and UrlEncodeUnicode logic unified, behaviour
2745         fixed to match dotnet and http://rfc.net/rfc1738.html
2746
2747 2006-03-30 Konstantin Triger <kostat@mainsoft.com>
2748
2749         * HttpApplicationFactory.cs: refactoring: remove static modifier from session_end field.
2750         Does not check the behavior as HttpApplicationFactory is a singleton.
2751
2752 2006-03-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2753
2754         * HttpUtility.cs: UrlDecode does not throw if an hexadecimal sequence
2755         fails to parse as an integer. Fixes bug #77931.
2756
2757 2006-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2758
2759         * HttpResponse.cs: more fixes for CacheControl: MS allows to set it to
2760         null and "" and the getter value does not completely depend on Cache.
2761
2762         * HttpRequest.cs: fail validating the request input if there's a control
2763         character after a '<'. Fixes XSS_Null test.
2764
2765         All System.Web tests pass again.
2766 2006-03-22  Robert Jordan  <robertj@gmx.net>
2767
2768         * HttpCachePolicy.cs: fix the Cache-control header. Fixes bug #77826.
2769
2770 2006-03-22  Chris Toshok  <toshok@ximian.com>
2771
2772         * HttpApplication.cs: fix typo - AuthenticateRequest =>
2773         PostAuthenticateRequest.
2774
2775 2006-03-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2776
2777         * ChangeLog:
2778         * HttpRequest.cs: revert part of r58229.
2779
2780 2006-03-21  Vladimir Krasnov  <vladimirk@mainsoft.com>
2781
2782         * ServerVariablesCollection.cs: fixed "URL" variable, it should not
2783         return path info
2784
2785 2006-03-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2786
2787         * HttpRequest.cs:
2788         (CheckString): style and don't index the string twice per iteration.
2789
2790 2006-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2791
2792         * TempFileStream.cs: a FileStream that removes the file once
2793         it is disposed.
2794         * HttpRequest.cs: support for writing request data to on-disk
2795         files if the request is longer than the threshold specified in the
2796         configuration files. In mono this will work for 1.x and 2.0, while with
2797         MS this only works for 2.0.
2798
2799 2006-03-18  Robert Jordan  <robertj@gmx.net>
2800
2801         * HttpCachePolicy.cs: expose the validation callbacks.
2802         Fixes bug #77825.
2803
2804 2006-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2805
2806         * HttpApplication.cs: fix upper bound when iterating through the module
2807         collection.
2808
2809 2006-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2810
2811         * HttpRequest.cs: use the provided content encoding to decode the file
2812         name. Fixes bug #77714.
2813
2814 2006-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2815
2816         * HttpResponse.cs: allow setting a Cache-Control header through
2817         AppendHeader. Fixes bug #77775.
2818
2819 2006-03-15  Chris Toshok  <toshok@ximian.com>
2820
2821         * XmlSiteMapProvider.cs (RemoveProvider): oops, no override.
2822
2823         * StaticSiteMapProvider.cs (AddNode): call MapUrl.
2824         (FindSiteMapNode): same.
2825
2826 2006-03-15  Chris Toshok  <toshok@ximian.com>
2827
2828         * SiteMapProvider.cs (ReturnNodeIfAccessible): new function,
2829         either return the node or throw InvalidOperationException.
2830         (get_RootNode): use ReturnNodeIfAccessible.
2831         (IsAccessibleToUser): flesh this out a bit, and add comments on
2832         how the rest of the implementation should be written.
2833         (FindSiteMapNodeFromKey): implement to match MS behavior, docs be
2834         damned.
2835
2836         * XmlSiteMapProvider.cs: corcompare work.
2837
2838         * StaticSiteMapProvider.cs (AddNode): Add a check to see if node
2839         == RootNode.  Not sure if this is actually correct, but it's
2840         required given our implementation of XmlSiteMapProvider.  without
2841         this check, we end up assigning RootNode.ParentNode == RootNode,
2842         which makes for an infinite loop when we traverse up the tree.
2843
2844 2006-03-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
2845
2846         * HttpRequest.cs: fixed MakeInputStream method under TARGET_JVM,
2847         fixed if content lenght value is less that byte received
2848
2849 2006-03-10  Chris Toshok  <toshok@ximian.com>
2850
2851         * StaticSiteMapProvider.cs (UrlToNode): this entire file is #if
2852         NET_2_0, no need to embed another #if NET_2_0.
2853
2854         * SiteMapProvider.cs (AddNode): throw NotImplementedException.
2855         (FindSiteMapNode): with null context, return null.  don't throw
2856         ArgumentNullException.
2857         (RemoveNode): throw NotImplementedException.
2858         (IsAccessibleToUser): check arguments to make test pass.  still
2859         lacking the method's actual functionality.
2860         (ResourceKey): add missing property.
2861
2862 2006-03-10  Chris Toshok  <toshok@ximian.com>
2863
2864         * HttpRequest.cs (CheckString): add back in the check for \xff1c
2865         that i took out.  oops.
2866
2867 2006-03-10  Chris Toshok  <toshok@ximian.com>
2868
2869         * HttpRequest.cs (CheckString): implement as described in
2870         Shackow's "Professional ASP.NET 2.0 Security, Membership, and Role
2871         Management", page 310.
2872
2873 2006-03-08  Chris Toshok  <toshok@ximian.com>
2874
2875         * SiteMap.cs: clean this up a bunch.  use the SiteMapSection to
2876         initialize the provider collection, and don't add a provider.
2877         web.config handles that for us.  Also, don't always return true
2878         from get_Enabled.
2879
2880 2006-02-28  Chris Toshok  <toshok@ximian.com>
2881
2882         * HttpCookieMode.cs: corcompare work.
2883
2884         * ProcessShutdownReason.cs: same.
2885
2886         * SiteMapNodeCollection.cs: same.
2887
2888         * SiteMapNode.cs: same.
2889
2890         * SiteMapProvider.cs: same.
2891
2892         * HttpCacheRevalidation.cs: same.
2893
2894         * HttpCacheability.cs: same.
2895
2896         * StaticSiteMapProvider.cs: same.
2897
2898         * HttpValidationStatus.cs: same.
2899         
2900 2006-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2901
2902         * DefaultHttpHandler.cs: New file.
2903
2904 2006-02-01  Chris Toshok  <toshok@ximian.com>
2905
2906         * SiteMap.cs: use GetSection instead of GetWebApplicationSection.
2907
2908 2006-02-01  Chris Toshok  <toshok@ximian.com>
2909
2910         * HttpApplication.cs: CONFIGURATION_2_0 => NET_2_0, and use
2911         GetSection instead of GetWebApplicationSection.
2912
2913         * HttpApplication.jvm.cs: same.
2914         
2915         * HttpApplicationFactory.cs: same.
2916
2917         * HttpContext.cs: same.
2918
2919         * CapabilitiesLoader.cs: same.
2920
2921         * QueueManager.cs: same.
2922
2923         * HttpRuntime.cs: same.
2924
2925         * TraceManager.cs: same.
2926
2927         * HttpRequest.cs: same.
2928         
2929 2006-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2930
2931         * HttpApplication.cs: keep any exception that happens during
2932         initialization.
2933
2934 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2935
2936         * HttpDataTransferMode.cs: Removed file.
2937         * HttpRequestPriority.cs: Removed file.
2938         * ApplicationShutdownReason.cs:
2939         * SiteMap.cs:
2940         * HttpRuntime.cs:
2941         * HttpApplication.cs: minor class status fixes.
2942
2943 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2944
2945         * VirtualPathUtility.cs: done with all the not implemented methods.
2946
2947 2006-01-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2948
2949         * HttpResponse.cs: use UInt64.Parse for content length. In AppendHeader,
2950         set cache_control through the property to update the cachebility
2951         accordingly. When using the cached headers, don't add again all the
2952         headers to that collection.
2953         * HttpCacheVaryByParams.cs: if there are no params, return null.
2954         Otherwise we get an empty 'Vary' header.
2955
2956 2006-01-25  Chris Toshok  <toshok@ximian.com>
2957
2958         * HttpApplication.cs (Start): wrap InitOnce in a try/catch block,
2959         and if there's a configuration error, output it and end things
2960         immediately.
2961
2962 2006-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2963
2964         * HttpRequest.cs: fixed the file path when RewritePath is used. Also
2965         add the PathInfo to the Url. Fixes bug #77291.
2966
2967 2006-01-22  Chris Toshok  <toshok@ximian.com>
2968
2969         * HttpRequest.cs (ReadBoundary): remove two unused variables to
2970         quiet mcs.
2971         (IsBoundary): remove unused method.
2972
2973         * MimeTypes.cs (.cctor): use a 2.0 friendly form of the Hashtable
2974         ctor to silence a warning.
2975
2976         * HttpCacheVaryByHeaders.cs (.ctor): same.
2977
2978         * HttpCacheVaryByParams.cs (.ctor): same.
2979
2980         * StaticSiteMapProvider.cs (UrlToNode): same.
2981
2982 2006-01-22  Konstantin Triger <kostat@mainsoft.com>
2983
2984         * HttpWorkerRequest.cs: ensure case insensitivity in header search.
2985
2986 2006-01-19  Konstantin Triger <kostat@mainsoft.com>
2987
2988         * HttpApplication.jvm.cs: merge HttpApplication.cs changes.
2989
2990 2006-01-17  Chris Toshok  <toshok@ximian.com>
2991
2992         * CapabilitiesLoader.cs (Init): use WebConfigurationManager in the
2993         CONFIGURATION_2_0 case.
2994
2995         * HttpRuntime.cs (MachineConfigurationDirectory): same.
2996
2997 2006-01-16  Chris Toshok  <toshok@ximian.com>
2998
2999         * HttpApplicationFactory.cs: call WebConfigurationManager.Init in
3000         the CONFIGURATION_2_0 case.
3001
3002 2006-01-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3003
3004         * HttpWriter.cs: made Write (char) less memory hungry. Thanks to Mike
3005         Glenn for pointing this out.
3006
3007 2006-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3008
3009         * HttpApplicationFactory.cs: fix condition for ContextAvailable.
3010
3011 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
3012
3013         * HttpResponse.cs: removed TARGET_JVM block from End
3014         * GetJavaTextReader: Merged TARGET_JVM block from LoadFile
3015         to GetJavaTextReader
3016
3017 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
3018
3019         * HttpRequest.cs: removed TARGET_JVM block from MapPath
3020
3021 2006-01-11  Vladimir Krasnov  <vladimirk@mainsoft.com>
3022
3023         * HttpRequest.cs: little fix in MapPath(), virtualPath.Replace
3024         return value wasnt stored.
3025
3026 2006-01-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3027
3028         * HttpResponse.cs: typo in comment.
3029
3030         * HttpApplicationFactory.cs:
3031         * HttpApplication.cs: don't discard the application used for running the
3032         Application_Start event to allow for Redirect/Transfer to be used. Fail
3033         to get the request/response from the application object as MS does (it
3034         can still be retrieved through HttpContext.Current.blah). Fixes
3035         bug #77162.
3036
3037 2006-01-09  Vladimir Krasnov <vladimirk@mainsoft.com>
3038
3039         * CapabilitiesLoader.cs: Merged TARGET_JVM parts in LoadFile
3040         from /main/9
3041         * HttpException.cs: Merged TARGET_JVM parts in GetHtmlizedErrorMessage
3042         from /main/13
3043         * HttpRequest.cs: Merged TARGET_JVM parts in MapPath from /main/29
3044         * HttpResponse.cs: Merged TARGET_JVM parts in End() from /main/30
3045         * StaticFileHandler.cs: Merged TARGET_JVM parts in ProcessRequest
3046         from /main/7
3047
3048 2006-01-08  Konstantin Triger <kostat@mainsoft.com>
3049
3050         * BrowserCapabilities.cs, HttpBrowserCapabilities.cs,
3051         HttpResponseStream.cs: TARGET_JVM changes to let the compilation
3052         pass with csc 1.1.
3053
3054 2006-01-04  Chris Toshok  <toshok@ximian.com>
3055
3056         * HttpContext.cs (IsCustomErrorEnabled): add CONFIGURATION_2_0
3057         code.  use a nasty 'using' hack to map the 2.0 CustomErrorsMode to
3058         the 1.x CustomErrorMode name.
3059         (IsDebuggingEnabled): add CONFIGURATION_2_0 code.
3060         (ConfigTimeout): add CONFIGURATION_2_0 code.
3061
3062         * HttpRequest.cs (MakeInputStream): add CONFIGURATION_2_0 code.
3063
3064         * HttpApplication.cs (RedirectCustomError): add CONFIGURATION_2_0
3065         code.
3066
3067         * SiteMap.c (Init): use
3068         WebConfigurationManager.GetWebApplicationSection.
3069
3070 2005-12-21  Miguel de Icaza  <miguel@novell.com>
3071
3072         * HttpUtility.cs (UrlEncodeUnicode): The generated encoding of
3073         unicode values must be in %XXXX format, not %XX sometimes.
3074
3075 2005-12-08 Robert Jordan  <robertj@gmx.net> 
3076
3077         * MimeTypes.cs: added entry for "jpg".
3078
3079 2005-12-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3080
3081         * HttpRequest.cs: only read up to content-length when provided. Patch
3082         by Peter Teichman.
3083
3084 2005-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3085
3086         * HttpCookie.cs: fixed the set_Secure. Closes bug #76906.
3087
3088 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3089
3090         * HttpResponseStream.cs: flush the filter stream before closing.
3091         Patch by Geir Bergum that fixes bug #76753.
3092
3093 2005-11-28  Chris Toshok  <toshok@ximian.com>
3094
3095         * HttpContext.cs (Profile): remove the #if false from around this,
3096         as we now have the ProfileBase type.
3097         (GetConfig): add CONFIGURATION_2_0 version.
3098         (GetSection): add CONFIGURATION_2_0 version.
3099
3100 2005-11-28  Chris Toshok  <toshok@ximian.com>
3101
3102         * TraceManager.cs (..ctor): CONFIGURATION_2_0 work.
3103
3104         * QueueManager.cs (..ctor): CONFIGURATION_2_0 work.
3105
3106         * HttpRequest.cs (AnonymousID): add 2.0 property.
3107         (MakeInputStream): CONFIGURATION_2_0 work.
3108
3109         * HttpApplication.cs (InitOnce): change around the
3110         CONFIGURATION_2_0 stuff since we need additional Culture foo for
3111         it.
3112
3113 2005-11-27  Chris Toshok  <toshok@ximian.com>
3114
3115         * HttpApplication.cs (InitOnce): add Configuration_2.0 code.
3116         (GetHandler): same.
3117
3118 2005-11-26  Miguel de Icaza  <miguel@novell.com>
3119
3120         * HttpResponseStream.cs: Do not try to write zero bytes.
3121
3122 2005-11-24  Miguel de Icaza  <miguel@novell.com>
3123
3124         * WebROCollection.cs: Do not add an empty "=" to the query string
3125         if the key is empty or null.
3126
3127 2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3128
3129         * WebROCollection.cs: override ToString and generate a query string from
3130         the key/value pairs. Fixes bug #76779.
3131
3132 2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3133
3134         * HttpServerUtility.cs: prevent possible nullref in GetLastError().
3135
3136 2005-11-07  Jason Diamond  <jason@diamond.name>
3137
3138         * HttpRequest.cs: Don't throw exception when Content-Length doesn't
3139         match length of POSTed data. Also, allow charset parameter on
3140         Content-Type header when type is "application/x-www-form-urlencoded".
3141
3142 2005-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3143
3144         * WebROCollection.cs: add an ID for the collection. Page needs it.
3145
3146 2005-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3147
3148         * HttpRequest.cs: no need to allocate the buffer when all the content
3149         is preloaded.
3150
3151 2005-11-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3152
3153         * HttpApplication.cs: ignore TAE in ProcesssError. The Error event might
3154         redirect or transfer and that causes a TAE to be thrown. Fixes
3155         bug #76573.
3156
3157 2005-11-01  Chris Toshok  <toshok@ximian.com>
3158
3159         * VirtualPathUtility.cs: new (partial implementation) to get some
3160         MS provider examples compiling.
3161
3162 2005-10-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3163
3164         * HttpContext.cs: added a new internal overload for ClearError.
3165
3166 2005-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3167
3168         * HttpRuntime.cs: invoke callbacks on private items in the cache before 
3169         calling disposing the app. factory. This way we get notifications of
3170         removal for all sessions stored in the cache (InProc only).
3171
3172 2005-10-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3173
3174         * HttpResponseStream.cs: reworked buffering so that adjacents blocks are
3175         written at once. Also fix bug #76460.
3176
3177 2005-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3178
3179         * HttpResponseStream.cs: when allocating a chunk larger than the
3180         default chunk size, mark all the blocks as taken. Fixes bug
3181         #76452.
3182
3183 2005-10-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3184
3185         * HttpResponse.cs: use HaveFilter instead of Filter.
3186         * HttpResponseStream.cs: allocate chunks of the requested size
3187         when it's > 32KB. Fixes bug #76460.
3188
3189 2005-10-14  Sebastien Pouliot  <sebastien@ximian.com> 
3190
3191         * ServerVariablesCollection.cs: Added a demand for 
3192         SerializationFormatter on GetObjectData method (even if it's not 
3193         really required in this case as it remove warnings from gendarme.
3194
3195 2005-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3196
3197         * HttpResponse.cs:
3198         * HttpRequest.cs: buglets in error checking in Filter.
3199
3200 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3201
3202         * OutputFilterStream.cs: proxy class for response filters.
3203         * HttpResponse.cs: moved all the actual write operations into the
3204         response stream. Handle response filtering. When caching, get the
3205         actual length of the data, not the buffer length.
3206         * HttpApplication.cs: if there's no error, invoke the filters before
3207         updating the request cache.
3208         * HttpResponseStream.cs: new Filter property. SendChunkSize is moved
3209         here and now supports writing the final chunk. New method ApplyFilter
3210         that filters the existing buckets and replaces them with the filtered
3211         ones. Modified Write to deal with buffering and filtering.
3212
3213 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3214
3215         * HttpResponseStream.cs: allow for writes of more than 32K at once.
3216
3217 2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3218
3219         * InputFilterStream.cs proxy stream for use by filters.
3220         * HttpRequest.cs: implement input filtering.
3221
3222 2005-10-02 Eyal Alaluf <eyala@mainsoft.com>
3223         * HttpApplication.jvm.cs - Workaround for use of yield in
3224         HttpApplication.cs HttpRuntime.cs: AppDomain.Unload is not supported
3225         * under TARGET_J2EE
3226
3227 2005-09-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3228
3229         * HttpResponseStream.cs: remove dead code.
3230
3231 2005-09-29  Sebastien Pouliot  <sebastien@ximian.com> 
3232
3233         * HttpClientCertificate.cs: Remove last TODO on IsValid. This now 
3234         works when using XSP. Now use flags to determine valid/presence.
3235
3236 2005-09-26  Chris Toshok  <toshok@ximian.com>
3237
3238         * HttpApplicationFactory.cs (OnAppFileChanged): add null checks
3239         for bin_watcher and app_file_watcher so we don't get NRE's here.
3240
3241 2005-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3242
3243         * BrowserCapabilities.cs: don't rely on the win32 attribute to be there.
3244         Just use the platform to determine whether Win32 is true or not. Fixes
3245         bug #74777.
3246
3247 2005-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3248
3249         * HttpApplication.cs: fixed typo when setting UI culture. Closes bug
3250         #76189.
3251
3252 2005-09-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3253
3254         * HttpRequest.cs: new SetFilePath() that does not conflict with
3255         SetCurrentExePath. Now when transfering from a page to another,
3256         CurrentExecutionFilePath and FilePath are correct.
3257
3258 2005-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3259
3260         * TraceContext.cs: add new method to store size of controls.
3261         * TraceData.cs: render control size.
3262         * HttpResponse.cs: new internal method to get the number of bytes of
3263         buffered output.
3264         * HttpResponseStream.cs: added Length property to the Buckets and new
3265         GetTotalLength.
3266
3267 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3268
3269         * TraceData.cs: we have to change the method of getting a control render
3270         size. MS does not do this or otherwise would run into the same bug
3271         (#76051) that this patch fixes. This is temporarily setting the size
3272         to 0.
3273
3274 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3275
3276         * HttpResponseStream.cs: implemented Send(stream) for files. Fixes bug
3277         #76145.
3278
3279 2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3280
3281         * HttpRuntime.cs: catch errors when compiling global.asax and
3282         initializing the application. Fixes bug #76090.
3283
3284 2005-09-14  Sebastien Pouliot  <sebastien@ximian.com> 
3285  
3286         * BrowserCapabilities.cs: Fixed changes (in 2.0) with versions. Fixed
3287         compare with "True" (culture and case sensitivity).
3288         * HttpApplicationState.cs: Added LinkDemand for Minimal. Use the 
3289         internal HttpStaticObjectsCollection ctor to avoid the UnmanagedCode
3290         demand.
3291         * HttpContext.cs: Added LinkDemand for Minimal. Added 2.0 properties
3292         and methods to test CAS on them.
3293         * HttpRequest.cs: Added LinkDemand for Minimal. Ensure we return 
3294         proper values when worker_request is null.
3295         * HttpResponse.cs: Added LinkDemand for Minimal. Ensure we return 
3296         proper values when context or WorkerRequest is null. Added 2.0 
3297         properties and methods to test CAS on them.
3298         * HttpRuntime.cs: Added LinkDemand for Minimal. Added PathDiscovery 
3299         demands for properties returning directories. Added demand for High 
3300         level on AppDomainAppId and AppDomainId properties, Low level on 
3301         IsOnUNCShare, Medium level on ProcessRequest and a demand for 
3302         UnmanagedCode on UnloadAppDomain method. Constructor also has a 
3303         UnmanagedCode demand for 1.x.
3304         * HttpStaticObjectsCollection.cs: Added LinkDemand for Minimal. Added
3305         a UnmanagedCode demand to public ctor. Added internal ctor without the
3306         demand. Changed Serialize and Deserialize methods to public for 2.0.
3307
3308 2005-09-14  Sebastien Pouliot  <sebastien@ximian.com>
3309
3310         * HttpWorkerRequest.cs: Removed TODO for 2.0 APIs and return the 
3311         default values for them.
3312
3313 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3314
3315         * HttpApplication.cs: : Added LinkDemand and InheritanceDemand (class)
3316         for Minimal. Changed AssemblyLocation to a property (so it doesn't 
3317         require special permission, PathDiscovery) to create an instance. 
3318         Protected Modules property with a Demand for High level. Added some 
3319         missing HttpException for null context.
3320         * HttpServerUtility.cs: Added LinkDemand for Minimal. Added demands 
3321         for UnmanagedCode on all CreateObject* methods. Added demand for 
3322         Medium level on MachineName and ScriptTimeout properties. Added new
3323         overloaded Transfer method (2.0) to test CAS on it.
3324         * HttpUtility.cs: Added LinkDemand for Minimal. Added [Obsolete] to 
3325         ctor (2.0). Changed some return values when 'count' is 0. Added 
3326         ParseQueryString (overload) methods for 2.0 (to enabled CAS testing on
3327         them).
3328         * HttpWorkerRequest.cs: Added LinkDemand and InheritanceDemand (class)
3329         for Minimal. Added RequestTraceIdentifier and RootWebConfigPath (2.0) 
3330         properties, GetPreloadedEntityBody, GetPreloadedEntityBodyLength, 
3331         GetTotalEntityBodyLength and ReadEntityBody (2.0) methods to test CAS 
3332         on them. Fixed SendResponseFromMemory to ignore IntPtr.Zero (used in 
3333         tests without failures).
3334         * ServerVariablesCollection.cs: Fixed loadServerVariablesCollection 
3335         when HttpWorkerRequest is null.
3336         * TraceContext.cs: Added LinkDemand for Minimal. Fixed default Mode 
3337         (SortByTime). Added new (2.0) TraceFinished event to test CAS on it.
3338
3339 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com> 
3340  
3341         * HttpBrowserCapabilities.cs: Added LinkDemand and InheritanceDemand 
3342         (class) for Minimal. Note that current MCS has problem compiling 
3343         security attributes on partial class (bug #75969).
3344         * HttpCachePolicy.cs: Added LinkDemand for Minimal. Added 2.0 methods
3345         (stub) to enable CAS tests on them.
3346         * HttpCacheVaryByHeaders.cs: Added LinkDemand for Minimal.
3347         * HttpCacheVaryByParams.cs: Added LinkDemand for Minimal.
3348         * HttpClientCertificate.cs: Added LinkDemand and InheritanceDemand 
3349         (class) for Minimal.
3350         * HttpCookie.cs: Added LinkDemand for Minimal.
3351         * HttpCookieCollection.cs: Added LinkDemand for Minimal.
3352         * HttpFileCollection.cs: Added LinkDemand for Minimal.
3353         * HttpModuleCollection.cs: Added LinkDemand for Minimal.
3354         * HttpPostedFile.cs: Added LinkDemand for Minimal.
3355         * HttpRequestPriority.cs: Fix enum values.
3356         * HttpWriter.cs: Added LinkDemand for Minimal.
3357
3358 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3359
3360         * ProcessInfo.cs: Added LinkDemand and InheritanceDemand (class) for
3361         Minimal.
3362         * ProcessModelInfo.cs: Added LinkDemand and InheritanceDemand (class)
3363         for Minimal. Methods GetCurrentProcessInfo and GetHistory are also
3364         protected by Demand for High level.
3365
3366 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com> 
3367  
3368         * HttpCompileException.cs: Added new public ctors and [Serializable]
3369         to 2.0. Added new Message property and GetObjectData (protected by a
3370         demand for SerializationFormatter) for 2.0. Fixed line-ending.
3371         * HttpException.cs: Added LinkDemand and InheritanceDemand (class) for
3372         Minimal. Renamed parameters to match documentation.
3373         * HttpParseException.cs: Added LinkDemand (class) for Minimal. Added
3374         demand for SerializationFormatter on GetObjectData method. Fixed 
3375         line-ending.
3376         * HttpRequestValidationException.cs: Added new public ctors and 
3377         [Serializable] to 2.0. Added LinkDemand for Minimal.
3378         * HttpUnhandledException.cs: Added new public ctors and [Serializable]
3379         to 2.0. Removed unused internal ctor. Added LinkDemand for Minimal.
3380         Fixed line-ending.
3381
3382 2005-09-13  Sebastien Pouliot  <sebastien@ximian.com>
3383
3384         * HttpResponseSubstitutionCallback.cs: New. 2.0 delegate.
3385         * TraceContextEventArgs.cs: New. 2.0 class.
3386         * TraceContextEventHandler.cs: New. 2.0 delegate.
3387
3388 2005-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3389
3390         * HttpRequest.cs: use GetServerName instead of GetLocalAddress when
3391         building the Url.
3392
3393 2005-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3394
3395         * HttpRequest.cs: fix the indexer.
3396
3397 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3398
3399         * HttpPostedFile.cs: fixes in Seek and Position.
3400
3401 2005-09-08  Sebastien Pouliot  <sebastien@ximian.com>
3402
3403         * HttpRequest.cs: Make sure the MemoryStream created have their 
3404         contents marked as public - or else you can't call GetBuffer on them!
3405
3406 2005-09-08  Miguel de Icaza  <miguel@novell.com>
3407
3408         * HttpRequest.cs: Patch from Juraj Skripsky <js@hotfeet.ch> that
3409         fixes UrlReferrer. 
3410
3411 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3412
3413         * HttpPostedFile.cs: Make this class actually work. Every time we read,
3414         we have to position the underlying stream.
3415
3416 2005-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3417
3418         * HttpRequest.cs: reading multipart/form-data works again.
3419
3420 2005-09-08 Eyal Alaluf <eyala@mainsoft.com>
3421         * HttpRequest.cs: Under TARGET_JVM the input stream must allow GetBuffer.
3422
3423 2005-09-08 Eyal Alaluf <eyala@mainsoft.com>
3424         * HttpApplicationFactory.cs: TARGET_J2EE/JVM fix.
3425
3426 2005-09-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3427
3428         * HttpRequest.cs: correctly detect multipart/form-data.
3429
3430 2005-09-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3431
3432         * HttpApplicationFactory.cs: recycle after invoking session_end.
3433
3434 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3435
3436         * HttpRuntime.cs: remove Console.
3437
3438         * HttpApplicationFactory.cs: don't hook Session_End, but keep
3439         the MethodInfo around for later invocation if needed. Don't call
3440         GetMethods() for every HttpApplication (or derived class) instances.
3441         Added a method, used by SessionStateModule, that will create use an
3442         application without context to invoke Session_End. Keep a pool of
3443         applications that are meant to be used by this method only.
3444
3445         * HttpApplication.cs: add a SetSession method and do not
3446         attach all the events if the application is for Session_End only.
3447
3448 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3449
3450         * HttpRuntime.cs: actually unload the domain when requested. Reformatted
3451         FinishUnavailable() and removed the 'Location' header form the error.
3452
3453         * HttpApplicationFactory.cs: set up the watcher for the bin directory.
3454         This also prevents a nullref when global.asax is changed.
3455
3456 2005-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3457
3458         * HttpApplication.cs: fixed bug introduced when moving GetHandler call
3459         around. Now we get error pages again.
3460
3461 2005-09-06  Miguel de Icaza  <miguel@novell.com>
3462
3463         * HttpApplication.cs: Catch EndRequest errors as well.
3464
3465 2005-09-05  Miguel de Icaza  <miguel@novell.com>
3466
3467         * HttpApplication.cs: Invoke EndRequest handler before OutputPage
3468         as FormsAuthentication will issue a Redirect from the EndRequest 
3469         handler. 
3470
3471 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3472
3473         * HttpApplication.cs: when writing an error message, catch the possible
3474         write error.
3475
3476 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3477
3478         * HttpResponseStream.cs: prevent invalid cast exception if the first
3479         thing written is a file.
3480
3481 2005-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3482
3483         * HttpApplication.cs: fix invalid cast exception (bug #75926).
3484
3485 2005-09-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3486
3487         * HttpApplicationFactory.cs: only trigger the Application_Start event
3488         once. It was being invoked more than once when several clients were
3489         hitting the server at the same time on startup.
3490
3491 2005-09-01 Eyal Alaluf <eyala@mainsoft.com>
3492
3493         * HttpContext.cs HttpResponse.cs HttpWorkerRequest.cs HttpRuntime.cs
3494           HttpApplicationFactory.cs HttpApplication.cs: TARGET_J2EE/JVM fixes.
3495           Mostly workaround limited AppModel in TARGET_J2EE.
3496
3497 2005-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3498
3499         * HttpResponse.cs: if the request method is HEAD, that's equivalent to
3500         SuppressContent. Added an internal TransmitFile that allows setting the
3501         final_flush flag.
3502         * StaticFileHandler.cs: use the new internal TransmitFile and remove
3503         generation of Content-Length header, as now it's computed correctly.
3504         * HttpApplication.cs: remove debugging stuff.
3505         * HttpResponseStream.cs: suppress_content is checked in HttpResponse.
3506
3507 2005-08-31  Miguel de Icaza  <miguel@novell.com>
3508
3509         Removed debugging info.
3510         
3511         * HttpApplication.cs: Add support for async handlers. 
3512
3513         Add extra 2.x methods. 
3514
3515 2005-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3516
3517         * BrowserCapabilities.cs: removed extra 'using'.
3518
3519         * HttpApplication.cs: use just the 'modcoll' to hold the collection of
3520         modules instead of having a separate 'modules' one.
3521
3522 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3523
3524         * HttpApplication.cs: clone the module collection so that
3525         it's not shared between HttpApplications. Call GetHandler() in the
3526         right place.
3527
3528 2005-08-30  Miguel de Icaza  <miguel@novell.com>
3529
3530         * HttpApplication.cs: Add the new 2.x method overloads that take a
3531         data object.
3532
3533         (RunHooks): Pass the extra data instead of null.
3534
3535         * HttpCookie.cs (HttpOnly): Add 2.x cookie header.
3536
3537         * BrowserCapabilities.cs: Move the core of the capabilities into a
3538         separate file.  Use partial classes to choose what version to
3539         compile against.
3540
3541         * HttpBrowserCapabilities.cs: Update to move the code elsewhere.
3542
3543 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3544
3545         * HttpResponseStream.cs: Fix a bug introduced by last fix (thanks to
3546         Ben)
3547
3548 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3549
3550         * HttpResponseStream.cs: Compilation fixes for TARGET_JVM. TARGET_JVM
3551         does not support unsafe code. I localized all unsafe code within Chunk
3552         & Block and created a managed version of Chunk.
3553
3554 2005-08-30 Eyal Alaluf <eyala@mainsoft.com>
3555         * HttpApplicationFactory.cs: Compilation fixes for TARGET_J2EE. Under
3556         TARGET_J2EE static fields are shared by all app domains. We handle
3557         this difference by explicitly getting/setting values from the app
3558         domain.  Since HttpApplicationFactory has many static fields, I
3559         refactored it to have one static instance and moved the static fields
3560         into instance fields.
3561
3562 2005-08-29 Eyal Alaluf <eyala@mainsoft.com>
3563
3564         * HttpRequest.cs: Disable use of IntPtrStream for TARGET_JVM
3565
3566 2005-08-29 Eyal Alaluf <eyala@mainsoft.com>
3567
3568         * HttpContext.cs: Compilation fixes for TARGET_J2EE/JVM
3569
3570 2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3571
3572         * HttpResponse.cs: don't duplicate the 'charset=' and don't send a
3573         charset for unknown MIME types.
3574         * StaticFileHandler.cs: set the Content-Length header here.
3575         * HttpRequest.cs: prevent nullrefs when we have no 'charset='.
3576
3577 2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3578
3579         * StaticFileHandler.cs: use TransmitFile instead of WriteFile. This way
3580         xsp will use sendfile().
3581
3582 2005-08-28  Chris Toshok  <toshok@ximian.com>
3583
3584         * SiteMapNode.cs: fix IHierarchyData.GetParent.
3585
3586 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3587
3588         * HttpRequest.cs:
3589         * IntPtrStream.cs: now we only have a read-only MemoryStream or an
3590         IntPtrStream. The copy is moved into HttpRequest.
3591
3592 2005-08-26  Sebastien Pouliot  <sebastien@ximian.com>
3593
3594         * WebCategoryAttribute.cs: New. Required internal attribute.
3595         * WebSysDescriptionAttribute.cs: New. Required internal attribute.
3596
3597 2005-08-26  Jackson Harper  <jackson@ximian.com>
3598
3599         * HttpResponseStream.cs: Use GetBuffer so the memory isn't
3600         duplicated.
3601
3602 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3603
3604         * HttpApplication.cs: GetHandler might return null when, for example,
3605         a web service fails, but that does not mean that returning a null
3606         handler should throw another exception, as the web service code
3607         serialized the error as a faultString. So if the handler is null, just
3608         don't call ProcessRequest and keep going.
3609
3610 2005-08-26  Jackson Harper  <jackson@ximian.com>
3611
3612         * HttpResponse.cs: Send the cached headers if this is a cached
3613         response. Save the headers, date header, and page data. Fix a typo.
3614         * HttpResponseStream.cs: Add new accesor to get a byte [] of the
3615         page data.
3616
3617 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3618
3619         * HttpWorkerRequest.cs: SetEndOfSendNotification is a noop. No matter
3620         what callback you use that never gets called. In XSP I actually
3621         implement something for this method.
3622         * HttpServerUtility.cs: unused variable.
3623
3624 2005-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3625
3626         * HttpInputStream.cs: new ctor that takes a byte [].
3627         * IntPtrStream.cs: make it work on a byte [] too.
3628
3629         * HttpRequest.cs:
3630         (ContentLength): return 0 for negative numbers or error parsing, but
3631         keep content_length negative in those cases.
3632         (MakeInputStream): when there's no content-length (or it's negative),
3633         we still read the request into a MemoryStream. Use
3634         IsEntireEntityIsPreloaded() as a fast path.
3635
3636 2005-08-25  Sebastien Pouliot  <sebastien@ximian.com>
3637
3638         * HttpClientCertificate.cs: On 1.x the .ctor throws a 
3639         ArgumentNullException (but 2.0 throws a NRE).
3640
3641 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3642
3643         * HttpRequest.cs: HttpMethod deserves its own field. Fix IsLocal.
3644
3645 2005-08-25  Chris Toshok  <toshok@ximian.com>
3646
3647         * HttpApplication.cs (IsReusable): return true.
3648         (InitOnce): remove the initialization of handler_factory from
3649         here.
3650         (GetHandler) and move it here, so we make sure to load handlers
3651         from all needed web.config files.
3652
3653 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3654
3655         * HttpServerUtility.cs: use GetHandler().
3656         * HttpApplication.cs: remove obsolete method. Now Transfe/Execute work.
3657
3658 2005-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3659
3660         * HttpApplication.cs: no need for the local var. here.
3661
3662 2005-08-25  Chris Toshok  <toshok@ximian.com>
3663
3664         * HttpApplication.cs (InitOnce): move the initialization of
3665         modules above the call to HttpApplicationFactory.AttachEvents,
3666         since that method accesses HttpApplication.Modules.  Fixes
3667         nGallery.
3668         (IsReusable): mark TODO.
3669
3670 2005-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3671
3672         * HttpResponseHeader.cs: removed obsolete class.
3673         * HttpResponse.cs: no more 'obsolete' warnings.
3674
3675 2005-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3676
3677         * HttpRuntime.cs: implemeted some missing properties.
3678
3679 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3680
3681         * HttpResponse.cs: implemented RemoveOutputCacheItem().
3682
3683 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3684
3685         * HttpApplication.cs: implemented GetVaryByCustomString().
3686
3687 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3688
3689         * HttpRequest.cs: implemented SetHeader (allows adding a header
3690         circumventing the read-only protection of the collection) and SetForm,
3691         which just assigns a value of the 'form' collection.
3692         * HttpServerUtility.cs: NameValueCollection -> WebROCollection.
3693
3694 2005-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3695
3696         * HttpContext.cs:
3697         * HttpRequest.cs: implemented RewritePath and supporting methods.
3698
3699 2005-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3700
3701         * HttpRequest.cs: Avoid NRE if work_request if null in the ctor.
3702         * HttpResponse.cs: Avoid NRE if work_request if null in the ctor.
3703
3704 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3705
3706         * HttpApplication.cs: if there's any exception thrown when getting the
3707         handler, don't add an extra error to the context, as we already have
3708         one.
3709
3710 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3711
3712         * HttpWriter.cs:
3713         * HttpResponse.cs:
3714         * HttpWorkerRequest.cs:
3715         * HttpApplication.cs: added mising attributes and enabled methods
3716         present in 1.1 SP1.
3717
3718 2005-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3719
3720         * WebROCollection.cs: a collection that allows setting IsReadOnly.
3721         * HttpRequest.cs: implemented MapImageCoordinates(). Use WebROCollection
3722         instead of a NameValueCollection in Form, Headers, Params, QueryString.
3723
3724 2005-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3725
3726         * HttpInputStream.cs: new copy ctor.
3727         * IntPtrStream.cs: getters for base_address and size.
3728         * HttpRequest.cs: implemented SaveAs(). Use a wrapper on top of
3729         InputStream so that reading POST form or files does not modify the state
3730         if InputStream. Don't use uri_builder.Query in QueryStringRaw, as it
3731         returns the '?'.
3732
3733 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3734
3735         * HttpRequest.cs: implemented UserLanguages and reuse code from
3736         AcceptTypes.
3737
3738 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3739
3740         * HttpRequest.cs: implemented AcceptTypes.
3741
3742 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3743
3744         * HttpRequest.cs: implemented this[] in terms of Params. Don't add the
3745         header collection in Params.
3746
3747 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3748
3749         * HttpRequest.cs: fix Files property.
3750         * HttpApplication.cs: invoke the default authentication event after all 
3751         the other auth. modules.
3752
3753 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3754
3755         * ServerVariablesCollection.cs: mark the collection as read-only except
3756         when we fill it. Add the HTTP_blah key/value pairs too.
3757
3758 2005-08-18  Chris Toshok  <toshok@ximian.com>
3759
3760         * HttpRequest.cs (get_Params): implement.
3761
3762 2005-08-17  Chris Toshok  <toshok@ximian.com>
3763
3764         * HttpResponse.cs: HttpResponse's Cookie's collection acts
3765         differently than HttpRequests in that it never returns null from
3766         the "this [string]" accessor.
3767
3768 2005-08-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3769
3770         * HttpRequest.cs: check length 0 case when reading a POST.
3771
3772 2005-08-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773
3774         * HttpContext.cs: added security attributes for User and
3775         SkipAuthorization properties.
3776         * HttpApplicationFactory.cs: AttachEvents is now called form the
3777         application .ctor. Recycle instead of dispose.
3778         * HttpApplication.cs: attach events to the newly created application.
3779
3780 2005-08-15  Jackson Harper  <jackson@ximian.com>
3781
3782         * ApplicationShutdownReason.cs: make build
3783
3784 2005-08-15  Miguel de Icaza  <miguel@novell.com>
3785
3786         * HttpApplication.cs: Update comments
3787
3788         * HttpPostedFile.cs: Use a substream to read from the uploaded
3789         multiparts. 
3790
3791         * HttpRequest.cs: use new code to read the uploaded files.
3792
3793 2005-08-12  Miguel de Icaza  <miguel@novell.com>
3794
3795         2.x API fixage and small additions:
3796         
3797         * HttpResponse.cs: Make constructor internal.
3798
3799         * HttpRequest.cs (IsLocal): Expose if NET_2.x
3800
3801         * HttpContext.cs: Remove internal routine.
3802
3803         * HttpApplication.cs: Add 2.x events. 
3804
3805         * HttpRequest.cs: Another iFolder issue: I was not setting up the
3806         uri_builder here.
3807
3808         Fixes to get iFolder to work:
3809         
3810         * HttpApplicationFactory.cs: Set the context when we are initting
3811         the application.
3812
3813         * HttpApplication.cs (SetContext): helper routine. 
3814
3815         * HttpResponse.cs: Implement the various cache operations:n
3816         Expires, ExpiresAbsolute, CacheControl.
3817
3818         Actually produce the Cache-Control header, the "Cache" property
3819         takes precedence over the compatibility settings (Expires,
3820         ExpiresAbsolutely and CacheControl). 
3821
3822         * HttpCachePolicy.cs: Fix style.
3823
3824         Fix the generation of the headers, use lower-case values, do not
3825         add the max-value if the value is zero.  
3826
3827         Allow for all possible values in SetCacheability. 
3828
3829         * HttpRuntime.cs (ClrInstallDirectory): Implement.
3830
3831         * HttpResponseStream.cs: Remove debugging stuff. 
3832
3833 2005-08-11  Miguel de Icaza  <miguel@novell.com>
3834
3835         Big chunked handling rewrite, and integration of Ben's unmanaged
3836         output stream.
3837
3838         * HttpWriter.cs: Delegate chunked encoding writing to the
3839         HttpResponse. 
3840
3841         * HttpResponse.cs: Rework the chunked encoding system, centralize
3842         it all. 
3843
3844         * HttpResponseStream.cs: Deploy Ben's bucket-base unmanaged
3845         buffers code. 
3846
3847         Changed the way that we handle chunked encoding, centralize it
3848         all;  
3849
3850         Remove a lot of manual handling of buffering turned off, and
3851         instead delegate it all to Flush, fixes several issues with the
3852         new framework.
3853
3854         * HttpWorkerRequest.cs (SendResponseFromMemory (IntPtr, int)):
3855         Provide a default implementation since currently XSP does not have
3856         this method implemented. 
3857
3858 2005-08-11  Sebastien Pouliot  <sebastien@ximian.com> 
3859  
3860         * HttpClientCertificate.cs: Culture insensitive int parsing. Fixed
3861         NET_2_0 build.
3862
3863 2005-08-10  Miguel de Icaza  <miguel@novell.com>
3864
3865         * ServerVariablesCollection.cs: For Ben.  Implement the header
3866         fetching here, do not implement it in HttpRequest.cs.
3867
3868 2005-08-10  Sebastien Pouliot  <sebastien@ximian.com> 
3869  
3870         * HttpClientCertificate.cs: Changed IsPresent logic so that new unit
3871         tests will work as expected.
3872
3873 2005-08-10  Sebastien Pouliot  <sebastien@ximian.com>
3874
3875         * HttpClientCertificate.cs: Implemented, except for validation. Note 
3876         that the HttpWorkerRequest derived classes must be updated to supply 
3877         the required informations.
3878         * HttpRequest.cs: Create an HttpClientCertificate on first call to
3879         ClientCertificate.
3880
3881 2005-08-09  Miguel de Icaza  <miguel@novell.com>
3882
3883         * HttpRuntime.cs (AspInstallDirectory): Implement.
3884
3885 2005-08-09  Sebastien Pouliot  <sebastien@ximian.com>
3886
3887         * HttpClientCertificate.cs: New. Stub. It won't be fun to test.
3888
3889 2005-08-04  Ben Maurer  <bmaurer@ximian.com>
3890
3891         * HttpContext.cs: Kill a NIE.
3892
3893 2005-08-04  Miguel de Icaza  <miguel@novell.com>
3894
3895         * HttpApplicationFactory.cs: Change "Start" event like the "End"
3896         event, and only do this once, when we init the type.
3897
3898         Fire the "Application_Start" event after we create the type.
3899
3900 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3901
3902         * HttpApplication.cs: catch a ThreadAbort (coming from Response.End)
3903         here too.
3904
3905 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3906
3907         * HttpResponse.cs: setting the Status property resets the
3908         StatusDescription (see the tests) and the default value for the
3909         description is the one provided by GetStatusDescription() in
3910         HttpWorkerRequest.
3911
3912 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3913
3914         * HttpRequest.cs: s/boundry/boundary/ and fix typo in array creation.
3915
3916 2005-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3917
3918         * HttpApplication.cs: add call to EndOfRequest when everything is said
3919         and done.
3920
3921 2005-08-02  Miguel de Icaza  <miguel@novell.com>
3922
3923         * HttpResponse.cs: Stub for TransmitFile.
3924
3925         * HttpRequest.cs (IsAuthenticated): Implement.
3926
3927 2005-08-01  Miguel de Icaza  <miguel@novell.com>
3928
3929         * HttpRequest.cs: Cope with implementations of HttpWorkerRequest
3930         (unpatched xsp) that do not send back the PreloadedEntityBody. 
3931
3932         * HttpApplication.cs: keep track of the factory. 
3933         (Dispose): Only dispose once, clean up other variables, release
3934         the ManualResetEvent.
3935         Release the handler to the factory.
3936
3937         * HttpApplicationFactory.cs: Implement a stack to reuse the
3938         applications. 
3939
3940         * HttpRequest.cs: On uploads, if the ContentLenght is zero, throw
3941         a 411.
3942
3943         * HttpRuntime.cs: Recycle the application after using it.
3944
3945         * HttpPostedFile.cs: Implement SaveAs.
3946
3947         * HttpContext.cs: Return the "Server" property.
3948
3949 2005-08-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3950
3951         * HttpServerUtility.cs: implemented missing bits.
3952
3953 2005-08-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3954
3955         * HttpRequest.cs: query string was getting a '?' as the start of the
3956         first variable name. This makes the asmx help page work again.
3957
3958 2005-08-01  Miguel de Icaza  <miguel@novell.com>
3959
3960         * HttpRequest.cs (Cookies, Forms): Add validation.
3961         (Forms): Add application/x-www-form-urlencoded parsing and
3962         multipart/form-data parsing.
3963         
3964         (HttpMultiPart): Implement new class to load multi-part data from
3965         a stream since there is no longer a byte [] that holds the data
3966         (currently we have an unmanaged IntPtr buffer wrapped as a
3967         stream).  Also the 2.x framework will add support for large
3968         uploads which are sent directly to disk, which will require the
3969         FileStream interface. 
3970         
3971         (Path, PathInfo): Fill a couple more methods to avoid crashes.
3972
3973         * HttpContext.cs: Fill another one to get web services summary
3974         page painting.  The page does not work though.
3975         
3976         * HttpApplication.cs: Rework the pipeline to not depend on
3977         `finally', as `finally' would not be invoked if we choose not to
3978         call the pipeline again (which happens if the `stop' variable is
3979         set). 
3980
3981         Instead force the pipeline to go to the shutdown, and yield from
3982         there after all the release-state callbacks have been invoked. 
3983
3984 2005-07-31  Miguel de Icaza  <miguel@novell.com>
3985
3986         * HttpApplication.cs: Remove debugging messages since the compiler
3987         bug has been fixed.
3988
3989         You must use at least mcs from revision 47879 for the application
3990         pipeline to work. 
3991
3992 2005-07-30  Miguel de Icaza  <miguel@novell.com>
3993
3994         * HttpContext.cs: Error handling methods.
3995
3996         * HttpResponse.cs: Trigger the last event.
3997
3998         * HttpRuntime.cs: Add queueing of the next request. 
3999
4000         * HttpApplication.cs: Deploy the new yield-based application
4001         pipeline, add error handling to the pipeline.
4002         
4003         * HttpApplication.cs (AsyncRequestState): Just use the done event
4004         from the parent.
4005
4006 2005-07-29  Miguel de Icaza  <miguel@novell.com>
4007
4008         * HttpResponseStream.cs, HttpRequest.cs: Fix bugs found by nunit.
4009
4010         * HttpApplication.cs: Fix a race condition. 
4011
4012         * HttpResponseStream.cs: Fix bug, send the size of the buffer that
4013         we have so far instead of the internal size of the buffer.   This
4014         will need work later to ensure we enforce the Content-Length
4015         maximum output size if set.
4016
4017         * ServerVariablesCollection.cs: This class now inherits from
4018         NameValueCollection, we should probably review what the middle
4019         class did, there are no dependencies on it.
4020
4021         I need to write tests to investigate if something is missing or
4022         has changed in this implementation. 
4023
4024 2005-07-27  Miguel de Icaza  <miguel@novell.com>
4025
4026         * HttpRequest.cs: No happy replies here, send a 411.
4027
4028 2005-07-27  Chris Toshok  <toshok@ximian.com>
4029
4030         * HttpResponseHeader.cs: remove spew.
4031         
4032 2005-07-27  Chris Toshok  <toshok@ximian.com>
4033
4034         * HttpResponseHeader.cs (HttpResponseHandler..ctor): use
4035         HttpWorkerRequest.GetKnownResponseHeaderName instead of
4036         GetKnownRequestHeaderName.  Fixes Response.Redirect until miguel's
4037         new HttpReponse is online.
4038
4039 2005-07-26  Miguel de Icaza  <miguel@novell.com>
4040
4041         * HttpResponse.cs: use_chunked is now a byte-array, if not null,
4042         we use it to hold the size of the chunked so we do not have to
4043         allocate many of these. 
4044         (SendSize): Helper routine to send the chunked headers.
4045         (BinaryWrite): First user of the chunked writer.
4046
4047         * HttpApplication.cs: Do not crash if they request a Server
4048         instance, but throw a NotImplementedException.
4049
4050         * HttpRequest.cs: fix a few problems exposed by the regression
4051         test suite.
4052
4053         * HttpRequest.cs (Cookies): use Chris' new constructor to get the
4054         cookies parsed.
4055
4056         : The big Uri rework: instead of using QueryString
4057         as the population mechanism, populate an UriBuilder from the
4058         various HttpWorkerRequest methods.
4059
4060         * HttpWorkerRequest.cs (GetProtocol): Implement in terms of
4061         IsSecure().
4062
4063         * HttpResponse.cs: Pointed by Ben, Write (null) is a nop instead
4064         of a crash.
4065
4066         * HttpContext.cs: Add a couple of properties to help the 2.x
4067         build.
4068         
4069         * HttpResponse.cs: Make ContentLength a long, add back support for
4070         session's app_path_mod.
4071         (ApplyAppPathmodifier): put back.
4072         (End): Pass a flag to abort so we can tell the exceptions appart
4073         in HttpApplication.
4074         (WriteHeaders): Send the HTTP status.
4075         (Redirect): Implement.
4076         (Write): Use the Output property to load writer when needed.
4077         
4078         * HttpRequest.cs (ctor): Temporary use of InitFromWR, will fix
4079         later. 
4080         (MakeInputStream): check content-length size, use routines to load
4081         the preloaded data, handle incomplete transfers.
4082         (Query): Do not insert null keys into the collection.
4083         (Url): implement.
4084         (UrlReferer): implement.
4085
4086         * HttpApplication.cs (RunHooks): Catch Thread.Abort, and call
4087         Thread.ResetAbort after each step.
4088
4089         Ensure that ReleaseState is called if we ever succeed in acquiring
4090         the state even if we have stopped the request pipeline.
4091
4092         Report file not found, directory not found.
4093
4094 2005-07-25  Miguel de Icaza  <miguel@novell.com>
4095
4096         * HttpCookieCollection.cs: Add expiration of the cookie. 
4097
4098         * HttpRequest.cs: Add check for ContentLength, use
4099         GetPreloadedEntityBody, correct number of bytes uploaded.
4100
4101 2005-07-21  Miguel de Icaza  <miguel@novell.com>
4102
4103         * HttpResponseHeader.cs: Our implementation of HttpResponse only
4104         uses the text headers, does not use any constants as XSP would go
4105         through a slower code path anyways.
4106
4107 2005-07-21  Chris Toshok  <toshok@ximian.com>
4108
4109         * HttpBrowserCapabilities.cs: enable support for the W3CDomVersion
4110         and EcmaScriptVersion properties.
4111
4112 2005-07-21  Chris Toshok  <toshok@ximian.com>
4113
4114         * HttpResponseHeader.cs: hi, i'm stupid and missed String.Replace.
4115         
4116 2005-07-21  Chris Toshok  <toshok@ximian.com>
4117
4118         * HttpResponseHeader.cs: url encode just \r and \n if they're
4119         present in the value.
4120
4121 2005-07-20  Chris Toshok  <toshok@ximian.com>
4122
4123         * HttpPostedFile.cs: add missing ContentLength property.
4124
4125 2005-07-20  Chris Toshok  <toshok@ximian.com>
4126
4127         * HttpCookieCollection.cs: add a new ctor that takes a string (the
4128         contents of the Cookies: header).
4129
4130 2005-07-20  Chris Toshok  <toshok@ximian.com>
4131
4132         * HttpCookieCollection.cs: add another ctor (internal, but not
4133         obsolete, so we aren't passing a stupid HttpResponse in in order
4134         to change the behavior of the collection.)
4135
4136         * HttpCookie.cs: init this.values in the internal ctor.
4137
4138 2005-07-20  Chris Toshok  <toshok@ximian.com>
4139
4140         * HttpCookieCollection.cs: use "auto-fill mode" when we're dealing
4141         with an HttpResponse's cookie collection.  That is, create the
4142         cookie if the consumer looks it up.
4143
4144 2005-07-20  Miguel de Icaza  <miguel@novell.com>
4145
4146         * HttpApplication.cs: Ongoing work on pipeline, I will need to
4147         redo this later.
4148
4149 2005-07-19  Miguel de Icaza  <miguel@novell.com>
4150
4151         * HttpContext.cs (GetService): Implement.  Return all of the
4152         properties that we have access to.  Make HttpWorkerRequest the
4153         first match as this is the only likely reason people need to use
4154         this. 
4155
4156         * IntPtrStream.cs: Bring from corlib.
4157
4158         * MultiPartContentParser.cs: use a MemoryStream as HttpInputStream
4159         will now be using IntPtrStream. 
4160
4161         * HttpRequest.cs (MakeInputStream): move code that loads the
4162         request here
4163         (CloseInputStream): Helper method that we will call later to
4164         ensure that we dispose properly the malloced() block. 
4165         (BinaryRead): Implemented.
4166
4167         * HttpInputStream.cs: Rewrite to be a descendant of
4168         IntPtrStream.cs 
4169
4170 2005-07-18  Miguel de Icaza  <miguel@novell.com>
4171
4172         * HttpApplication.cs (Modules): Add modules support and
4173         AsyncResult.
4174
4175 2005-07-18  Chris Toshok  <toshok@ximian.com>
4176
4177         * HttpResponseHeader.cs: initial implementation.
4178
4179 2005-07-18  Chris Toshok  <toshok@ximian.com>
4180
4181         * HttpModuleCollection.cs (HttpModuleCollection.GetKey): add
4182         missing method.
4183
4184         * HttpFileCollection.cs: initial implementation.
4185
4186 2005-07-18  Chris Toshok  <toshok@ximian.com>
4187
4188         * HttpModuleCollection.cs (HttpModuleCollection.CopyTo): implement
4189         missing method.
4190
4191 2005-07-18  Chris Toshok  <toshok@ximian.com>
4192
4193         * HttpModuleCollection.cs: initial implementation.
4194
4195 2005-07-18  Chris Toshok  <toshok@ximian.com>
4196
4197         * HttpCacheVaryByHeaders.cs: only add the header if it's not
4198         already in the hash.
4199
4200         * HttpCacheVaryByParams.cs: only add the param if it's not already
4201         in the hash.
4202
4203 2005-07-18  Chris Toshok  <toshok@ximian.com>
4204
4205         * HttpCookie.cs (HttpCookie+CookieNVC.Set): new override to fix an
4206         MS quirk.
4207
4208 2005-07-17  Miguel de Icaza  <miguel@novell.com>
4209
4210         * HttpRequest.cs (Headers, InputStream): implemented two more
4211         properties.
4212
4213         * HttpInputStream.cs: All we need is a MemoryStream with writable
4214         set to false.
4215
4216         * HttpPostedFile.cs: Use a Stream.
4217
4218 2005-07-16  Chris Toshok  <toshok@ximian.com>
4219
4220         * HttpCacheVaryByHeaders.cs: make sure we set vary_by_unspecified
4221         = false in the custom setter.
4222
4223 2005-07-16  Chris Toshok  <toshok@ximian.com>
4224
4225         * HttpCacheVaryByParams.cs: initial implementation.
4226
4227 2005-07-16  Chris Toshok  <toshok@ximian.com>
4228
4229         * HttpCacheVaryByHeaders.cs: initial implementation.
4230
4231 2005-07-15  Chris Toshok  <toshok@ximian.com>
4232
4233         * HttpCookie.cs: one more time.
4234
4235 2005-07-15  Chris Toshok  <toshok@ximian.com>
4236
4237         * HttpCookie.cs (HttpCookie.GetCookieHeader): use
4238         expires.ToString().
4239         
4240 2005-07-15  Chris Toshok  <toshok@ximian.com>
4241
4242         * HttpCookie.cs (HttpCookie.GetCookieHeader): implement to fix
4243         ben's bug.
4244
4245 2005-07-15  Chris Toshok  <toshok@ximian.com>
4246
4247         * HttpCookieCollection.cs: initial implementation (with a couple
4248         of labeled inefficiencies.)
4249
4250 2005-07-15  Chris Toshok  <toshok@ximian.com>
4251
4252         * HttpCookie.cs (HttpCookie.get_HasKeys): use values.HasKeys()
4253         instead of trying to be smart about it ourselves.
4254
4255 2005-07-15  Chris Toshok  <toshok@ximian.com>
4256
4257         * HttpCookie.cs: initial implementation.  we fail one unit test,
4258         but it might be due to a bug in NameValueCollection.
4259
4260 2005-07-15  Miguel de Icaza  <miguel@novell.com>
4261
4262         * HttpRequest.cs: 
4263
4264 2005-07-14  Miguel de Icaza  <miguel@novell.com>
4265
4266         * HttpRuntime.cs: Return a few of the values from the AppDomain
4267         data. 
4268
4269         Put the application shutdown process.
4270
4271         * HttpApplicationFactory.cs (AddEvent): Fixed bug when more than
4272         one method existed.
4273         
4274         (FireEvent): Do not ignore errors.
4275
4276         * HttpContext.cs (GetAppConfig, GetConfig): First success, use
4277         ConfigurationSettings.GetConfig to get the value that QueueManager
4278         needed.
4279
4280 2005-07-14  Dick Porter  <dick@ximian.com>
4281
4282         * HttpPostedFile.cs: New basic implementation; needs someone to
4283         figure out what a HttpRequestStream does
4284
4285 2005-07-13  Miguel de Icaza  <miguel@novell.com>
4286
4287         * HttpRequest.cs: More work on this file
4288
4289         * HttpRequest.cs, HttpApplication.cs, HttpContext.cs,
4290         HttpRuntime.cs: New from scratch implementation.
4291
4292 2005-07-01  Lluis Sanchez Gual <lluis@novell.com>
4293
4294         * SiteMap.cs: Read provider info from the configuration files.
4295
4296 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4297
4298         * HttpResponseHeader.cs: URL encode \r and \n in header values. Fixes
4299         bug #75392.
4300
4301 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4302
4303         * HttpUtility.cs: fix another stupid buglet in htmldecode.
4304
4305 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4306
4307         * HttpContext.cs:
4308         * HttpResponse.cs:
4309         * HttpRequest.cs: use StrUtils (invariant culture).
4310
4311 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4312
4313         * HttpRequest.cs: use StartsWith when looking for 'multipart/form-data'.
4314         File uploading was broken since a few commits ago.
4315
4316 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4317
4318         * HttpResponse.cs: ensure that the last chunk ('0\r\n\r\n') is sent
4319         even if response.Close is called before a final flush. MS/IIS fails to
4320         do this.
4321
4322 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4323
4324         * HttpRequest.cs: don't print anything for unknown content types in
4325         ParseFormData. Use lowercase compare.
4326
4327 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4328
4329         * HttpResponse.cs: invariant love.
4330
4331 2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4332
4333         * HttpResponse.cs: avoid 1 string concat.
4334         * HttpRequest.cs: fix BinaryRead. It was totally wrong.
4335
4336 2005-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4337
4338         * HttpUtility.cs: don't append an extra 0 when no digits seen. Fixes
4339         bug #75370.
4340
4341 2005-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4342
4343         * HttpUtility.cs: the lower limit for using &#xx; encoding is 160, not
4344         128. Reset number back to 0 after use. Fixes bug #75365.
4345
4346 2005-06-19  Svetlana Zholkovsky <svetlanaz-at-mainsoft.com>
4347                 * In following classes added TARGET_J2EE or/and TARGET_JVM
4348                   directives:
4349                         - HttpResponse.cs
4350                         - HttpRuntime.cs
4351                         - HttpUtility.cs
4352                         - CapabilitiesLoader.cs
4353                         - HttpApplication.cs
4354                         - HttpApplicationFactory.cs
4355                         - HttpContext.cs
4356                         - HttpException.cs
4357                         - HttpRequest.cs
4358                 * Added Mainsoft's specific files :
4359                         - GhHttpAsyncResult.jvm.cs
4360
4361 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4362
4363         * HttpRequest.cs: avoid one intermediate buffer when reading the request
4364         body and fail for over limit content length when the content type is
4365         not handled as form or multipart data.
4366
4367 2005-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4368
4369         * HttpResponse.cs: fix the check in Close() so that CloseConnection is
4370         called even if there has been no final Flush. Fixes bug #75176.
4371
4372 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4373
4374         * HttpParseException.cs:
4375         * HttpResponse.cs:
4376         * HttpApplication.cs: updates for 1.1 service pack.
4377
4378 2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4379
4380         * HttpUtility.cs: fix InvalidCastException.
4381
4382 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
4383
4384         * HttpWriter.cs: Fixed: _OutputFilter.Close () was called twice.
4385
4386 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4387
4388         * HttpUtility.cs: modified HtmlDecode so that it does not need to call
4389         Int32.Parse and handles improper &# sequences. Fixes bug #74907.
4390
4391 2005-05-26  Lluis Sanchez Gual <lluis@novell.com>
4392
4393         * SiteMapNodeCollection.cs: Implemented missing methods. The collection
4394         does not inherit from CollectionBase any more.
4395         * SiteMapNode.cs: Track api changes.
4396         * SiteMapProvider.cs: Moved several methods to the new
4397         StaticSiteMapProvider class. Other fixes.
4398         * XmlSiteMapProvider.cs: Watch changes in the xml files. Other fixes.
4399         * SiteMapProviderCollection.cs: Minor fixes.
4400         * SiteMap.cs: Added missing event. Avoid double check lock.
4401         * StaticSiteMapProvider.cs: New class that implements some of the
4402         funtionality of SiteMapProvider.
4403
4404 2005-05-25  Ben Maurer  <bmaurer@ximian.com>
4405
4406         * MimeTypes.cs: Remove extra spaces, they were typos. Fixes 75049.
4407
4408 2005-05-13 Atsushi Enomoto <atsishi@ximian.com>
4409
4410         * HttpUtility.cs : UrlDecodeToBytes() incorrectly decoded escaped 
4411           characters. Patch by Kazuki Oikawa.
4412
4413 2005-05-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4414
4415         * HttpRuntime.cs: PlatformID.Unix.
4416
4417 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4418
4419         * HttpResponse.cs: cleaned up the .ctors, fix IsClientConnected and just
4420         Clear the _Headers array instead of creating a new ArrayList in
4421         ClearHeaders().
4422
4423 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4424
4425         * HttpResponse.cs: we had 2 variables to track client connection status.
4426         Use only one. Increase the buffer size to 28KB when writing from a file.
4427
4428         * StaticFileHandler.cs: set the Content-Type before writing the file.
4429         This allows flushing before all the content is written.
4430
4431         * HttpApplication.cs: use the variable instead of the property when
4432         setting the Principal for the current process.
4433
4434 2005-05-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4435
4436         * ReusableMemoryStream.cs:
4437         * HttpWriter.cs: keep a pool of buffers to avoid allocations.
4438
4439 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4440
4441         * HttpResponse.cs: no need to save/restore the thread culture when
4442         getting the Date header. According to Ben's profiling, this is a big
4443         deal in performance.
4444
4445         * HttpRuntime.cs: ignore exceptions that might be thrown when unloading 
4446         a domain.
4447
4448 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4449
4450         * HttpApplicationFactory.cs: ignore any exception thrown when invoking
4451         an application event.
4452
4453 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4454
4455         * HttpBrowserCapabilities.cs: fix Win32 property.
4456
4457 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4458
4459         * HttpResponse.cs: only add the charset when explicitly set or for
4460         well-known content types.
4461
4462 2005-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4463
4464         * HttpCachePolicy.cs:
4465         * HttpAsyncResult.cs:
4466         * HttpClientCertificate.cs:
4467         * HttpException.cs:
4468         * HttpRuntime.cs:
4469         * HttpCacheVaryByHeaders.cs:
4470         * HttpBrowserCapabilities.cs:
4471         * HttpUtility.cs:
4472         * HttpCacheVaryByParams.cs: no more warnings.
4473
4474         * QueueManager.cs: check for local connections with minLocalFreeThreads.
4475
4476 2005-04-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4477
4478         * ServerVariablesCollection.cs: shuffled variables, added missing ones
4479         and call a method in HttpRequest to set the HTTP_ variables.
4480
4481         * HttpRequest.cs: new method to add HTTP_ variables to a collection.
4482
4483 2005-04-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4484
4485         * HttpRequest.cs: GetAllHeaders was returning the value twice instead
4486         of 'name: value'. When HTTP_ is requested on the output, don't include
4487         unknown headers.
4488
4489 2005-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4490
4491         * HttpCookieCollection.cs: when adding more than one cookie with the
4492         same name, the last one is the winner.
4493
4494 2005-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4495
4496         * HttpRequest.cs: correctly store the value cookies in Params. Fixes
4497         bug #73345.
4498
4499 2005-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4500
4501         * HttpRequest.cs: Path and FilePath also change when RewritePath is
4502         called. Fixes bug #73055.
4503
4504 2005-02-23  Sebastien Pouliot  <sebastien@ximian.com>
4505
4506         * HttpRequest.cs: Make sure that any access after a ValidateInput 
4507         throws an exception if the data isn't safe.
4508
4509 2005-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4510
4511         * CapabilitiesLoader.cs: fix the path, as machine.config is now in a
4512         x.x/ directory below $PREFIX/etc/mono.
4513
4514 2005-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4515
4516         * HttpRequest.cs: fail on unicode full-width '<' and '>' too. Fixes
4517         a security report (http://secunia.com/advisories/14325) that wan't
4518         reported to us before public disclosure.
4519
4520 2005-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4521
4522         * HttpResponse.cs: send the calculated content length even when it's 0.
4523         Fixes bug #72655.
4524
4525 2005-02-04  Lluis Sanchez Gual <lluis@novell.com>
4526
4527         * HttpContext.cs: Added internal property to keep a reference to
4528         the last accessed page. Page uses this to implement PreviousPage.
4529
4530 2005-02-02  Lluis Sanchez Gual <lluis@novell.com>
4531
4532         * ProcessModelInfo.cs: Fixed warning.
4533
4534 2005-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4535
4536         * TraceContext.cs: writing a message without any other argument is not
4537         a warniing. Fixes bug #72017.
4538
4539 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4540
4541         * HttpApplication.cs: if there are no more handlers, finish the
4542         request and ensure we call Complete on it. Now FreeTextBox 3.0 works.
4543
4544 2004-12-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4545
4546         * HttpRequest.cs: honor the maxRequestSize limit from machine.config.
4547
4548 2004-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4549
4550         * HttpApplication.cs: reread application CultureInfo as web.config
4551         might have changed. Fixes bug #62539.
4552
4553 2004-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4554
4555         * HttpResponse.cs: fixed ApplyAppPathModifier to insert the session ID.
4556
4557 2004-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4558
4559         * HttpApplicationFactory.cs: monitor changes in global.asax and bin
4560         directory and shutdown the application when that happens. Fixes bug
4561         #49651.
4562
4563 2004-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4564
4565         * ReusableMemoryStream.cs: copied from System.IO.MemoryStream and
4566         slightly modified to allow expanding the buffer for cases on which the
4567         regular MemoryStream don't allow it.
4568
4569         * HttpWriter.cs: use the new ReusableMemoryStream and fix bug #59841.
4570         Otherwise we would have to allocate a new MemoryStream...
4571
4572 2004-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4573
4574         * HttpApplication.cs: Create() is now GetInstance().
4575
4576 2004-11-18 Lluis Sanchez Gual <lluis@novell.com>
4577
4578         * SiteMapNodeCollection.cs: Added missing properties.
4579         * HttpParseException.cs: Added 2.0 methods and properties.
4580         * SiteMapNode.cs: Added missing methods and properties.
4581         * SiteMapProvider.cs, XmlSiteMapProvider.cs, 
4582         SiteMapProviderCollection.cs: IProvider does not exist any
4583         more, it is now ProviderBase.
4584         * ISiteMapProvider.cs: Deleted.
4585         * ParserErrorCollection.cs, ParserError.cs, SiteMapResolveEventArgs.cs:
4586           Implemented.
4587         * SiteMap.cs: Minor fixes.      
4588
4589 2004-11-15 Lluis Sanchez Gual <lluis@novell.com>
4590
4591         * SiteMapProviderCollection.cs: Fixed warning.
4592         * HttpApplication.cs: Added new 2.0 events.
4593
4594 2004-11-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4595
4596         * HttpResponse.cs: added internl SetHeadersSent.
4597         * HttpRuntime.cs: don't throw the 'headers already sent' exception
4598         if we're sending a runtime error.
4599
4600 2004-11-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4601
4602         * HttpApplication.cs: undo the TimeoutManager.(Add|Remove) shuffling.
4603         It causes troubles under heavy load.
4604
4605 2004-11-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4606
4607         * SiteMap.cs: don't lock on Type.
4608         * CapabilitiesLoader.cs: avoid 2 locks when loading data.
4609
4610 2004-11-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4611
4612         * HttpRequest.cs: patch by Dennis Gervalle that fixes PhysicalPath in
4613         presence of rewriting.
4614
4615 2004-10-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4616
4617         * HttpApplication.cs: don't hang if a sync step is aborted. Fixes the
4618         system.web portion of bug #68270.
4619
4620 2004-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4621
4622         * TraceContext.cs: don't cast to Page is the handler it's
4623         not a page.
4624
4625 2004-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4626
4627         * HttpRequest.cs: CurrentExecutionFilePath is the one that
4628         changes when Transfer or Execute are used, not FilePath.
4629
4630         * HttpServerUtility.cs: moved form saving/restoring from
4631         Transfer to Execute, as it's needed there too. the query string is
4632         correctly set now. Fixes bug #67388.
4633
4634         * HttpContext.cs: use SetCurrentExePath instead of SetFilePath.
4635
4636 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
4637
4638         * HttpResponse.cs: use UtcNow
4639
4640 2004-10-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4641
4642         * HttpResponse.cs: SuppressContent does not throw and clears all the
4643         buffered output. Fixes bug #67213.
4644
4645 2004-09-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4646
4647         * HttpUtility.cs: UrlPathEncode is static. Fixes bug #67155.
4648
4649 2004-09-29 Ben Maurer  <bmaurer@ximian.com>
4650
4651         * HttpContext.cs, TimeoutManager: Use DateTime.UtcNow.
4652
4653 2004-09-25 Ben Maurer  <bmaurer@ximian.com>
4654
4655         * HttpApplication.cs: Make sure requests are removed from
4656         the timeout manager. Fixes a major leak. #66751.
4657
4658 2004-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4659
4660         * HttpApplicationFactory.cs:
4661         * HttpRuntime.cs: implemented UnloadAppDomain and be ready for domain
4662         unloading.
4663
4664 2004-09-12 Ben Maurer  <bmaurer@ximian.com>
4665
4666         * HttpContext.cs: use CallContext. It is a little bit faster.
4667
4668 2004-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4669
4670         * HttpStaticObjectsCollection.cs: don't share static session objects
4671         declared in the application file across the application, but on a
4672         per-session basis. Fixes bug #65446.
4673
4674 2004-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4675
4676         * HttpServerUtility.cs: in Transfer(path), don't keep form data if
4677         the transfer is done from inside a page that received a postback.
4678         Fixes bug #65613.
4679
4680 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4681
4682         * HttpValueCollection.cs: fixed signature of ToString (). Closes bug
4683         #65392.
4684
4685 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4686
4687         * HttpWriter.cs (.ctor): Dont create teh StreamWriter twice
4688         (Clear): Don't recreate the MemoryStream and StreamWriter
4689
4690 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4691
4692         * HttpApplication.cs: only add/remove to/from the timeout
4693         manager when we're in a interruptible step.
4694
4695 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4696
4697         * TraceContext.cs: when IsEnabled has not been set, return the value
4698         from the TraceManager. Fixes bug #63469.
4699
4700 2004-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4701
4702         * HttpRuntime.cs: initialize the response writer when finishing a
4703         request because it cannot be queued. Under heavy load we made new
4704         requests be processed before the ones that might be queued. This is
4705         no longer the case.
4706
4707         * QueueManager.cs: instead of queueing/dequeuing separately, we now
4708         have a single method that does everything needed to decide which one
4709         will be the next request processed.
4710
4711 2004-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4712
4713         * HttpRuntime.cs: removed initializations to null in .cctor. Prevent
4714         other requests from avoiding the lock if they are received before the
4715         configuration system is inited. Ensure that the queue manager is not
4716         null before using it (it can be null while the first request is being
4717         processed).
4718
4719 2004-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4720
4721         * HttpServerUtility.cs: ensure we have a full virtual path for the
4722         request being executed.
4723
4724 2004-08-02  Duncan Mak  <duncan@ximian.com>
4725
4726         * ApplicationShutdownReason.cs: Fixed typos.
4727
4728         * HttpCookieMode.cs:
4729         * HttpDataTransferMode.cs:
4730         * HttpRequestPriority.cs: Added [Serializable] attribute.
4731         
4732 2004-08-02  Duncan Mak  <duncan@ximian.com>
4733
4734         * ApplicationShutdownReason.cs:
4735         * HttpCookieMode.cs:
4736         * HttpDataTransferMode.cs:
4737         * HttpRequestPriority.cs: Added 2.0 enumerations.
4738         
4739 2004-07-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4740
4741         * HttpApplication.cs: the file not found might be a dependency.
4742
4743 2004-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4744
4745         * HttpCookie.cs: use invariant when formatting expires date. Fixes bug
4746         #61690.
4747
4748 2004-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4749
4750         * HttpApplication.cs: don't keep the session around if we got it from
4751         the context. Fixes bug #61232.
4752
4753 2004-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4754
4755         * HttpUtility.cs: fixed stupid bug in UrlDecode from bytes. Closes bug
4756         #61181.
4757
4758 2004-07-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4759
4760         * TraceContext.cs: added internal HaveTrace property whose
4761         value is true when the page has a Trace attribute.
4762
4763 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4764
4765         * TraceData.cs: fixed <br> output. Closes bug #60181.
4766
4767 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4768
4769         * HttpUtility.cs: check for control characters in the string to encode
4770         or decode and return the same string if there are none.
4771
4772 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4773
4774         * HttpApplication.cs: change/restore the IPrincipal in their own methods
4775         and make them internal.
4776
4777 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4778
4779         * HttpContext.cs: reverting Pedro's patch and sending mail with test
4780         to mono-devel.
4781
4782 2004-06-09  Pedro Martnez Juli  <yoros@wanadoo.es>
4783
4784         * HttpContext: User property returns its own "user" value because
4785         the context can walk through different Threads. When "User" property
4786         is changed, change "Thread.CurrentPrincipal" too.
4787
4788 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4789
4790         * HttpRequest.cs: removed extra ^Ms and fixed style of last patch.
4791
4792 2004-06-08  Alon Gazit  <along@mainsoft.com>
4793
4794         * HttpRequest.cs: Add a patch for HttpRequest.ServerVariables.
4795
4796 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
4797
4798         * HttpContext.cs: User property now get/set Thread.CurrentPrincipal.
4799         Fix (at least partially) #59683.
4800
4801 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4802
4803         * HttpRequest.cs: reverting patch from Alon Gazit. Uses the above file
4804         that doesn't compile.
4805
4806 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4807
4808         * TraceData.cs: fixes nullref in an application that relies on
4809         r ["Message"] not being null. Closes bug #59679.
4810
4811 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4812
4813         * HttpCachePolicy.cs: implemented SetAllowResponseInBrowserHistory.
4814
4815 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4816
4817         * HttpRuntime.cs: implemented a 5 simple properties that were TODOs.
4818
4819 2004-06-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4820
4821         * HttpBrowserCapabilities.cs: implemented ClrVersion and GetClrVersions.
4822         * HttpException.cs: removed MonoTODO.
4823
4824 2004-06-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4825
4826         * TraceContext.cs: don't check if HttpRuntime.TraceManager
4827         is enabled when writing.
4828
4829 2004-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4830
4831         * HttpRequest.cs: added ClientTarget internal property.
4832
4833 2004-06-03  Lluis Sanchez Gual <lluis@ximian.com>
4834
4835         * HttpApplication.cs: Clear the http handler list after releasing the
4836           handlers.
4837
4838 2004-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4839
4840         * TraceData.cs: html-encode the messages written to the trace. Fixes
4841         bug #59431.
4842
4843 2004-06-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4844
4845         * HttpWorkerRequest.cs: the hashtables are now case-insensitive. Thanks
4846         to Markus Krutner.
4847
4848 2004-05-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4849
4850         * HttpRequest.cs: nullify _sRequestRootVirtualDir and baseVirtualDir
4851         when SetFilePath is called. This way the cached values are reset and
4852         get the right value in case someone (namely SessionStateModule + 
4853         cookieless session) changes the FilePath after the property cached its
4854         value. Fixes bug #59364.
4855
4856 2004-05-27      Patrik Torstensson <totte@hiddenpeaks.com>
4857
4858         * HttpApplicationFactory.cs: Added SignalError (still todo)
4859
4860 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4861
4862         * HttpResponse.cs: remove hardcoded "HTTP/1.0" version that kept
4863         chunked encoding disabled. Fixed chunked suffix and end. Send the
4864         'lastchunk' marked when in the final Flush even if the content length
4865         is 0. This makes mod-mono-server work fine with chunked encoding.
4866          
4867         * HttpRuntime.cs: Set the _firstRequest* variables to true
4868         earlier. TraceContext don't take any parameter now.
4869
4870         * TraceManager.cs: don't need a context. Use GetAppConfig.
4871
4872 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4873
4874         * HttpApplication.cs: set culture/uiculture from configuration and
4875         restore it after each step. Fixes bug #52851.
4876
4877 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4878
4879         * HttpUtility.cs: use lower case in UrlEncode like MS does. Delay
4880         entities hashtable creation until it's really needed.
4881
4882 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4883
4884         * HttpApplicationFactory.cs: if no module matches the name found for a
4885         possible event, ignore it. Fixes bug #58542.
4886
4887 2004-05-16      Patrik Torstensson <totte@hiddenpeaks.com>
4888
4889         * HttpRuntime (Init): Removed old todo
4890         * HttApplication : Implemented IHttpHandlerFactory recycling
4891         
4892 2004-04-28      Patrik Torstensson
4893
4894         * HttpApplicationState.cs: Performance, usage of ReaderWriter lock,
4895         removed MonoTodo
4896
4897 2004-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4898
4899         * HttpUtility.cs: return null in HtmlDecode for null input instead of
4900         throwing an exception. Patch by Jan Jaros (bug #57083).
4901
4902 2004-04-10  Vladimir Vukicevic  <vladimir@pobox.com>
4903
4904         * TimeoutManager.cs: Swap the order of initialization of contexts
4905         and the Timer, to avoid race condition of CheckTimeouts being called
4906         before contexts gets initialized.
4907
4908 2004-03-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4909
4910         * HttpRequestStream.cs: patch from Jan Jaros that fixes bug #56080.
4911         Now the posted file content does not have the boundaries and headers
4912         included.
4913
4914 2004-03-25  Alon Gazit <along@mainsoft.com>
4915
4916         * HttpRequest.cs: fix ValidateCookieCollection() to prevent
4917         InvalidCastException.
4918
4919 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4920
4921         * HttpValueCollection.cs: don't UrlDecode cookies. Fixes bug #55254.
4922
4923 2004-03-01  Larry Ewing  <lewing@ximian.com>
4924
4925         * HttpUtility.cs: fix UrlEncodeToBytes count check.
4926
4927 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4928
4929         * HttpServerUtility.cs:
4930         * HttpUtility.cs: added some checks for null. Fixed UrlPathEncode (bug
4931         #53670).
4932
4933 2004-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4934
4935         * HttpUtility.cs: fixed length check. Closes bug #54201.
4936         Thanks to Michal Moskal. Use MemoryStream instead of an ArrayList when
4937         decoding.
4938
4939 2004-02-11  Jackson Harper <jackson@ximian.com>
4940
4941         * TraceData.cs: Use ToString for cookie/header/var name values so
4942         null is handled properly.
4943         
4944 2004-02-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4945
4946         * HttpApplication.cs: ApplicationState is inited by the factory so,
4947         return that value in the property. when we use the context Session,
4948         cache it in the instance field.
4949
4950         * HttpApplicationFactory.cs: fixed target Type for the event when
4951         hooking application and module events. Initialize application
4952         and session scope objects. Fixes non-aplication events hook up.
4953
4954         * HttpStaticObjectsCollection.cs: added StaticItem and delay the
4955         creation of the objects until they are requested.
4956
4957 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4958
4959         * HttpApplicationFactory.cs: fixlet for session events hook.
4960
4961 2004-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4962
4963         * HttpApplicationFactory.cs: attach all events from Type and BaseType
4964         at the same time. Fixes bug #53454.
4965
4966 2004-01-27  Jackson Harper <jackson@ximian.com>
4967
4968         * HttpCachePolicy.cs: varybyparams::GetResponseHeader can return
4969         null now, dont hadd the header if it does.
4970         * HttpCacheVaryByParams.cs: Return null if there are no items.
4971
4972 2004-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4973
4974         * HttpCachePolicy.cs: it's not public.
4975         * HttpRuntime.cs: wait for requests before disposing the queue.
4976
4977 2004-01-15  Jackson Harper <jackson@ximian.com>
4978
4979         * HttpCachePolicy.cs: Fix typo causing varyby params headers to be
4980         created when they shouldn't be.
4981         
4982 2004-01-14  Jackson Harper <jackson@ximian.com>
4983
4984         * TraceData.cs: Fix some typos in the output text. Fix control
4985         position when adding controls recursively.
4986         
4987 2004-01-14  Jackson Harper <jackson@ximian.com>
4988
4989         * HttpCachePolicy.cs: Expose duration and sliding properties.
4990         
4991 2004-01-14  Jackson Harper <jackson@ximian.com>
4992
4993         * HttpCachePolicy.cs: Add an event that is fired when the
4994         cacheability is updated. The response uses this to determine
4995         whether or not it needs to cache itself.
4996         * HttpResponse.cs: When the cacheability is updated either create
4997         or dispose of the cached raw response based on whether or not we
4998         wil need it. This allows output caching to be controlled
4999         programatically.
5000         
5001 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5002
5003         * HttpContext.cs: add setter for ConfigTimeout.
5004         * HttpException.cs: added Description property and HTML encode some
5005         unescaped values.
5006
5007         * HttpRequest.cs: support request validation.
5008
5009         * HttpRequestValidationException.cs: added message and description.
5010
5011         * HttpServerUtility.cs: implemented ScriptTimeout.
5012
5013 2004-01-11  Jackson Harper <jackson@ximian.com>
5014
5015         * TraceManager.cs: Dont crash if there is no trace config element.
5016         
5017 2004-01-11  Jackson Harper <jackson@ximian.com>
5018
5019         * HttpRequest.cs: Add property for determining if the request is
5020         local or not.
5021         
5022 2004-01-10  Jackson Harper <jackson@ximian.com>
5023
5024         * TraceContext.cs: Handle tracing when it is enabled in the config
5025         file but not on the page.
5026         * TraceManager.cs: Get settings from the configuration object.
5027         * HttpRuntime.cs: Create trace manager in the first request start
5028         so it can get configuration settings.
5029         
5030 2004-01-10  Jackson Harper <jackson@ximian.com>
5031
5032         * TraceContext.cs: Save the request path in the trace data.
5033         * TraceData.cs: Add RequestPath property, make some rendering
5034         methods internal static so the TraceHandler can use them.
5035         * TraceManager.cs: Expose trace data, add a method for clearing
5036         trace data.
5037         
5038 2004-01-10  Jackson Harper <jackson@ximian.com>
5039
5040         * HttpRuntime.cs: Add trace manager
5041         * TraceManager.cs: New class for handling trace configuration and
5042         storing trace data objects.
5043         * TraceContext.cs: Save trace data to the trace manager. Fix typo.
5044         
5045 2004-01-10  Jackson Harper <jackson@ximian.com>
5046
5047         * TraceData.cs: New class for storing trace data. Data is stored
5048         here instead of the trace context so it can be saved and accessed
5049         from the trace handler.
5050         * TraceContext.cs: Save data in the TraceData object, let the
5051         trace data object handle the rendering.
5052         
5053 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5054
5055         * HttpRequest.cs: use ContentEncoding for QueryString. Fixes bug #52577.
5056         Thanks to Jan Jaros (mono-bug@jerryweb.info).
5057
5058         * HttpRequestValidationException.cs: fix comment.
5059
5060 2004-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5061
5062         * HttpException.cs: default to error 500. Fixes bug #52623.
5063
5064 2004-01-04  Jackson Harper <jackson@ximian.com>
5065
5066         * TraceContext.cs: Store and render trace info times. Also render
5067         cookie sizes. Remove debug code.
5068         
5069 2004-01-04  Jackson Harper <jackson@ximian.com>
5070
5071         * HttpResponse.cs: Set the cached response date header so it can
5072         be updated.
5073         * HttpResponseHeader.cs: Let values be set so we can update cached 
5074         response header values.
5075         
5076 2004-01-04  Jackson Harper <jackson@ximian.com>
5077
5078         * HttpResponse.cs: Implement RemoveOutputCacheItem.
5079         
5080 2004-01-04  Jackson Harper <jackson@ximian.com>
5081
5082         * HttpCachePolicy.cs: Add internal method to get the vary by custom string
5083         * HttpCacheVaryByHeaders.cs: Add internal method to get the header names.
5084         
5085 2004-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5086
5087         * HttpRuntime.cs: implemented MachineConfigurationDirectory,
5088
5089 2004-1-1  Alon Gazit <along@mainsoft.com>
5090         * HttpWriter.cs: add check in Write() in order to prevent
5091         NullReferenceException.
5092
5093 2004-1-1  Alon Gazit <along@mainsoft.com>
5094         * HttpResponse.cs: implemented ExpiresAbsolute and Expires.
5095
5096 2003-12-18  Jackson Harper <jackson@ximian.com>
5097
5098         * TraceContext.cs: Write () methods are not warnings.
5099         
5100 2003-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5101
5102         * HttpBrowserCapabilities.cs: added GetClrVersions ().
5103         * HttpCachePolicy.cs: added SetAllowResponseInBrowserHistory ().
5104         * HttpContext.cs: added set_Current and RewritePath (s, s, s) for 1.1.
5105         * HttpRequest.cs: added set_ContentType, SetPathInfo and ValidateInput.
5106         * HttpRequestValidationException.cs: new class for 1.1
5107         * HttpResponse.cs: added RedirectLocation.
5108         * HttpRuntime.cs: added UnloadAppDomain.
5109         * HttpServerUtility.cs: Execute (s, t, b) is internal for < 1.2
5110         * HttpUtility.cs: copied UrlPathEncode from HttpServerUtility.
5111         * HttpWorkerRequest.cs: added [ComVisible] and made the ctor public.
5112
5113 2003-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5114
5115         * HttpContext.cs: implemented IsCustomErrorEnabled and
5116         IsDebuggingEnabled. Added internal ErrorPage property.
5117
5118         * HttpRuntime.cs: on error, check if we have a custom error page enabled
5119         to handle it and redirect.
5120
5121         * HttpResponse.cs: added RedirectCustomError (), which actually does
5122         the redirection to the error page.
5123         
5124 2003-12-16  Jackson Harper <jackson@ximian.com>
5125
5126         * TraceContext.cs: Render all the data, and the stylesheet.
5127         
5128 2003-12-16  Jackson Harper <jackson@ximian.com>
5129
5130         * TraceContext.cs: Add incomplete render method.
5131         
5132 2003-12-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5133
5134         * CapabilitiesLoader.cs: loads browser detection and capabilities data
5135         from browscap.ini file by Gary J. Keith.
5136
5137         * HttpBrowserCapabilities.cs: removed almost all TODOs.
5138
5139         * HttpRequest.cs: fixed Browser property.
5140
5141 2003-12-15  Jackson Harper <jackson@ximian.com>
5142
5143         * TraceContext.cs: Initial implementation of storing data.
5144         * HttpContext.cs: Create and expose a trace object.
5145         
5146 2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5147
5148         * HttpApplication.cs: ThreadAbortException is ok on Redirect.
5149         * HttpContext.cs: added TimeoutPossible property.
5150         * HttpResponse.cs: throw ThreadAbortException if End () is called within
5151         a step in which is possible to timeout.
5152
5153         Fixes bug #51703.
5154
5155 2003-12-04  Jackson Harper <jackson@ximian.com>
5156
5157         * HttpRequest.cs: Cleanup method.
5158         
5159 2003-12-04  Jackson Harper <jackson@ximian.com>
5160
5161         * HttpValueCollection.cs: Allow blank value names. Posting
5162         <blank>=SomeValue is valid. And occurs if a radio button does
5163         not have its name set.
5164         
5165 2003-12-03  Jackson Harper <jackson@ximian.com>
5166
5167         * HttpResponse.cs: Actually apply an app path modifier in
5168         ApplyAppPathModifer and add a method to set the app path modifier.
5169         * HttpRequest.cs: Add utility method for setting a request header.
5170         
5171 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5172
5173         * HttpApplication.cs: handle FileNotFound and DirectoryNotFound
5174         exceptions when creating the handler to generate a better error page.
5175
5176         * HttpException.cs: display the http_code if available.  Changed all
5177         \n by \r\n to make the hidden stack trace readable.
5178         
5179         * StaticFileHandler.cs: don't send the real path in th eerror.
5180
5181 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5182
5183         * HttpContext.cs: updated GetConfig and GetAppConfig to new API.
5184         
5185         * HttpResponse.cs: separate initialization of the HttpWriter, as it
5186         tries to read configuration settings while the config. system is not
5187         available (ie, before the first request).
5188         
5189         * HttpRuntime.cs: delayed queueManager and response writer
5190         initialization until the configuration system is working.
5191
5192 2003-11-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5193
5194         * HttpRuntime.cs: added request queue handling.
5195
5196         * QueueManager.cs: simple request queue.
5197         
5198         * TimeoutManager.cs: added some locks to prevent the enumerator used in
5199         CheckTimeouts to be out of synch.
5200
5201 2003-11-25  Jackson Harper <jackson@ximian.com>
5202
5203         * HttpStaticObjectsCollection.cs: Add methods for serialization
5204         and conversion to/from byte arrays.
5205         
5206 2003-11-21  Jackson Harper <jackson@ximian.com>
5207
5208         * HttpResponse.cs: When caching data set the content length in the
5209         cached repsonse so that only that amount will be written back to
5210         the client. Add method to write a range of binary data.
5211         * HttpCacheVaryByParams.cs: Add method to retrieve param names.
5212         
5213 2003-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5214
5215         * HttpApplication.cs:
5216         * HttpContext.cs:
5217         * HttpRuntime.cs: add timeout handling.
5218         * TimeoutManager.cs: new class that takes care of aborting threads on
5219         timeout.
5220
5221 2003-11-19  Jackson Harper <jackson@ximian.com>
5222
5223         * HttpWriter.cs: Use a constant for the buffer size so the cache
5224         can get the buffer size. Add method to get the buffer.
5225         * HttpResponse.cs: Methods for getting data to cache, and setting
5226         vars from the cache.
5227         * HttpCachePolicy.cs: Expose a pages cache expire time.
5228         
5229 2003-11-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5230
5231         * HttpResponse.cs: 
5232         * HttpWriter.cs: some fixes to allow closing a response stream without
5233         messing the rest.
5234
5235 2003-11-13  Jackson Harper  <jackson@ximian.com>
5236
5237         * HttpCachePolicy.cs: Make sure cacheability and maxage get
5238         set. Add method to set Http response header data
5239         * HttpCacheVaryByParams.cs: Add method to create a response header.
5240         * HttpCacheability.cs: Add ServerAndPrivate and ServerAndNoCache.
5241         * HttpResponse.cs: Set cache headers.
5242         
5243 2003-11-11 Ben Maurer  <bmaurer@users.sourceforge.net>
5244
5245         * HttpModuleCollection.cs (GetKey): Recursion, again!
5246
5247 2003-11-11 Ben Maurer  <bmaurer@users.sourceforge.net>
5248
5249         * HttpClientCertificate.cs (ValidUntil): recursion!
5250
5251 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5252
5253         * SiteMapNode.cs (GetDataSourceView): Implement.
5254         * SiteMapProvider.cs: Typo fixing.
5255         * XmlSiteMapProvider.cs: We shouldnt resolve here.
5256         
5257 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
5258
5259         * SiteMap.cs (Init): implement a hack that doesnt need the config
5260         stuff. Should do that later.
5261         * SiteMapNodeCollection (OnValidate): Fix recursion.
5262         * SiteMapProvider.cs: We dont implement some culture stuff work
5263         around it. Fix typo.
5264         * XmlSiteMapProvider.cs: Added.
5265         
5266 2003-11-07 Ben Maurer  <bmaurer@users.sourceforge.net>
5267
5268         * ISiteMapProvider.cs:
5269         * SiteMap.cs:
5270         * SiteMapNode.cs:
5271         * SiteMapNodeCollection.cs:
5272         * SiteMapProvider.cs:
5273         * SiteMapProviderCollection.cs: V2 sitemap related stuff.
5274
5275 2003-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5276
5277         * HttpRequest.cs: don't attempt to read more bytes than specified
5278         content length.
5279
5280 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5281
5282         * HttpRequest.cs:
5283         * HttpResponse.cs:
5284         * HttpUtility.cs:
5285         * HttpValueCollection.cs: encoding fixes/updates.
5286
5287         * HttpWriter.cs: when updating the encoding, flush the existing stream.
5288         Encoding updates.
5289
5290 2003-11-04 Ben Maurer  <bmaurer@users.sourceforge.net>
5291
5292         * HttpContext.cs (IsCustomErrorEnabled): dont throw exception, just
5293         return false (which makes sense, as the custom errors *arent* enabled;
5294         ie they dont work.
5295         * HttpResponseStream.cs: you actually can write with len = 0
5296
5297 2003-11-03 Jackson Harper <jackson@ximian.com>
5298
5299         * HttpResponse.cs (ContentEncoding): Throw
5300         ArgumentNullException. Patch by Yaron Shkop.
5301         
5302 2003-10-30  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
5303
5304         * HttpMultipartContentParser.cs : Quick fix for cygwin build. 
5305           CSC complains that constant char cannot be casted as byte.
5306
5307 2003-10-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5308
5309         * HttpApplication.cs: added AssemblyLocation property.
5310
5311 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5312
5313         * HttpApplicationFactory.cs: use NoParamsInvoker.
5314         * HttpRequest.cs: support request filters.
5315         * HttpRequestStream.cs: mono-stylized and added new Set method.
5316
5317         * NoParamsInvoker.cs: proxy class to invoke user-provided methods
5318         without parameters that are invoked by EventHandlers.
5319
5320 2003-10-13  Lluis Sanchez Gual <lluis@ximian.com>
5321
5322         * HttpResponse.cs: Changed harcoded switch to en-US culture to a switch
5323           to invariant culture.
5324
5325 2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5326
5327         * HttpResponse.cs:
5328         * HttpServerUtility.cs: change the response writer in Execute. Thanks
5329         to Rich Alimi <rich@velvetsea.net> for noticing this.
5330
5331 2003-10-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5332
5333         * HttpApplicationFactory.cs: support for wiring up events without
5334         parameters.
5335
5336 2003-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5337
5338         * HttpUtility.cs: small memory usage reduction.
5339
5340 2003-10-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5341
5342         * HttpApplication.cs: pass the Uri, not the file path to
5343         when looking for a handler.
5344
5345 2003-09-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5346
5347         * HttpRequest.cs: small fix needed when reading big POST data.
5348
5349 2003-09-04  Lluis Sanchez Gual <lluis@ximian.com>
5350
5351         * HttpRequest.cs: Url property: use GetLocalAddress() to get the address
5352           (this will get the address from the request headers).
5353
5354 2003-09-04  Lluis Sanchez Gual <lluis@ximian.com>
5355
5356         * HttpServerUtility.cs: In Transfer(), preserve the query string if
5357           told to do so.
5358
5359 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5360
5361         * HttpApplication.cs: ensure we do all the EndRequest steps. Don't
5362         filter the output on error.
5363         
5364         * HttpResponse.cs: modified DoFilter to allow bypassing filtering.
5365
5366 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5367
5368         * HttpApplication.cs: when the request is completed or an
5369         error happens, execute all the delegates attached to EndRequest, not
5370         only the last one. This makes xsp/test/authtest work again.
5371         
5372         * HttpMethodNotAllowedHandler.cs: fixed description for http
5373         status code.
5374
5375 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5376
5377         * HttpRequest.cs: quick way of checking that the path is within the
5378         root for the application. Thanks to Johannes for reporting.
5379         
5380         * HttpRuntime.cs: use the status code from teh exception when it'ss a
5381         HttpException.
5382
5383         * StaticFileHandler.cs: forbidden is 403.
5384
5385 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5386
5387         * HttpServerUtility.cs: fixed path and query. Path by Rich Alimi
5388         <rich@velvetsea.net>.
5389
5390 2003-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5391
5392         * HttpException.cs: make the unhandled error more like the MS one.
5393         * HttpRuntime.cs: set a 500 error code on unhandled exceptions.
5394
5395 2003-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5396
5397         * HttpResponse.cs: flush headers when the body length is 0.
5398         * StaticFileHandler.cs: added If-Modified-Since handling patch slightly
5399         modified from the original by Piers Haken <piersh@friskit.com>.
5400
5401 2003-08-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5402
5403         * HttpResponse.cs: another patch from totte and me. This one prevents
5404         writing output if the client have disconnected and filters the data
5405         when there's a non-final Flush in the middle of the process.
5406
5407 2003-08-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5408
5409         * HttpApplication.cs: fixed typos. Closes bug #44197.
5410
5411 2003-08-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5412
5413         * HttpApplication.cs:
5414         * HttpApplicationFactory.cs: fix duplicate application OnStart events.
5415
5416         Patch by Patrik Torstensson.
5417
5418 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5419
5420         * HttpApplicationFactory.cs: use the correct Delegate.CreateDelegate
5421         overload. The previous one only admits static methods.
5422
5423 2003-08-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5424
5425         * ProcessModelInfo.cs: Fixed signature
5426
5427 2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5428
5429         * WebCategoryAttribute.cs: Implemented localization
5430         * WebSysDescriptionAttribute.cs: Implemented localization
5431
5432 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5433
5434         * HttpRuntime.cs: also clear the headers that may have been set upon
5435         error processing the request.
5436
5437 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5438
5439         * HttpResponseStreamProxy.cs: reformatted. Fixed infinite recursion in
5440         Write method.
5441
5442         * HttpWriter.cs: flush the filter after writing.
5443
5444 2003-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5445
5446         * HttpWriter.cs: avoid duplicating the MemoryStream byte buffer.
5447
5448 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5449
5450         * HttpContext.cs: Session doesn't have a setter.
5451
5452         * HttpResponse.cs: Request is private.
5453
5454 2003-07-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5455
5456         * HttpRequest.cs: fixed Headers property. It was getting known headers
5457         values instead of known headers names.
5458
5459 2003-07-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5460
5461         * HttpApplication.cs: prevent nullref if an error happens before context
5462         is set.
5463         * HttpException.cs: small fix in the stack trace sent.
5464         * HttpUtility.cs: the lock is not needed.
5465
5466 2003-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5467
5468         * HttpRequest.cs: added REMOTE_PORT.
5469         * HttpValueCollection.cs: fixed bug #45490.
5470
5471 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5472
5473         * HttpApplication.cs:
5474         * HttpApplicationFactory.cs: fire application start and session
5475         start/end events.
5476
5477 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5478
5479         * HttpException.cs: encode as HTML the inner exception that
5480         is appended as a comment at the end of error pages.
5481
5482 2003-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5483
5484         * HttpWriter.cs: don't do anything in Flush. Fixes #42249.
5485
5486 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5487
5488         * HtmlizedException.cs: added more virtual methods.
5489
5490         * HttpException.cs:  some work on the output when there's a source
5491         file present.
5492
5493 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5494
5495         * HtmlizedException.cs: simplified to cope with the new interface.
5496
5497         * HttpApplicationFactory.cs: use the application file parser to get the 
5498         application Type.
5499         
5500         * HttpException.cs: small changes. Needs some more work on
5501         ParseExceptions.
5502         
5503 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5504
5505         * HttpRequest.cs: fixed Url property.
5506
5507 2003-03-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5508
5509         * HtmlizedException.cs:
5510         * HttpException.cs: display the correct line number in error messages.
5511
5512 2003-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5513
5514         * HttpCachePolicy.cs: implemented all TODOs.
5515         * HttpRequestStream.cs: make it internal.
5516
5517 2003-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5518
5519         * HttpContext.cs: implemented RewritePath in other way.
5520         * HttpRequest.cs: removed SetPhysicalPath and added SetForm.
5521         * HttpServerUtility.cs: implemented Transfer (string, bool).
5522
5523 2003-03-16  Daniel Lopez Ridruejo <daniel @ rawbyte.com>
5524         * HttpContext.cs : Implemented RewritePath
5525         * HttpRequest.cs : Added internal function SetPhysicalPath
5526
5527 2003-03-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5528
5529         * HttpServerUtility.cs: implemented Transfer ().
5530
5531 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5532
5533         * HttpRuntime.cs: Cache no longer have a Dispose method.
5534
5535         * HttpServerUtility.cs: removed MonoTODO.
5536
5537 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5538
5539         * HttpHelper.cs: store the values in an ArrayList to get them in correct
5540         order.
5541
5542 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5543
5544         * HttpApplicationFactory.cs: Global.asax takes precedence over
5545         global.asax if it exists.
5546
5547         * HttpRequest.cs: use allowCrossAppMapping in MapPath.
5548
5549 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5550
5551         * HttpApplication.cs: CreateHttpHandler is now internal.
5552
5553         * HttpRequest.cs: allow setting QueryStringRaw, which
5554         invalidates the data obtained from the previous value. Added internal
5555         SetFilePath method.
5556
5557         * HttpServerUtility.cs: implemented Execute and GetLastError.
5558
5559 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5560
5561         * HttpServerUtility.cs: style.
5562
5563 2003-02-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5564
5565         * HttpApplication.cs: only execute the EndRequest step on error
5566         condition or request marked as completed. This prevent page events from
5567         being called when, for example, the url authorization module forbids
5568         the request.
5569
5570 2003-02-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5571
5572         * HttpRequest.cs: implemented the indexer.
5573
5574 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5575
5576         * HtmlizedException.cs: base class for exceptions that makes it easy to
5577         generate error pages.
5578
5579         * HttpException.cs: improved error displaying.
5580
5581         * HttpRuntime.cs: removed debugging output.
5582
5583 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5584
5585         * HttpApplication.cs: display the error instead of hanging when we get
5586         any error before the last step of the request.
5587
5588 2003-02-04  Tim Haynes <thaynes@openlinksw.com>
5589
5590         * HttpApplicationFactory.cs: fixed HttpRuntime.Close() to decrement
5591         instance counter.
5592
5593 2003-01-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5594
5595         * HttpRequest.cs: added BaseVirtualDir property and use it in MapPath.
5596
5597 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5598
5599         * HttpRequest.cs: implemented CurrentExecutionFilePath.
5600
5601 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5602
5603         * HttpApplication.cs: keep _lasterror if no context. Attach
5604         application events *after* modules initialization (if not, User is not
5605         set when the user handler is called).
5606         
5607         * HttpApplicationFactory.cs: made all methods related to
5608         AttachEvents static. I will fix OnStart/OnEnd for application and
5609         session later.
5610         
5611         * HttpRequest.cs: don't initialize cookies twice.
5612
5613 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5614
5615         * HttpResponse.cs:
5616         (ApplyAppPathModifiers): return the root directory for "".
5617
5618 2003-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5619
5620         * HttpUtility.cs: fixed HtmlDecode to avoid ArgumentOutOfRangeException.
5621
5622 2003-01-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5623
5624         * HttpApplication.cs: added new state to handle default authentication.
5625
5626 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5627
5628         * HttpContext.cs: removed hack to get the User.
5629
5630 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5631
5632         * HttpUtility.cs: fixed bug #36038. Thanks to juancri@tagnet.org for
5633         reporting the bug and how to fix it.
5634
5635 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5636
5637         * HttpCookie.cs: send 'expires' in the header.
5638
5639 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5640
5641         * HttpValueCollection.cs: patch from Botjan Vizin 
5642         <bostjan.vizin@siol.net> that implements ToString (bool).
5643
5644 2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5645
5646         * HttpApplicationFactory.cs: add the context as parameter when building
5647         the application Type.
5648         
5649         * HttpCookie.cs: new internal constructor.
5650         * HttpCookieCollection.cs: new internal method to make a cookie expire.
5651
5652         * HttpRequest.cs: MapPath fixes.
5653         * HttpResponse.cs: implemented ApplyAppPathModifier.
5654         * HttpRuntime.cs: fixed typo in AppDomainAppVirtualPath.
5655
5656 2002-12-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5657
5658         * HttpContext.cs: hack to create a default user when there's no one.
5659         Implemented GetConfig (string).
5660
5661         * HttpRequest.cs: fixes to MapPath (string).
5662
5663 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5664
5665         * HttpRuntime.cs: avoid nulls and exception when getting resource
5666         format strings.
5667
5668         * StaticFileHandler.cs: added file name to error message.
5669
5670 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5671
5672         * HttpResponse.cs: avoid sending chunked content for HTTP/1.1.
5673
5674 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5675
5676         * HttpApplicationFactory.cs: get the events from the application class,
5677         fire Application/Session Start/End and add the others as application
5678         events.
5679
5680 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5681
5682         * HttpApplicationFactory.cs: compile global.asax file if it exists.
5683
5684 2002-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5685
5686         * HttpRequest.cs: provide a default Browser until we detect it.
5687         * HttpResponse.cs:
5688         (End): do not close the connection here.
5689         (Flush (bool)): send the headers when, for example, Redirect () is
5690         called.
5691
5692 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5693
5694         * HttpException.cs: simple error output.
5695
5696 2002-11-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5697
5698         * HttpApplication.cs: style.
5699         * HttpException.cs: style.
5700         * HttpRuntime.cs: only flush the response if there are no errors.
5701         Otherwise, write an error output.
5702         * HttpWriter.cs: change Unicode to UTF8.
5703
5704 2002-11-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5705
5706         * HttpApplication.cs: don't begin the request using ExecuteNextAsync
5707         (it fails to work on NetServ).
5708
5709         * HttpWorkerRequest.cs: typo.
5710
5711 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5712
5713         * HttpValueCollection.cs: the value may contain trailing '=' as it is
5714         UrlEncoded. Don't split name=value based on '='.
5715
5716 2002-11-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5717
5718         * HttpCookie.cs: made GetCookieHeader internal.
5719
5720         * HttpRequest.cs: get cookies from request.
5721
5722         * HttpResponse.cs: send cookies. Implemented
5723         AddFileDependencies (). Added check for _Writer == null in Flush
5724         (Patrik ;-). Clear the content if HEAD or SupressContent == true.
5725         Removed redirect hack used in old server.
5726
5727 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5728
5729         * HttpRequest.cs: fixed GetRawContent (). Now it only tries to read at
5730         most ContentLength bytes.
5731
5732         * HttpResponse.cs: now it sends the headers. Added
5733         X-Powered-By header :-).
5734
5735         * HttpRuntime.cs: fixed typo.
5736
5737         * HttpValueCollection.cs: cosmetic changes.
5738
5739 2002-10-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5740
5741         * HttpApplication.cs: reenabled a few lines of code
5742         (ThreadPool already fixed). 
5743         
5744         * HttpRequest.cs:
5745         * HttpResponse.cs:
5746         * HttpUtility.cs:
5747         * HttpValueCollection.cs:
5748         * HttpWriter.cs: Use WebEncoding.Encoding.
5749
5750 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5751
5752         * HttpWriter.cs: changed encoding of the writer from Unicode to UTF8.
5753         This fixes sending bytes and allows mixing byte with chars.
5754
5755 2002-10-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5756
5757         * HttpResponse.cs: implemented WriteFile methods.
5758         * MimeTypes.cs: removed duplicated entries.
5759
5760 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5761
5762         * HttpResponse.cs: don't throw exception in a couple of
5763         methods not yet implemented.
5764
5765 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5766
5767         * HttpApplication.cs: fixed type and handle factories when creating
5768         IHttpHandler for a request.
5769
5770 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5771
5772         * HttpApplication.cs: use handlers from configuration.
5773         * HttpContext.cs: get handlers from ConfigurationSettings.
5774
5775 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5776
5777         * HttpMethodNotAllowedHandler.cs:
5778         * HttpRuntime.cs:
5779         * StaticFileHandler.cs: Modified file.
5780
5781         * HttpUtility.cs: implemented all missing methods.
5782
5783
5784 2002-09-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5785
5786         * System.Web/HttpApplication.cs: use the static file handler.
5787         * System.Web/HttpForbiddenHandler.cs: handler to forbid access.
5788         * System.Web/HttpMethodNotAllowedHandler.cs: handler for method not
5789         allowed.
5790         
5791         * System.Web/HttpUtility.cs: finished all UrlDecode methods.
5792         * System.Web/MimeTypes.cs: map from file extension to MIME type.
5793         * System.Web/StaticFileHandler.cs: serves static files
5794
5795 2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5796
5797         * System.Web/HttpApplication.cs:
5798         * System.Web/HttpApplicationFactory.cs:
5799         * System.Web/HttpRequest.cs:
5800         * System.Web/HttpRuntime.cs: we are now able to compile pages and use
5801         HttpApplication, HttpRuntime and SimpleWorkerRequest.
5802
5803 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5804
5805         * HttpApplication.cs: added some missing methods.
5806         * HttpApplicationFactory.cs: get event handlers for the application.
5807         * HttpAsyncResult.cs: little fixes.
5808         * HttpRequest.cs: make Encoding work even with no worker request.
5809
5810 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5811
5812         * HttpWorkerRequest.cs: mcs doesn't go crazy. It's just me, that forgot
5813         to add HttpMapPath to the list file...
5814
5815 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5816
5817         * HttpWorkerRequest.cs: fixes compilation with mcs. I will add a bug
5818         report when i get a test case.
5819
5820 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5821
5822         * HttpApplicationFactory.cs:
5823         * HttpCachePolicy.cs:
5824         * HttpResponseHeader.cs:
5825         * HttpResponseStream.cs:
5826         * HttpResponseStreamProxy.cs:
5827         * HttpValueCollection.cs: misc. fixes based on class status page.
5828
5829         * IHttpMapPath.cs: New file.
5830
5831         * HttpRequest.cs: implemented ContentEncoding.
5832         * HttpWorkerRequest.cs: mono-stylized and implemented
5833         SendResponseFromMemory.
5834
5835 2002-08-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5836
5837         * HttpContext.cs: reformatted.
5838         * HttpStaticObjectsCollection.cs: implemented GetEnumertor, CopyTo and
5839         the indexer.
5840
5841 2002-08-05  Patrik Torstensson <ptorsten@hotmail.com>
5842
5843         * HttpApplication.cs: Implemented a state machine to allow handling of
5844         HttpModules and HttpHandlers. Implementation of async handlers. 
5845                                                                  
5846         * HttpApplicationFactory.cs: Factory for creating HttpApplication
5847         instances, including caching.
5848         
5849         * HttpRuntime.cs: Usage of the new HttpApplicationFactory to get a
5850         application instance to execute requests in and implementation of 
5851         request execution (still no request queue). 
5852                                                          
5853         * HttpAsyncResult.cs: New file to handle async module results.                                          
5854                                                          
5855         * HttpRequest.cs: Change signature of Dispose
5856         * HttpResponse.cs: new internal method allowing filtering to happen
5857         during the request flow in the state machine.
5858
5859 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5860
5861         * HttpApplication.cs: events were not being initialized.
5862
5863 2002-07-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5864
5865         * ProcessModelInfo.cs: fixed compilation.
5866
5867 2002-07-25  Tim Coleman <tim@timcoleman.com>
5868         * ProcessModelInfo.cs:
5869                 New class added
5870         * HttpParseException.cs:
5871         * HttpCompileException.cs:
5872         * HttpUnhandledException.cs:
5873                 Internal constructors added to these
5874
5875 2002-07-24  Tim Coleman <tim@timcoleman.com>
5876         * ProcessInfo.cs: 
5877                 Fix constructor, reference to shutdownreason.
5878
5879 2002-07-24  Tim Coleman <tim@timcoleman.com>
5880         * HttpCachePolicy.cs:
5881                 Added stubbs to this class.
5882         * HttpCacheability.cs:
5883         * HttpCacheRevalidation.cs:
5884         * HttpValidationStatus.cs:
5885         * ProcessShutdownReason.cs:
5886         * ProcessStatus.cs:
5887         * TraceMode.cs:
5888                 Reorder the enumerations (and in some cases make
5889                 one-based) in order to agree with the .NET 
5890                 implementation, based on the class status page.
5891         * ProcessInfo.cs:
5892                 Implementation of this class.
5893
5894 2002-07-23  Tim Coleman <tim@timcoleman.com>
5895         * HttpCompileException.cs:
5896         * HttpParseException.cs:
5897         * HttpUnhandledException.cs:
5898                 New stubbs created.
5899         * HttpApplication.cs:
5900         * HttpBrowserCapabilities.cs:
5901                 Added missing methods stubbs and attributes based
5902                 on the class status page.  Also reformatted some
5903                 source for consistency.
5904
5905 2002-07-23  Tim Coleman <tim@timcoleman.com>
5906         * HttpUtility.cs: Moved entities hashtable into main
5907                 class as a static object, so we don't instantiate
5908                 a new one every time.  Also put the hashtable
5909                 building into a lock block.
5910
5911 2002-07-22  Tim Coleman <tim@timcoleman.com>
5912         * HttpUtility.cs: Cleanup of the code, implementation
5913                 of HtmlDecode/HtmlEncode functions
5914
5915 2002-07-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5916
5917         * HttpResponse.cs: quick&dirty hack to make redirection work. Should
5918         be out of there once we have SimpleWorkerRequest.
5919
5920 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5921
5922         * HttpUtility.cs: little typo, big headache.
5923
5924 2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5925
5926         * HttpRuntime.cs: don't throw NotImplemented in a couple of methods.
5927
5928 2002-06-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5929
5930         * System.Web/HttpResponse.cs: 
5931
5932         Fixes based on class status page:
5933         
5934                 - Add attributes (DefaultEvent, ParseChildren).
5935                 - Fix declarations.
5936                 - Explicitly implement some interfaces (IPostBackDataHandler
5937                 and IPostBackEventHandler).
5938                 - Implemented some missing methods.
5939
5940 2002-06-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5941
5942         * HttpContext.cs:
5943         (Session): return null instead of throwing an exception.
5944
5945         * HttpRequest.cs:
5946         (HttpMethod): return RequestType if not set.
5947         (GetRawContent): return QueryString if we don't have a
5948         HttpWorkerRequest.
5949
5950         * HttpUtility.cs: fixed Decode and Encode.
5951
5952 2002-06-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5953
5954         * HttpApplication.cs:
5955         * HttpContext.cs: added System.Web.SessionState namespace.
5956
5957         * HttpSessionState.cs: removed. It is under
5958         System.Web.SessionState.
5959
5960 2002-06-10  Duncan Mak  <duncan@ximian.com>
5961
5962         * HttpBrowserCapabilities.cs (BackgroundSounds): Fixed typo.
5963
5964 2002-06-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5965
5966         * HttpRequest.cs: implemented Browser property.
5967
5968 2002-06-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5969
5970         * HttpBrowserCapabilities.cs: stubbed out.
5971
5972 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
5973
5974         * HttpRuntime.cs: Reformat file.
5975
5976 2002-05-07  Duncan Mak  <duncan@ximian.com>
5977
5978         * HttpBrowserCapabilities.cs: Added, replacing
5979         HttpBrowserCapabilites because of typo.
5980
5981         * HttpBrowserCapabilites.cs: Removed, replaced by above.
5982
5983         * HttpRequest.cs (Browser): Fixed typo.
5984
5985 2002-04-12  Patrik Torstensson <patrik.torstensson@labs2.com>
5986
5987         * HttpApplication.cs: Minor updates
5988         * HttpApplicationState.cs: Ready.
5989         * HttpClientCertificate.cs: Signature updates
5990         * HttpValueCollection.cs: ready
5991         * HttpStaticObjectsCollection.cs: ready
5992         * HttpResponseHeader.cs: made internal only
5993         * HttpResponse.cs: Signature updates
5994         * HttpPostedFile.cs: ready
5995         * HttpCacheVaryByHeaders.cs: ready (except communication to policy)
5996         * HttpCacheVaryByParams.cs: ready (except communication to policy)
5997         
5998         System.Web is now over 60% ready.. 
5999
6000 2002-04-11  Patrik Torstensson <patrik.torstensson@labs2.com>
6001
6002         * HttpException.cs: 95% ready, only windows dependent code left
6003         * HttpFileCollection.cs: Finished.
6004         * HttpRequest.cs: Minor fixes and fixed signature problems
6005         * HttpResponse.cs: Implementation of missing methods and signature problems
6006         * HttpResponseHeader.cs: Fixed signature problems
6007         * HttpRuntime.cs: Fixed signature problems
6008         * HttpServerUtility.cs: Added support for HttpApplication
6009         * HttpSessionState.cs: Fixed signature issues
6010         * HttpUtility.cs: fixed signature issues
6011         * HttpValueCollection.cs: Support for cookie parsing and fixed signature issues
6012         * HttpWorkerRequest.cs: Fixed small signature issue
6013         * HttpWriter.cs: Fixed signature issue
6014         * HttpApplication.cs: Basic implementation
6015         * HttpApplicationState.cs: Small fixes to support major change comming up
6016         * HttpBrowserCapabilities.cs: Added Type method
6017         * HttpClientCertificate.cs: Almost ready, needs to parse certificate.
6018         * HttpContext.cs: Fixed signature issues and added last methods.
6019         * HttpCookie.cs: Full implementation
6020         * HttpCookieCollection.cs: Full implementation
6021         * TraceContext.cs: Methods implemented.
6022         * HttpPostedFile.cs: Placeholder
6023         * HttpStaticObjectsCollection.cs: Placeholder
6024         * HttpModuleCollection.cs: Ready, will be used during the major revamp.
6025         
6026         * Fixed a number of other small signature problems also (class status page)
6027         
6028         
6029 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
6030
6031     * HttpWorkerRequest.EndOfSendNotification.cs Removed (included in WorkerRequest)
6032     * Checkin of all new files (noted in last changenote)
6033
6034 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
6035
6036     * HttpContext.cs: First implementation (basic support, few methods left to impl)
6037     * HttpException.cs: Partial implementation (basic support)
6038     * HttpHelper.cs: Header parse helper, used by runtime (non public)
6039     * HttpRequest.cs: Implementation (all methods there, not all fully impl)
6040     * HttpRequestStream.cs: Full implementation
6041     * HttpResponse.cs: Partial implementation(almost all methods)
6042     * HttpResponseHeader.cs: Header helper
6043     * HttpResponseStream.cs: Full implementation - Response stream support
6044     * HttpResponseStreamProxy.cs: Implementation - filter support
6045     * HttpRuntime.cs: Rewrite to support one IHttpModule (use for testing the runtime)
6046         * HttpServerUtility.cs: Implemented usage of HttpContext for methods
6047                                 and moved encoding functions to HttpUtility.
6048
6049     * HttpUtility.cs: Added encoding/decoding functions from HttpServerUtility and
6050                       added the Attribute encoding functions.
6051
6052     * HttpValueCollection.cs: Implementation.
6053     * HttpWorkerRequest.cs: Rewrite and implementation of all methods (ready)
6054     * HttpWriter.cs: Implementation (with filter support)    
6055
6056     * HttpFileCollection: Added dummy class (placeholder)
6057     * HttpApplication.cs: Added dummy class (placeholder)
6058     * HttpApplicationState.cs: Added dummy class (placeholder)
6059     * HttpBrowserCapabilities.cs: Added dummy class (placeholder)
6060     * HtttpCachePolicy.cs: Added dummy class (placeholder)
6061     * HttpClientCertificate.cs: Added dummy class (placeholder)
6062     * HttpSessionState.cs: Added dummy class (placeholder)
6063     * TraceContext.cs: Added dummy class (placeholder)
6064     
6065
6066 2002/04/10  Nick Drochak <ndrochak@gol.com>
6067
6068         * HttpServerUtility.cs: Fix build breaker.
6069
6070 2002-03-28  Wictor Wiln  <wictor@iBizkit.se>
6071
6072         * HttpServerUtils.cs : Added some more functionality
6073         
6074 2002-03-28  Martin Baulig  <martin@gnome.org>
6075
6076         * HttpServerUtils.cs (UrlDecode): You cannot implicitly cast a
6077         char to a string, use ToString() instead.
6078
6079 2002-03-16  Gaurav Vaish  <gavish@iitk.ac.in>
6080
6081         * WebCategoryAttribute.cs
6082                                : Added private attribute.
6083
6084 2002-03-16  Gaurav Vaish  <gavish@iitk.ac.in>
6085
6086         * HttpRuntime.cs       : Stubbed methods for
6087                   FormatStringResource(...) in agreement with the various
6088                   overloads available at String.Format(...)
6089
6090 2002-01-08  Gaurav Vaish  <gavish@iitk.ac.in>
6091
6092         * TODOAttribute.cs     : Added, as an internal class to the assembly
6093
6094 2002-01-03  Nick Drochak  <ndrochak@gol.com>
6095
6096         * HttpRuntime.cs: remove uneeded exception variable from catch and
6097         initialize remaining instance members to avoid compile warnings
6098
6099 2002-01-02  Nick Drochak  <ndrochak@gol.com>
6100
6101         * HttpRuntime.cs: fix spelling error/variable name change.
6102
6103 2001-12-18  Gaurav Vaish <gvaish@iitk.ac.in>
6104
6105         * HttpRuntime.cs       : Initial implementation
6106
6107 2001-08-29  Bob Smith  <bob@thestuff.net>
6108
6109         * HttpWorkerRequest.cs: Partial Implementation.
6110
6111 2001-08-16  Bob Smith  <bob@thestuff.net>
6112
6113          * HttpCookieCollection.cs, HttpCookie.cs: Bug fixes.
6114
6115 2001-08-09  Bob Smith  <bob@thestuff.net>
6116
6117          * BeginEventHandler.cs: Implemented.
6118          * EndEventHandler.cs: Implemented.
6119          * HttpCacheability.cs: Implemented.
6120          * HttpCacheRevalidation.cs: Implemented.
6121          * HttpCacheValidateHandler.cs: Implemented.
6122          * HttpCookieCollection.cs: Implemented.
6123          * HttpCookie.cs: Implemented.
6124          * HttpValidationStatus.cs: Implemented.
6125          * HttpWorkerRequest.EndOfSendNotification.cs: Implemented.
6126          * IHttpAsyncHandler.cs: Implemented.
6127          * IHttpHandler.cs: Implemented.
6128          * IHttpHandlerFactory.cs: Implemented.
6129          * IHttpModule.cs: Implemented.
6130          * ProcessShutdownReason.cs: Implemented.
6131          * ProcessStatus.cs: Implemented.
6132          * TraceMode.cs: Implemented.