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