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