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