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