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