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