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